"height" is supported by IE6 so we can just use height and for extra part we can use overflow: visible;
height: 100px;
overflow: visible;
overflow: visible;
In some cases where we need to have an overflow:hidden on the element, we can use the following snippet.
#container { min-height:100px; }
* html #container { height:100px; }
Only IE6 recognizes "* html" selector so that would fix it.
* html #container { height:100px; }




0 Reactions to this post
Add CommentPost a Comment