Linked by Thom Holwerda on Wed 11th Mar 2009 09:11 UTC, submitted by poundsmack
Permalink for comment 352697
To read all comments associated with this story, please click here.
To read all comments associated with this story, please click here.





Member since:
2005-07-06
min-height is not a problem since height in ie6 can't handle *> selectors and it treats height like min-height. So you would do something like:
#container {
height: 400px;
min-height: 400px;
}
*> #content {
height: auto;
}
I have never used min-width.