清除浮动的解决方案

Last updated on January 10, 2023 am

清除浮动造成的父元素高度塌陷

1
2
3
4
5
6
7
8
.article-container:after {
/*伪元素是行内元素 正常浏览器清除浮动方法*/
content: "";
display: block;
height: 0;
clear: both;
visibility: hidden;
}

清除浮动的解决方案
https://angelaggression.github.io/2022/10/24/清除浮动的解决方案/
Author
BurnedWings
Posted on
October 24, 2022
Licensed under