7Mar/100
Min-Height hack for Internet Explorer 6
Setting min-height in CSS is great until you cross browser check and surprise surprise, IE6 doesn't like it.
Here's a really neat quick hack to overcome the problem:
selector { min-height:500px; height:auto !important; height:500px; }
Full credit goes to this site http://www.dustindiaz.com/min-height-fast-hack/