首页 > 代码库 > 以下css可以清除浮动

以下css可以清除浮动

.clearfix:after {    content: "";    clear: both;    visibility: hidden;    display: block;    height: 0px;    font-size: 0px;}

通常,我们增加一个div,然后使用clear:both清除。

上面这种方法更为简洁。在最后一个子元素上使用如上css即可!

以下css可以清除浮动