清除浮动的方式

1 通用
.clearFloat:before, .clearFloat:after {
display:table;
content:" ";
}
.clearFloat:after{
clear:both;
}

  1. overflow:hidden;(父级元素增加属性)

3.在最后一个子元素的后面加一个空的div,给它样式属性clear:both;

posted @ 2018-09-13 20:43  windalm  阅读(112)  评论(0编辑  收藏  举报