internet-explorer-6

This page contains both secure and nonsecure items and iframes

本秂侑毒 提交于 2020-01-04 02:29:14
问题 IE 6.0 is giving me the message "This page contains both secure and nonsecure items" because I have iframes on my page (for the combo box bug). I have tried pointing to a few different things in the src but I can't seem to get rid of this message without putting in a blank html page, which I would like to avoid so there isn't a server call. Is there any solution? I suppose I could use the blank page and have the cache never expire on it possibly if there is no other choice and that should

3 pixels extra space in IE6

浪子不回头ぞ 提交于 2020-01-03 20:02:05
问题 Could someone please work out what's happening here, and how I could fix it? I'm testing this page in IE6, IE7, FF and Chrome, and it works in everything but IE6. In that, there is a small gap between the edge of the chickens picture and the div it's in. I hate IE6. 回答1: This may be the "three pixel jog" bug that shows in IE6 but not later versions of IE. See http://www.positioniseverything.net/explorer/threepxtest.html for example. 回答2: Using a CSS Reset can help! Lots of inconsistencies

When will IE6 no longer be supported? [closed]

元气小坏坏 提交于 2020-01-03 11:02:08
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 10 years ago . As we all know supporting IE6 with its many well documented quirks is painful but a necessary part of development and supporting with web based technologies. My question is “does anyone know when IE6 is scheduled for end of official Microsoft support (or retirement) or if Microsoft will force an update to IE7

IE6 Issue - border-color:transparent not working

天涯浪子 提交于 2020-01-03 02:06:28
问题 style="border:solid 1px transparent" is not working in IE6 instead it shows a black border. How to solve this issue? 回答1: IE6 does not support a border that is transparent . With a quick search, I found this workaround: http://acidmartin.wordpress.com/2008/08/24/emulating-border-color-transparent-in-internet-explorer-6/ To put it to work with IE6, we will create another rule, that is visible only in version 6 (the *html hack) with just two lines of code: *html .testDiv { border-color: pink;

IE6 Issue - border-color:transparent not working

冷暖自知 提交于 2020-01-03 02:05:46
问题 style="border:solid 1px transparent" is not working in IE6 instead it shows a black border. How to solve this issue? 回答1: IE6 does not support a border that is transparent . With a quick search, I found this workaround: http://acidmartin.wordpress.com/2008/08/24/emulating-border-color-transparent-in-internet-explorer-6/ To put it to work with IE6, we will create another rule, that is visible only in version 6 (the *html hack) with just two lines of code: *html .testDiv { border-color: pink;

Using Javascript to 'sum selected cells' in IE6

被刻印的时光 ゝ 提交于 2020-01-02 08:50:11
问题 In excel it is possible to highlight a range of cells and view the 'sum' in the 'status bar'. Can this be done in IE6 using Javascript and a HTML table ? 回答1: Here is some code to get you started, using jQuery. Of course there are many ways you could improve on it. ( EDIT: One thing to check is how well it works in IE. I think you need to add something like this.onselectstart = function() {return false}; in the mousedown event handlers to disable text selection in IE, but I don't happen to

What changed in firefox 3.6 to make <ul>'s render differently?

安稳与你 提交于 2020-01-01 06:10:25
问题 Edit (Solution Discovered) Thanks everyone for your help on this. The problem was an error in one of the lines of CSS that was being included (it's a large project with a huge combined CSS file so it was hard to spot). This was the problem line: background:transparent url(sf-pager.gif') repeat-x scroll bottom; Notice the missing apostrophe. IE6, IE7, and Firefox 3.5 seem to just ignore this line and continue with the rest of the combined CSS file no problem. Firefox 3.6 and Google Chrome

IE6 png bug; links don't work?

…衆ロ難τιáo~ 提交于 2020-01-01 06:06:06
问题 After many hours I figured out why the links within my pngs in IE6 do not work. It's because Im using filter:progid:dximagetransform.microsoft.alphaimageloader within my CSS. Yet after many more hours I have not found a solution to fixing these links. Here is my code... HTML <div id="fullwidth-header-wrapper"> <div id="header"> <strong class="logo"> <a href="#">Google</a> </strong> <div id="nav"> <ul> <span> <span style="color: white;">Prefer</span> Google? Click <a href="http://google.com"

IE6 png bug; links don't work?

非 Y 不嫁゛ 提交于 2020-01-01 06:06:06
问题 After many hours I figured out why the links within my pngs in IE6 do not work. It's because Im using filter:progid:dximagetransform.microsoft.alphaimageloader within my CSS. Yet after many more hours I have not found a solution to fixing these links. Here is my code... HTML <div id="fullwidth-header-wrapper"> <div id="header"> <strong class="logo"> <a href="#">Google</a> </strong> <div id="nav"> <ul> <span> <span style="color: white;">Prefer</span> Google? Click <a href="http://google.com"

CSS sprites and IE6

我与影子孤独终老i 提交于 2020-01-01 03:37:19
问题 Does IE6 support css-sprites? 回答1: Yes IE 6 supports sprites but doesn't support 24 bit PNG transparency. I use this css hack for giving IE < 7 a gif file and everything else a 24 bit png with transparency. background-image:url(/images/sprites/icons-sprite.png); _background-image:url(/images/sprites/icons-sprite.gif); /* IE<7 gets the crappy icons */ 回答2: You can also use Glue http://gluecss.com/ It's an open-source command line tool to generate sprites. 回答3: CSS sprites is a general solution