当你使用溢出:隐藏到包含浮动元素的主包装器时溢出如何修复浮动元素的流程
<html>
when you use overflow:hidden to the main wrapper that are contain floated element how does overflow fix the flow of floated element
</html>
答案 0 :(得分:0)
为元素赋予overflow:hidden
会创建一个块格式上下文(BFC),也称为“流根”。
BFC的一个属性是浮动包含,即包含在你overflow:hidden
的div中的所有浮动元素。
此外,由于BFC是文档正常流程的一部分,因此无需清除。