1.父元素添加overflow:auto/hidden;
2.父元素内加空div,添加样式clear:both;
3.父元素添加伪类;
.parent:after{
content:'';
display:block;
clear:both;
}