美文网首页
清除浮动

清除浮动

作者: 苗喵秒 | 来源:发表于2019-11-06 17:26 被阅读0次

    Less 内容

    .clearfix() {
        zoom: 1;
        &:before,
        &:after {
            content: "";
            display: table;
        }
        &:after {
            clear: both;
            visibility: hidden;
            font-size: 0;
            height: 0;
        }
    }
    .clearfix {
        .clearfix()
    }
    

    css内容

    .clearfix {
      zoom: 1;
    }
    .clearfix:before,
    .clearfix:after {
      content: "";
      display: table;
    }
    .clearfix:after {
      clear: both;
      visibility: hidden;
      font-size: 0;
      height: 0;
    }
    

    相关文章

      网友评论

          本文标题:清除浮动

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