清除浮动的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; }
请把你的疑问评论在下方。