清除浮动

 

写法1:

/*清除浮动*/
.clearfix {
    zoom: 1;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

 

写法2:

/*清除浮动*/
.clearfix:after {
    content: " ";
    display: block;
    clear: both;
    height: 0;
}

.clearfix {
    zoom: 1;
}

 

posted @ 2017-04-03 09:47  linyongqin  阅读(80)  评论(0)    收藏  举报