css清除浮动方法

css清除浮动方法

徐徐
前端
发布于2024-08-28 16:53:24
🌺前言
css清除浮动的四种方法

  1. clearfix
css
@mixin clearfix {
  &:after {
    content: "";
    display: table;
    clear: both;
  }
}
  1. overflow:hidden(开启bfc)

  2. 使用flex和grid布局

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

文章最后更新于 2024-08-28 16:53:24
留言
暂无数据

~~空空如也