div的最小高度设置兼容各浏览器

来源:互联网 发布:好用的ss代理 知乎 编辑:程序博客网 时间:2024/05/16 10:02
按下边这样最小高度就是160,并div可以被撑开.
    height:auto!important;
     height:160px;
     *height:160px;/*ie6*/

     min-height:160px;

<html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"></head><body>    <div style="height:auto!important;height:160px;*height:160px;/*ie6*/min-height:160px;background-color:#212121;">                <div style="height:800px; width:100px;background-color:red;"></div>    </div></body></html>



原创粉丝点击