清除浮动的几种方式

参考资料

方式1

.clearfix {
  overflow: auto;//获取 layout
  zoom: 1;//ie 6
}

方式2

.clearfix:after {
    content:" ";
    display:table;
    clear:both;
}
posted @ 2016-12-09 10:45  码不能停  阅读(285)  评论(0)    收藏  举报