/ Published in: CSS
Microsoft IE’s does not have the capability of handling min-height. In essence, IE interprets height as min-height, so since IE wont implement the auto height, this snippet will fix all this for us (using !important).
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
.box { min-height:500px; height:auto !important; height:500px; }