清除浮动
父级上增加属性overflow:hidden在最后一个子元素的后面加一个空的div,给它样式属性 clear:both(不推荐)使用成熟的清浮动样式类,clearfix.clearfix:after,.clearfix:before{ content: "";display: table;}
.clearfix:after{ clear:both;}
.clearfix{zoom:1;}清除浮动的使用方法:.con2{... overflow:hidden}
或者
<div class="con2 clearfix">