clearfix fixed hack

来源:互联网 发布:java调用esb 服务方式 编辑:程序博客网 时间:2024/06/05 09:07
.clearfix:after { content: "."; visibility: hidden; display: block; height: 0; clear: both;}

Normally you would need to do something as follows:

<div style="float: left;">Sidebar</div><div style="clear: both;"></div> <!-- Clear the float -->

With clearfix, you only need to

<div style="float: left;" class="clearfix">Sidebar</div><!-- No Clearing div! -->