首页
CSS双伪元素清除浮动
1. 双伪元素清除浮动(三剑客)
.clearfix::before,
.clearfix::after {
content: '';
display: table;
clear: both;
}
谁需要清除浮动就给谁加,代码如下:
htmlcss
相关
html css js书写规范
html css 文本分散对齐,两端对齐
标签