清除浮动方法

清除浮动方法

徐徐
前端
发布于2024-08-20 15:48:32
🌺前言
清除浮动的几种方法总结

1.clearfix

scss
@mixin clearfix {
  &:after {
    content: "";
    display: table;
    clear: both;
  }
}

2.overflow:hidden(开启bfc)

3.使用flex和grid布局

4.或者浮动元素后面跟一个空元素设置有clear属性的元素

目录

文章最后更新于 2024-08-25 12:41:31
留言
暂无数据

~~空空如也