如何清除浮动? 哲学王 2023-03-07 59 阅读1分钟 方法一,给父元素加上 .clearfix .clearfix:after { content: ""; display: block; clear: both; } 方法二,给父元素加上 overflow:hidden。(BFC)