CSS常用代码片段清除浮动如果当前层级有浮动元素,那么在其父级添加上 clearfix 类即可。
// 清除浮动
.clearfix:after {
content: "\00A0";
display: block;
vis
2020-07-20