清除浮动

.clearfix:after { content: ''; display: block; height: 0; overflow: hidden; clear: both; }

.clearfix { *zoom: 1; }

简化

.fix:after {}

.fix {}

更好的方法

.clearfix:after { content: ''; display: table; clear: both; }

.clearfix { *zoom: 1; }


你可能感兴趣的:(display,content,hidden)