IE6 Min-height problem
Here is one for the newbies to web design. Min-height does not work in IE6, but here is a to get it to work.
selector { min-height: 500px; height: auto !important; height: 500px; _overflow: visible; }
IE6 doesn’t understand the min-height or the !important, but it does see the height: 500px, and the overflow: visible extends the container so that everything displays. Simple as that.





