internet-explorer-7

Get the DXImageTransform.Microsoft.Matrix value from Javascript

允我心安 提交于 2019-12-12 07:01:25
问题 Here is my css code: #pic-1 { z-index: 1; -webkit-transform: rotate(-10deg); -moz-transform: rotate(-10deg); -o-transform: rotate(-10deg); transform: rotate(-10deg); -ms-transform: rotate(-10deg); filter: progid:DXImageTransform.Microsoft.Matrix( M11=0.9848077530122081, M12=0.17364817766692991, M21=-0.17364817766692991, M22=0.9848077530122081, SizingMethod='auto expand'); } I want to get the filter matrix M11 value from this class. In this case I tried: console.log(document.getElementById(

Internet Explorer width issue

点点圈 提交于 2019-12-12 05:56:01
问题 *I'm re-posting this question because I only got one response before, and it didn't work. Hopefully someone new will see this and know what to do! * I'm using IP Net Renderer to view my newly installed forum (http://www.datesphere.com/forum/) in IE7. If you care to take a look, you can see the forum is overflowing its containing element (it's wider than the 960px container I have for my entire site). I've tried adding overflow:hidden to the .wrapper class as well as width:100% to .tborder per

IE7: can't get menu to stick to top of page

孤街浪徒 提交于 2019-12-12 04:47:45
问题 Demo here: http://jsfiddle.net/auMd5/ I want the blue menu bar to stick to the top of the page when you scroll past it, and then to snap back to its original position when you scroll back up over it. In every other browser I've tested, having jQuery conditionally switch the menu's position from relative to fixed works. But it doesn't work in IE7. To test, I've tried removing all the JavaScript and setting the position to fixed in the CSS. This looks as it should in IE7. Also to test, I've had

How to fix table going outside of div tag in IE6 & 7?

蹲街弑〆低调 提交于 2019-12-12 04:15:42
问题 If a table is too big and the window is too small than the table goes outside the div. I solved this with display:table !important; on the surrounding div but it doesn't work in IE 6&7 because they don't know it. How can I solve this in IE6 & 7? See JSFiddle example: http://jsfiddle.net/Kevin1990/LNS26/10/ 回答1: Instead of using display: table , use float: left . See: http://jsfiddle.net/thirtydot/LNS26/16/ This makes use of the "shrink wrap"/"shrink to fit" effect you get on a floated element

How to view session cookies in internet explorer7

余生长醉 提交于 2019-12-12 03:59:49
问题 In Firefox, we can easily view session cookies using the browser toolbar I have already reviewed How do you view session cookies in Internet Explorer? But that applies to IE8+. How do I view session cookies in IE7 from the browser toolbar??? Or without any external tools??? 回答1: Download the developer toolbar for IE-7 and then go to Tools- Toolbars - Explorere Bar - IE Developer Toolbar . At the bottom you will see the IE Developer toolbar . Click on Cache - View Cookie information . 来源:

responsive website issue in IE7 and IE8

*爱你&永不变心* 提交于 2019-12-12 02:56:40
问题 I am trying to make a standard site responsive. So far it works in IE9, Firefox and Chrome, but it fails in IE7 and IE8 even with inline hacks: http://surfingthebluemarble.com/rtest2.html What is happening is that in IE7 and IE8 the divs fail to stack when they go to 99% width. Thanks as always for your help. umbre 回答1: You're using CSS media queries, which don't work in older versions of IE. You need respond.js. 回答2: IE Less than 9 doesn't support media queries out of the box. use an

Does an alternative exist to the z-index bug in Internet Explorer 7?

萝らか妹 提交于 2019-12-12 02:47:45
问题 It doesn't matter how high I set the z-index, or if I set position:relative; to the parent div, or if I set a higher z-index to parent div or any tweak I found in Google. My tooltip will not be visible in Internet Explorer 7, Is there any other property I could use to simulate z-index positioning? 回答1: How is the tooltip being positioned? Try adding position:absolute; z-index:999 to your tooltip div and position:relative to the parent to see how it reacts. It would be really helpful if you

Internet Explorer 7 CSS Menu positioning

让人想犯罪 __ 提交于 2019-12-12 02:26:45
问题 I have created a menu in HTML and CSS that works in all the major browsers (Chrome, Firefox, IE8+, and Safari). You can find it here: http://www.calvaryccm.com/MenuTest.aspx The problem occurs in IE 7. I have a hover menu using some JS for effect. When I try to render it in IE7 this is what happens: I need some help figuring out how to position the menu under the text. Thank you for your help! 回答1: I'm not sure whether you want to use .block or .nav in the selectors below. I've gone with

Galleriffic plugin issues with IE7

只愿长相守 提交于 2019-12-12 02:23:07
问题 I'm using the Galleriffic plugin for a custom slideshow gallery. It works wonderfully in every major browser (IE 8, Firefox 3.6.x, Safari and Chrome) except for IE 7. It does the weirdest thing in IE 7, it won't display the image, the div is being displayed but the image isn't being loaded into it. Both ways of linking the images still won't bring it in (full link as in: http://www.google.com/logos/2010/xraydiscovery2010-ps.gif and local link as in: images/slideshow/image1.jpg). Has anyone

ie7 png opacity. is it possible

核能气质少年 提交于 2019-12-12 01:56:10
问题 1) dont use ie8 with option "work as ie7". it lies in this case 2) use clean ie7 or ietester last version For example test.png can be 50% tranparency jpeg picture. I know 2 methods to use it in ie7: background-image: "test.png"; filter: alpha(opacity=70) you will see gray image filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="test.png") alpha(opacity=70); background: none; you will see white image 2 variant came to us from ie6! example: http://pastehtml.com/view/awfp66p2m.html 1