CSS clearfix类 清浮动

手写 clearfix 类

/*
::after 是 CSS3 的规范(推荐)
:after 是 CSS2 的规范
*/
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.clearfix {
    *zoom: 1; /* 兼容 IE 低版本 */
}
posted @   Better-HTQ  阅读(75)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示