/ 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
.box { min-height:500px; height:auto !important; height:500px; }
You need to login to post a comment.
