参考资料
- MDN Layout
- 学习CSS布局
- 清除浮动(clearfix hack)
- The very latest clearfix reloaded
- 解读浮动闭合最佳方案:clearfix
- What methods of ‘clearfix’ can I use?
方式1
.clearfix {
overflow: auto;//获取 layout
zoom: 1;//ie 6
}
方式2
.clearfix:after {
content:" ";
display:table;
clear:both;
}