方法一、clear清除浮动
clear
清除浮动的方法,添加一个空的div
标签清除浮动
.clearfix {
clear: both;
height: 0;
overflow: hidden;
}
复制代码
方法二、使用伪类的方法清除浮动
div:after {
content: '';
clear: both;
display: block;
height:0;
visibility: hidden;
}
复制代码