As you may be aware the CSS property min-height unfortunately doesn’t work in IE6, however if you add the following hack after the attribute:
height:auto !important;
height: (the min height value);
You’ll be able to get it to work, an example would be:
.classname {
min-height:200px;
height:auto !important;
height:200px;
}



