关于带有浮动元素的css溢出

时间:2014-09-03 13:12:38

标签: css overflow

当你使用溢出:隐藏到包含浮动元素的主包装器时溢出如何修复浮动元素的流程

<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>

1 个答案:

答案 0 :(得分:0)

为元素赋予overflow:hidden会创建一个块格式上下文(BFC),也称为“流根”。

BFC的一个属性是浮动包含,即包含在你overflow:hidden的div中的所有浮动元素。

此外,由于BFC是文档正常流程的一部分,因此无需清除。