清除浮动有多少种方法
1.给父级也加浮动(这种情况当父级margin:0 auto;时不居中)
2.给父级加display:inline-block;(同方法1,不居中。只有IE6,7居中)
3.在浮动元素下加<div class="clear"></div>
4.在浮动元素下加<br clear="all">
5.给浮动元素父级加{zoom:1;}
:after 选择器向选定的元素之后插入内容( content:""; display: block; clear:both;)
6.为父元素设置overflow属性 hidden 或 auto