vote up 11 vote down star
11

Mine would have to be the float and margin bugs...

If you float an element, and then specify a margin for it, it will double the margin.

The solution to this is to add display: inline to the element. This will stop the double margin, and all other browsers will ignore it because only block level objects can be floated.

flag
Long live !important hack. – yoavf Oct 28 '08 at 6:56

21 Answers

vote up 12 vote down check

I wish I'd known that I'd be spending hours trying to fix a bug in IE 6 over and over again for years on end and I really would have been happier delivering pizza.

link|flag
haha. Well everytime it happens, it only happens once. A lot of web developers are a walking index of IE6 bugs. I wonder how much money has been lost by web companies working to fix problems in IE6. – alex Oct 28 '08 at 5:10
I don't know but there should be a class action suit. – eyelidlessness Oct 28 '08 at 5:13
Imagine what life will be like when IE8 is out, and it's as standards compliant as they claim. Add a few years and IE6 might be all but gone.. IE7 is slightly less of a pain to develop for, with CSS anyway. – alex Oct 28 '08 at 5:15
@alex: The next Windows Mobile is going to include the IE 6 engine. So much for it going away anytime soon. – eyelidlessness Oct 28 '08 at 5:27
Also, to be fair, while IE 8 is fixing a lot of the obvious CSS problems, they aren't doing much to fix the DOM, Chris Wilson pretty much admitted as much: ajaxian.com/archives/… – eyelidlessness Oct 28 '08 at 5:30
show 22 more comments
vote up 5 vote down

Transparent PNG should have been supported...

link|flag
And the javascript/propriety hack is very ugly.. Why can't they at least add a update in a service pack to support 24bit PNG's alpha channels. – alex Oct 28 '08 at 5:11
Single color transparent png's are supported though. I used that for a website with lots of 4 bit images and single color transparency, for they were usually smaller than their gif counterpart. – Martin Kool Oct 28 '08 at 7:51
Yeah but alpha transparencies are way cooler!!! Single colour (I'm Australian :P) transparencies in PNG's are the same as GIF aren't they? – alex Oct 28 '08 at 23:22
vote up 2 vote down

Probably that SELECT elements dont render with the correct z-order.

For example, if you have a floating DIV with a higher z-order overlayed on top of a select - the SELECT element will still render on top of the DIV.

Infuriating.

link|flag
I guess the only way to fix this is with IFRAMEs? yuck! IE6 must just paint that form control directly over everything – alex Oct 28 '08 at 5:56
vote up 1 vote down

http://www.pushuptheweb.com/ or one of many other sites pushing to drop IE6 support. I'm aware that rendering web pages correctly for IE6 visitors is the core of many web businesses, but sooner or later something has to give. I just dont get why MS doesn't force an update >.<

link|flag
vote up 7 vote down

Number one thing: hasLayout If I had known about this from the start most of my worries would've been solved. I even regard it as a worse problem than IE6's stupid box model.

link|flag
vote up 15 vote down

I wish I knew about quirksmode.org. The compatibility tables, bug reports, javascript examples are all very useful.

link|flag
link goes to quirksmode.org but text says quriksmode.org. – Ray Dec 1 '08 at 2:08
@Ray: that's an IE bug for sure. – eyelidlessness Dec 11 '08 at 1:02
@eyelidlessness, I call that an IR bug – Jimmy Dec 11 '08 at 1:13
vote up 5 vote down

I wish I'd known about

  • the conditional comments to include stylesheets just for IE
  • xhtml headers to make IE render in compliant mode
  • the box model problem, so that I knew what to put in my IE stylesheet

After I learned about these things, I haven't really used a lot of time fixing problems in IE6

.Hauge

link|flag
1  
You don't need any "xhtml headers" (IE does not support XHTML at all). Standards mode is triggered by certain DOCTYPEs, including HTML4 Strict DOCTYPE. Make sure DOCTYPE you use has URL. – porneL Nov 19 '08 at 23:50
vote up 5 vote down

I wish I'd known about Position is Everything, but specifically the peekaboo bug has always got me.

link|flag
Forbidden You don't have permission to access /explorer/ on this server. – Chris Porter Oct 28 '08 at 14:08
I think this is the link you intended: positioniseverything.net/explorer.html – Chris Porter Oct 28 '08 at 14:09
Fixed the first link. – Quinn Taylor Aug 24 at 17:53
vote up 2 vote down

I wish I knew that my code didn't validate. Or that an XML declaration in XHTML puts IE into quirks mode.

link|flag
vote up 4 vote down

That if your really anal and spend shit loads of time on it that it pays off and you then become an IE guru fearing nothing but the sad self you have become...

Although it is nice to impress people with your amazing IE bug fixing abilities...

  1. Most IE bugs can be avoided by using different (normally better) CSS methods and super clean logical xhtml
  2. Always clear your floats with overflow hidden (or just hasLayout for IE)
  3. Understand what hasLayout is (basically a css porperty that gives IE a kick in the ass)
  4. When you start devving sites check IE6 all the time, untill your a pro ;¬P

Unfortunately, and I do train a small team of 6 developers, experience is one of the only things that really helps with these problems, stay calm, do good research in google and post your problem to a community if you really are stuck with a good demo of the problem.

Nice links >

  1. http://css-tricks.com/ie-css-bugs-thatll-get-you-every-time/ (although I recommend the PNG fix by Bob Osola /-0)
  2. http://www.gtalbot.org/BrowserBugsSection/ (amazing and funny... great!)

Good luck!

link|flag
Using overflow:hidden to clear floats is handy, but it won't work in all situations. Sometimes you need something (say, a graphic or rollover) to "spill out" of the div it's in, but overflow:hidden will clip it off – Andy Ford Oct 28 '08 at 18:52
vote up 8 vote down

Don't code for IE6 first. That's the path to madness.

link|flag
Amen. I develop everything primarily using Firefox 3 (and IE7 using IE Tab) as a test bed, then once I get everything working and looking good, I start trying to make it look the same in IE6 (and to a lesser extent FF2) without breaking it. Doing it the other way really sucks. – CMPalmer Oct 28 '08 at 14:17
I agree, Firefox seems to be the best choice for developers. Develop for Firefox 3, then make compatible with other browsers. This seems to be the best way to keep your sanity. – Liam Oct 28 '08 at 14:34
You might want to throw in Webkit (Chrome or Safari) and Opera in there for testing. Standing on the "FireFox is the WC3 standard" high horse can lead to a rather painful fall. FireFox has a lot of CSS rendering bugs, especially around UI controls ('input type=button' ignores the WC3 box model for example, which can cause alignment problems with other controls when viewing in standards compliant browsers). No browser currently works entirely as the WC3 standard dictates (Don't get me started on Opera's butchering of the CSS2 printing attributes) and I doubt they ever will. – David Aug 24 at 18:16
I completely agree. The real take-home is: don't just code using 1 browser. Any browser (but most especially IE). You have to switch around & incrementally test in all. – Ben Scheirman Aug 24 at 20:29
vote up 2 vote down

The main problem we have had is with scheduling enough "fix in IE6" time. That and the designers' tendency to come up with stuff that is easy to do in Flash and tricky to achieve in CSS has cost us many days of extra work.

link|flag
vote up 1 vote down

That even with all the PNG hacks in the world, if you're using PNGs as backgrounds in your divs (to make, for example, a panel with rounded borders), you're headed for a world of pain. (Links and other elements not being clickable, IE6 crashing in earlier versions of the png dll, etc.)

In summary: don't use transparent background PNGs if you want it to work in IE6.

link|flag
vote up 1 vote down

in addition to other IE bug lists that Ross and Loque gave above (gtalbot.com, what a beautiful site!

http://css-discuss.incutio.com/?page=InternetExplorerWinBugs

http://webbugtrack.blogspot.com/search/label/IE7

http://www.enhanceie.com/ie/bugs.asp

http://channel9.msdn.com/wiki/internetexplorerprogrammingbugs/ (like gtalbot, it'll take you hours to scroll thru this


and, hey, IE 8 beta 2

http://css-class.com/test/bugs/ie/ie-bugs.htm


finally, the IE voodoo doll!

http://www.flickr.com/photos/chisa/1349759901/

link|flag
vote up 1 vote down

The importance of DOCTYPES in IE, and

Web Bug Track

link|flag
vote up 5 vote down

I wish I'd known why Microsoft hated me so much.

link|flag
This made me laugh out loud. – Nathan Long Nov 11 '08 at 16:30
vote up 4 vote down

I wish I'd known that many IE 6 error line numbers are off by one.

link|flag
I didn't know that... – alex Nov 11 '08 at 3:47
Well, you just learned something new! (Doesn't that deserve an upvote?) – Robert J. Walker Nov 11 '08 at 23:34
vote up 1 vote down

the underscore trick

if you put an _ infront of the css atribute it only gets read by ie6.

ie. _border: 1px solid #000000; creates a border only in ie6

link|flag
vote up 1 vote down

I Wish I'd Known That Internet Explorer Is The New Netscape Navigator 4.7.x

link|flag
+1 for the unfortunate truth – scunliffe Nov 12 '08 at 4:46
-1 for spelling of Navigator. – porneL Nov 19 '08 at 23:52
So we've progressed from "crashes at the very sight of CSS or any other WC3 standard" to "Renders CSS content, except when it doesn't and adds extra space anywhere it feels like"? – David Aug 24 at 17:59
vote up 1 vote down

The rendering quirk which causes a small white space underneath an image in a table cell if there is any white space between the end of the img tag and the closing td tag.

This renders right:

<td><img src="myimage.jpg"></td>

This renders wrong:

<td>
<img src="myimage.jpg">
</td>
link|flag
whats the best solution to this? – Simon Jan 21 at 9:29
vote up 1 vote down

1

hasLayout and this excellent explanation: http://www.satzansatz.de/cssd/onhavinglayout.html

I had a new lease on life once I'd wrapped my head around it! Ensuring that the containing element hasLayout fixes the vast majority of my problems.

2

jQuery!! Writing IE-specific CSS is bad enough, so I'm glad I rarely have to worry about JS anymore.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.