美文网首页
万能清除浮动

万能清除浮动

作者: 婷诗漾 | 来源:发表于2017-11-24 14:50 被阅读0次

    我在项目用到的就是这个:

    css样式

    .clearfix:after {

        clear:both;

        content:" ";

        display:block;

        height:0;

        overflow:hidden;

        visibility:hidden;

    }

    html 中 给父元素添加 这个类名即可

    <div class = "clear">

    里面用了float的内容

    </div>

    相关文章

      网友评论

          本文标题:万能清除浮动

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