美文网首页
父容器高度塌陷的三种解决方法

父容器高度塌陷的三种解决方法

作者: 写给我的公主的简书 | 来源:发表于2017-04-26 23:05 被阅读0次

    1.overflow:hidden

    2.利用伪元素

    div::after {
        display: block;    
        content: "";
        clear: both;
    }
    

    3.添加一个div

    <style>
        .cf {
            clear: both;
        }
    </style>
    <div>
        .......
        .......
        <div class="cf"></div>
    </div>
    

    相关文章

      网友评论

          本文标题:父容器高度塌陷的三种解决方法

          本文链接:https://www.haomeiwen.com/subject/ocnwzttx.html