min-height does not work in IE 6. Here is a hack.
.container {
min-height: 400px;
height: auto;
}
/**/
* html .container{
height: 400px;
}
/**/
Do you really want to know?
min-height does not work in IE 6. Here is a hack.
.container {
min-height: 400px;
height: auto;
}
/**/
* html .container{
height: 400px;
}
/**/