给父元素添加内容生成方法(推荐):
html部分:
<div style="border:5px solid #000;width:100%;" class="clearfix">
<div style="float:left;width:45%;height:100px;background:#ccc"></div>
<div style="float:right;width:45%;height:100px;background:#000"></div>
</div>
css部分:
.clearfix:after { content: ""; display: block; clear: both; }
.clearfix { zoom: 1; } // 该属性IE独有