清楚浮动的几种方式

1、添加一个div,然后给这个div设置css clear:both

    缺点:无形中添加了多余的标签,造成了代码的冗余

2】给父元素上添加overflow:hidden

3】添加伪类after     、、、、推荐使用

  .main:after{

content:' ';

clear:both;

display:table

}

原文地址:https://www.cnblogs.com/whdaichengxu/p/12791536.html