/ Published in: CSS
URL: www.mediamilan.com
Internet Explorer 6.0 and 7.0 does not understand min-height css property. So we need to include a simple hack to get this done.
Expand |
Embed | Plain Text
/* CSS for other mordern browsers */ .container { min-height:200px; } /* for Internet Explorer */ * html .container { height: 200px; }
You need to login to post a comment.
