美文网首页
clearfix清除浮动

clearfix清除浮动

作者: slick的马甲无理取闹 | 来源:发表于2016-05-06 10:52 被阅读0次

    精通CSS(第二版):

    .clear:after {
        content: ".";
        height: 0;
        visibility: none;
        display: block;
        clear: both;
    }
    

    bootstrap中清除浮动的方法:

    .clearfix {
        *zoom: 1;
    }
    
    .clearfix:before, .clearfix:after {
        display: table;
        line-height: 0;
        content:"";
    }
    
    .clearfix:after {
        clear: both;
    }
    

    相关文章

      网友评论

          本文标题:clearfix清除浮动

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