clearfix清除浮动

.clearfix:before,.clearfix:after {
display: table;
content: "";
line-height: 0
}
.clearfix:after {
clear: both
}
.clearfix {
*zoom: 1
}

///////////////////////////////////////////////

.div:after{
       content:"";
       clear: both;
       display: block;
     }
原文地址:https://www.cnblogs.com/poppy1314/p/6248712.html