Category CSS

IE z-index bug 1

Aug5

Z-index bug on IE is a well-known flaw that most of front-end web developers have heard about. It is documented pretty clear on PPK Quirksmode:

http://www.quirksmode.org/…/Explorer_z_index_bug.html

and here

http://therealcrisp.xs4all.nl/../IE-zindexbug.html

Basically here is the break-down of the workaround…

continue reading »

IE and CSS class-chaining 0

Feb27

Internet Explorer 6, 7 both do NOT support CSS class-chaining as a couple of articles floating around on the internet say. Basically, CSS class-chaining is used to select HTML elements which have multiple CSS classes:
For example:

<!-- single class -->
<div class="cls3">Single</div> 

<!-- multiple classes -->
<div class="cls1 cls2 cls3">Multiple</div>

continue reading »