方法一:
min-height:160px; 设置对象box的最小高度,Firefox、IE7+适用;
height:auto!important; 设置对象box的高度无自动定位,使用!important对下height高度定位设置进行优先级提升;
height:160px; 设置对象高度,因上属性!important运用,此属性只有IE6认。
方法二:
min-height:160px; 设置对象box的最小高度,Firefox、IE7+适用;
height:auto; 设置对象box的高度无自动定;
_height:160px; 设置对象高度,此属性只有IE6认,在IE6下此属性覆盖上auto属性。
在min-height容器中不能使用float属性,否则会失效。如果在大容器中使用,可在内部最后清除float,示例:
<div id="content"> <div id="left"></div> <div id="right"></div> <div class="clear"></div> </div>
以上是 关于min-height注意点的详细内容。更多信息请关注PHP中文网其他相关文章!