CSS中的清除浮动

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

.clearfix {
    *zoom: 1; /* 兼容 IE 低版本 */
}

 或

.parent {
    overflow: hidden;
}

 

posted @ 2021-10-20 18:44  starlog  阅读(21)  评论(0编辑  收藏  举报