The CSS standard allows you to specify a minimum height of an element. This works fine in proper browsers such as Firefox.
In Internet Explorer 6 it doesn't work properly.
Some people suggest doing this :
#container {
min-height:100px;
height: 100px;
}
html > body #container {
height: auto;
}
#container {
min-height: 100px;
height:auto;
}
/* for Internet Explorer */
/*\*/
* html .container {
height: 100px;
}
/**/
#container {
min-height: 100px;
_height: 100px;
}