Is this the best way to do min height in all browsers? It seems kind of chunky
.container {
min-height:800px;
height:auto !important;
}
/* Internet Explorer */
* html .container {
height: 800px;
}
|
0
|
Is this the best way to do min height in all browsers? It seems kind of chunky
|
|||
|
|
1
|
I've always done a slightly shorter version.
|
|||
|
|