@
smilingsun 但是根据文档上说的:
Floats, absolutely positioned elements, block containers (such as inline-blocks, table-cells, and table-captions) that are not block boxes, and block boxes with 'overflow' other than 'visible' (except when that value has been propagated to the viewport) establish new block formatting contexts for their contents.
也就是说创建 BFC 的条件是:
1. float 的属性不是 none;
2. overflow 的属性不是 visible;
3. position 的属性是 absolute,fixed;
4. display 的属性是: inline-block,table-cells,table-caption.
并没有说到 clear ... 然后我现在还在查