Min-Height Hack for IE6
| Posted in CSS, XHTML | Posted on 21-12-2008
0
For Min-Height working in IE6 this was the easiest way of doing it. In browser like IE6 won’t take min-height with this simple hack you can give the min-height to IE6.
selector {
min-height:500px;
height:auto !important;
height:500px;
}

