>>You can feed height to IE6 with your method of choice, whether it be 
a conditional comment or * html "hack".<<

Actually, I've done it like this before, and it works:

div {
height:100%;
min-height:100%;
}

No need for hacks or conditionals.  The "min-height" will override the 
"height", because it's last.  IE6 doesn't recognize "min-height", so it 
ignores it and sticks with "height".  But anything that recognizes 
"min-height" will apply it.

In any case, you also need to have:

html, body {
height:100%;
min-height:100%;
}

to make whatever div you're using go to 100% also.

:)

~Shelly
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to