css清除浮动
- 父元素添加overflow: hidden;
- 使用父元素after伪类
&:after {
content: '';
height: 0;
line-height: 0;
display: block;
visibility: hidden;
clear: both;
}
3.使用属性clear:both;清除浮动,这种需要再父元素最后写一个冗余元素添加clear:both属性
个人感觉使用after伪类的方法最好使