通常当我在容器div中有浮动元素时,我会有这样的东西:
<div class="container">
<div style="float: left;">content</div>
<div style="float: left;">content</div>
<div style="clear:both;"></div>
</div>
我觉得在每个流畅的布局上都有<div style="clear:both;"></div>
非常烦人和丑陋。所以我尝试做这样的事情(使用css,但为了简单起见):
<div class="container" style="clear:both;">
<div style="float: left;">content</div>
<div style="float: left;">content</div>
</div>
并没有奏效。是否可以通过向.container
类添加内容来使其工作?