/ Published in: CSS
Using this, all modern browsers will apply min-height: 500px. IE will ignore the height auto in favour of the height 500px;
It works, just use it. No need for any IE specific CSS hacks.
Expand |
Embed | Plain Text
div.height { min-height:500px; height:auto !important; height:500px; } /* You simply need to ensure the height is the last declaration and IE6 will use it instead of the height auto declaration */
You need to login to post a comment.
