美文网首页
【css】清除浮动有哪些方式

【css】清除浮动有哪些方式

作者: Adder | 来源:发表于2021-05-31 12:41 被阅读0次

    添加伪类,空标签clear: both

    .clearfix::after {
      content: '';
      clear: both;
      display: block;
    }
    .clearfix {
      zoom: 1 // IE问题兼容
    }
    

    position 设置为非 static 和relative

    脱离文档流

    相关文章

      网友评论

          本文标题:【css】清除浮动有哪些方式

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