清除浮动的3种方法

1 在里面添加<>

<div style="clear:both"></div>

2 容器里添加

<div style="overflow:hidden"></div>或者
<div style="overflow:auto"></div>

3 父元素也浮动

 

4

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

 

posted @ 2016-10-29 14:50  慕容小凡  阅读(205)  评论(0编辑  收藏  举报