internet-explorer-6

html table border is not consistent in IE6.0 and firefox

时光毁灭记忆、已成空白 提交于 2019-12-02 09:46:46
In my html table I have used a border . But my border is inconsistent in IE 6.0 and firefox. In IE border-bottom 's height is more than expected but in Mozilla it is same on all borders. Images for Firefox and IE respectively: <table> <tr> <td style="width:90%;border:2px solid #3399FF;">this is demo</td> </tr> </table> Please tell me how to make it consistent. This sounds like a IE box model issue to me. See this http://lloydom.blogspot.com/p/technical-stuff.html and scroll down to the IE 6 BOx model heading 来源: https://stackoverflow.com/questions/8305638/html-table-border-is-not-consistent-in

How do you get “IE 6 conditional comments” working?

孤者浪人 提交于 2019-12-02 08:34:36
i have this markup which works fine: <div id="hd1" class="header headerNotIE6"> i am now trying to put a ie6 specific workaround so i am trying to only have this div if the browser is not IE 6. So i want this line to hit if its IE7, 8 and firefox and chrome. I tried this but it doesn't seem to work in Firefox or Chrome. <!--[if !(IE 6)]> <div id="hd1" class="header headerNotIE6"> <![endif]--> is there any "if everything but IE6" conditional comment that works in an html file ?? BoltClock To target any IE except IE6, you use the ! operator: <!--[if !IE 6]> <div id="hd1" class="header

How do I keep divs from resizing in IE6?

天大地大妈咪最大 提交于 2019-12-02 07:37:35
问题 Here's my markup ( live repro ): <body> <div style="text-align:center">header <input class='datepicker'/></div> <table><tr><td>really wide table.....................</td></tr></table> </body> When the datepicker is activated, the header div's width changes from the width of the screen to the width of the table (larger). This causes the header's centered contents to shift to its new center...which is very annoying. This occurs in IE6 but not in FF3.5, IE8, or IE8-compat-mode. What's the best

display: table dosen't work in ie6 & ie7 [closed]

谁说胖子不能爱 提交于 2019-12-02 07:27:37
i create a menu but it doesn't work in ie6 & ie7 because of display:table . how can i do this to work in ie6 and ie7 with style display:table there is my example http://jsfiddle.net/amkrtchyan/fCsax/ but it doesn't work in ie6 and ie7 IE6 and IE7 do not support display: table; http://www.quirksmode.org/css/display.html You can either use a real table if its tabular data, otherwise you can use lists (ul) and inline-block with the *display:inline hack and zoom:1 for IE7 and below. sandeep IE7 doesn't support display:table, so you have to rebuild the menu in a different way or you can use js for

Why is Internet Explorer 6 still a corporate favorite in some organizations? [closed]

若如初见. 提交于 2019-12-02 06:52:45
... or How can I convince my organization to ditch Internet Explorer 6? Having to maintain Internet Explorer 6 compatibility when developing web applications is a nightmare - but until my client decides to ditch it as the official browser, I am stuck with it. I am trying to convince our system administrators to change. I've seen a long list of arguments against using Internet Explorer 6 in any environment, and I am trying to anticipate their arguments rebuttals. So far, the only perceived advantages I can see in Internet Explorer 6 are: Central management through group policies Legacy

Visited Links color not changing in IE 8

柔情痞子 提交于 2019-12-02 06:37:32
问题 I am having a problem with IE 8 where the visited links color do not change in our application. We don’t have this problem with IE6. When using IE6, visited links changes its color if the link has been viewed before. Our application works fine with IE6 but with IE8 the visited link do not changes its color. For information, I have cleared the history , unchecked the option "use Windows Colors" in the browser option. But the links in our application always remain unvisited. Here is the CSS: a

How do I keep divs from resizing in IE6?

橙三吉。 提交于 2019-12-02 05:16:20
Here's my markup ( live repro ): <body> <div style="text-align:center">header <input class='datepicker'/></div> <table><tr><td>really wide table.....................</td></tr></table> </body> When the datepicker is activated, the header div's width changes from the width of the screen to the width of the table (larger). This causes the header's centered contents to shift to its new center...which is very annoying. This occurs in IE6 but not in FF3.5, IE8, or IE8-compat-mode. What's the best way to fix the width of the header div to the width of the window (not the content)? Note: there is

event.currentTarget in IE6

前提是你 提交于 2019-12-02 04:38:18
问题 I've got an event handler that I'm attaching to an element to catch a bubbled click event. I need a reliable way of obtaining the element that caught the event, not the element that triggered it. The amount of levels this specific element is above the srcElement/target is arbitrary, thus using parentNode or whatever is not a viable solution. This specifically needs to work in IE6. While I am a bit of a fan of the jQuery framework, I will not be using jQuery in this, so any jQuery suggestions

Visited Links color not changing in IE 8

自作多情 提交于 2019-12-02 04:23:40
I am having a problem with IE 8 where the visited links color do not change in our application. We don’t have this problem with IE6. When using IE6, visited links changes its color if the link has been viewed before. Our application works fine with IE6 but with IE8 the visited link do not changes its color. For information, I have cleared the history , unchecked the option "use Windows Colors" in the browser option. But the links in our application always remain unvisited. Here is the CSS: a:link { color : #006000; } a:visited { color : #3CB371; } Any help and suggestions would be greatly

Is there any Fix for child selector in IE6

血红的双手。 提交于 2019-12-01 19:29:10
问题 While using :first-child :last-child , in css its works fine in IE7, FF. Is there any possible fix for this. Use of Javascript is fine. If it works without javascript it would be great. 回答1: You can use a semantic class name to ease your suffering in IE6. Something like: <ul> <li class="first">First Item</li> <li>Second Item</li> <li class="last">Last Item</li> </ul> And then in your CSS use: ul .first { color: #F00; } ul .last { color: #00F; } 回答2: Thanks all, Here is the javascript version