internet-explorer-8

IE8 overflow:auto with max-height

杀马特。学长 韩版系。学妹 提交于 2019-12-17 15:22:47
问题 I have an element which may contain very big amounts of data, but I don't want it to ruin the page layout, so I set max-height: 100px and overflow:auto , hoping for scrollbars to appear when the content does not fit. It all works fine in Firefox and IE7, but IE8 behaves as if overflow:hidden was present instead of overflow:auto . I tried overflow:scroll , still does not help, IE8 simply truncates the content without showing scrollbars. Changing max-height declaration to height makes overflow

Disappearing images in IE8 jQuery Cycle

会有一股神秘感。 提交于 2019-12-17 14:50:14
问题 http://www.lunatestsite.co.uk/products/lifestation Cannot for the life of me fix this. Only in IE8 so far. I had the same issue on the homepage cycle, but managed to fix by declaring width, height and background: none !important on the img's in question. I thought it might be a png issue, but the same happens with jpgs: http://www.lunatestsite.co.uk/test-disappearing-jpgs Same result: often a flicker of the first of the two images in the slideshow, then disappears. Any ideas at all

Disappearing images in IE8 jQuery Cycle

半城伤御伤魂 提交于 2019-12-17 14:45:59
问题 http://www.lunatestsite.co.uk/products/lifestation Cannot for the life of me fix this. Only in IE8 so far. I had the same issue on the homepage cycle, but managed to fix by declaring width, height and background: none !important on the img's in question. I thought it might be a png issue, but the same happens with jpgs: http://www.lunatestsite.co.uk/test-disappearing-jpgs Same result: often a flicker of the first of the two images in the slideshow, then disappears. Any ideas at all

Rotating a text to 270 degrees in IE8

穿精又带淫゛_ 提交于 2019-12-17 13:30:09
问题 I am trying to rotate a text to 270 degrees, using this code: /* Safari */ -webkit-transform: rotate(-90deg); /* Firefox */ -moz-transform: rotate(-90deg); /* IE */ -ms-transform: rotate(-90deg); /* Opera */ -o-transform: rotate(-90deg); /* Internet Explorer */ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); It works fine in all browsers but not in IE8. What am I doing wrong? 回答1: Try using this: -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.00000000, M12=1

window.onload() is not firing with IE 8 in first shot

自作多情 提交于 2019-12-17 09:33:08
问题 I am trying to make my pages work correctly with IE 8, I found out from here: http://www.masykur.web.id/post/How-to-Make-Our-Website-to-be-Ready-for-IE8.aspx that, my page has to be XHTML 1.0 compliant and atleast CSS 2.1 compliant, I made my page and CSS compliant with only few warnings, but still window.onload() is not firing. Does anybody encountered this problem? here is the code snippet: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD

header/footer/nav tags - what happens to these in IE7, IE8 and browsers than don't support HTML5?

▼魔方 西西 提交于 2019-12-17 08:05:36
问题 I am eager to start using Html5 in particular the <header>/<footer>/<article>/<nav> tags. What happens if the browser doesn't support these? Also I need to style these so: For Example: The nav has borders and margins etc. You know standard CSS stuff. So if I style them using the nav tag then IE7 & IE8 etc are going to ignore this? 回答1: Place this is the <head> section of your page, before any CSS files are loaded. <!--[if lte IE 8]> <script src="https://cdnjs.cloudflare.com/ajax/libs

jQuery focus() sometimes not working in IE8

放肆的年华 提交于 2019-12-17 07:39:52
问题 I am developing webapp using jQuery. I have functionality that adds new row of 3 input fields. After creating these DOM elements I want to focus one of input fields. I am doing it with calling jQuery focus() function on necessary input field. Problem is that calling focus() works fine in IE6 and FF3.5, but not working in IE8. I was trying to make simple working example of this problem for showing it here, but with stripped version of code focus() is working fine. So my guess was that DOM is

object has no hasOwnProperty method (i.e. it's undefined) - IE8

天大地大妈咪最大 提交于 2019-12-17 07:30:11
问题 This seems quite bizarre. Here's my experiment in the IE8 console: typeof obj1 // "object" obj1.hasOwnProperty // {...} typeof obj2 // "object" obj2.hasOwnProperty // undefined Any ideas as to what could cause this? 回答1: This example is from IE8, but the same return is from IE6+ and most other IE browsers. IE before #9 does not define it for host objects var o=window;// or document or document elements o.hasOwnProperty /* returned value: (undefined) undefined */ 来源: https://stackoverflow.com

Possible to get Excanvas to work in IE 8?

泄露秘密 提交于 2019-12-17 07:29:01
问题 I used to work on a jQuery plugin named 'BeautyTips' and it was working just fine. But, since I've installed IE 8, this plugin stop working because it needs Excanvas to make IE draw the vectors, images etc. I've tried to download the newer version of Excanvas but it's not working at all... 回答1: Try appending the canvas element to the document before initializing it using excanvas: var foo = document.getElementById("targetElementID"); var canvas = document.createElement('canvas'); canvas

IE7, IE8 support for css3 media query [duplicate]

折月煮酒 提交于 2019-12-17 07:26:30
问题 This question already has answers here : IE8 support for CSS Media Query (11 answers) Closed 4 years ago . I have tried : @media screen and (max-width:1024px) { .sidebar{width:630px;} } to get the fix for IE7 and 8 but its not working, where as it works for IE9 and other browsers. Is there a different way of writing this. I have tried to include the css3mediaqueries js as well but no success. Is there any support at all for IE7 and IE8? 回答1: Include this meta tag in the <head>. <meta name=