Posts Categorized: ie6

Duplicated Characters IE Bug

IE6 has a really random bug involving multiple floated elements: characters from the last of the floated elements are sometimes duplicated just below the last float. There is no additional markup and there seems like there is nothing triggering it. Turns out the problem lies with IE having trouble dealing with html comments in between… Read more »

Posted

Transparency PNG Support in IE

As default, IE doesn’t support the alpha channel in PNG graphics, so if you use a colour to transparency gradient on an image it’ll show up as crappy grey block. You can get around this by including a htc file (html component – mechanism for implementing dhtml in script) as a behaviour attribute in your… Read more »

Posted

IE Min Height Hack

Lets you set the minimum height of an element. IE6 doesn’t support min-height but you can get around it using the code below. /* FOR PROPER BROWSERS */ .container { min-height:8em; height:auto; } /* USE ESCAPE CHARS TO GET IE ONLY READING THIS */ /**/ * html .container { height: 8em; } /**/

Posted