/ Published in: CSS
There is no need for an IE-specific tag in your CSS to set a minimum height. You can do it without having to hack!
(Just replace the 500px with the height you need and rest assured that it will work in all browsers!)
Expand |
Embed | Plain Text
div#container { min-height: 500px; height: auto !important; height: 500px; }
You need to login to post a comment.
