Page 1 of 1

[CSS] IE5 and IE6 min-height fix.

Posted: Thu Oct 07, 2010 3:32 pm
by Chris
After testing and discovering IE5 and IE6 don't support min-height I came up with this little fix, thought I'd post it to save anyone else the bother of having to reinvent it:

Code: Select all

min-height: 500px;
height: auto !important;
height: 500px;
Actually why am I making compatibility for IE6.. I want less people to use it.. Awell :P

Re: [CSS] IE5 and IE6 min-height fix.

Posted: Thu Oct 07, 2010 4:13 pm
by Jackolantern
Nooo! Try to make things break on IE5 and 6 to make them move on!

Really, thanks for this :)

Re: [CSS] IE5 and IE6 min-height fix.

Posted: Thu Oct 07, 2010 4:53 pm
by hallsofvallhalla
yes, thanks