学无先后,达者为师

网站首页 编程语言 正文

浮动清除通用代码

作者:小_林_子 更新时间: 2023-12-02 编程语言
/* .clearfix::before 作用:解决外边距塌陷问题 */
/* 清除浮动 */
.clearfix::before,
.clearfix::after {
    content: '';
    display: table;

}

/* 真正清除浮动的标签 */
.clearfix::after {
    clear: both;
}

在需要的时候直接使用.clearfix类就行

原文链接:https://blog.csdn.net/xiaolinye3319/article/details/125460246

  • 上一篇:没有了
  • 下一篇:没有了
栏目分类
最近更新