Reputation: 19315
I've been lucky to develop websites for the past 3 years for companies that don't need to support IE 6 in any way.
I've just accepted a development job with a company that works exclusively with IE 6 customers in the financial field. These people may be hemmed in by corporate IT departments or haven't upgraded, or whatever the reason is, we have to support IE 6 (and JUST IE 6).
I have no background in supporting this browser and I used to happily skip over SO questions that dealt with IE lte
selectors and all of that. But now that it's going to pay the bills, I want to know as mch as I can about the CSS selectors that work/don't work, how JS may be quirky, and anything else that may help me catch up in the new job.
Is there a good respository of the "quirks" that make up the lovable IE 6 experience, or is it spread piecemeal across the 'tubes?
Upvotes: 9
Views: 217
Reputation: 227
Good suggestions... a couple of things that might help:
Upvotes: 1
Reputation: 91734
This is a nice article about the 9 most common IE bugs and how to fix them.
Upvotes: 1
Reputation: 3757
My clients use IE6. The repositories listed above may mention these, but nevertheless I write them here.
javascript:'<xmp>%20+%20window.document.body.outerHTML%20+%20</xmp>'
Upvotes: 3
Reputation: 1108712
At hasLayout is an excellent overview of all known IE CSS bugs, most of them complete with solutions. This site is imo better overviewable, a real bug repository. All is summarized in short instead of spread over 100s pages like Quirksmode, which in turn is however excellent as a general reference.
Upvotes: 8
Reputation: 6018
"QuirksMode.org is the prime source for browser compatibility information on the Internet." Specifically, to your question visit the CSS2 page there, and look at the IE6 column on the table.
Upvotes: 2
Reputation: 838176
Quirksmode is an invaluable source of information for this sort of thing.
In particular, take a look at the compatibility tables.
Upvotes: 2
Reputation: 449415
Is there a good respository of the "quirks" that make up the lovable IE 6 experience
quirksmode.org is an excellent resource for browser compatibility questions. It has great, nicely designed compatibility tables that give you almost everything you need to know. Be sure to take a look.
Upvotes: 11