css清除浮动

//最佳方法

.clearfix::after{
display: block;
content: '';
height: 0;
clear: both;
visibility: hidden;
}
.clearfix{
zoom: 1;
}
原文地址:https://www.cnblogs.com/ningmengyu1013/p/10880424.html