清除浮动:CSS写法详解及最佳实践
清除浮动的CSS写法正确的是:
.clearfix:after {
content: '';
display: table;
clear: both;
}
或者使用以下代码:
.clearfix {
overflow: auto;
}
这两种方法都可以有效地清除浮动,使父元素可以正确地包含子元素。
原文地址: https://www.cveoy.top/t/topic/lCCu 著作权归作者所有。请勿转载和采集!