Please list CSS bugs/issues you encounter and how to solve them or a link to a site that solves them.
Please vote on what bugs you think people will encounter the most.
Thanks!
|
3
|
Please list CSS bugs/issues you encounter and how to solve them or a link to a site that solves them. Please vote on what bugs you think people will encounter the most. Thanks! |
|||
|
|
|
|
|
||||||
|
|
|
IE6 doesn't support min-height. You can use conditional comments to set height, which IE6 treats as a min-height. Or you can use the child selector in CSS, which IE6 can't read, to reinstate height: auto on everything but IE6.
Using techniques like this can be problematic, but all popular modern browsers work in such a way that it's a valid technique. |
|||
|
|
|
|
Double Margin Bug (< IE7) |
|||
|
|
|
|
Rumor has it that IE8 will not allow you to center elements with |
||||||||
|
|
|
Almost every HTML/CSS bug that you will encounter will be in Internet Explorer. IE6 has a lot of them, IE7 a bit fewer and IE8 subtantially fewer. Having a proper doctype is a must. Without it the page is rendered in quirks mode, and especially for IE that is bad. It renders the page more or less as IE5 would, with the box model bug and everything. Here are some common IE bugs:
The most stable fix for most of the bugs is to rearrange the layout to avoid them, or to specify stricter styles (e.g. a specific size). |
|||
|
|
|
|
Chalk another one up for IE6: DropDownList and DIV overlapping problem, with screen shots. The iframe fix is mentioned in the article. I'm not sure if there are CSS bugs that have consistent buggy behavior across all browsers. |
|||
|
|
|
|
here a link that list all IE known bugs and how to fix it: PositionsEverything.net |
|||
|
|