Denis Barushev

Email: barushev@gmail.com

CSS min-height Fast Hack

This hack which is a pure CSS solution will get a min-height working for IE6. MSIE 7.0 supports CSS min-height.

selector {
    min-height: 500px;
    height: auto !important;
    height: 500px;
}

Min-Height Fast Hack