06 May 2010
min-height for IE
min-height doesn’t work in IE, here is a workaround to the IE shortcoming or bug:
/* for all other browsers */
.box {
min-height:100px;
height:auto !important;
}
/* for Internet Explorer */
/**/
* html .box {
height: 100px;
}
/**/
Excellent read, I just passed this onto a colleague who was doing a little homework on that. And he in fact bought me lunch because I found it for him