BFC,Block Formatting Context,块级格式上下文
具有 BFC 特性的元素可以看作是隔离了的独立容器,容器里面的元素不会在布局上影响到外面的元素,并且 BFC 具有普通容器所没有的一些特性。
触发 BFC
只要元素满足下面任一条件即可触发 BFC 特性:
- body 根元素
- 浮动元素:float 除 none 以外的值
- 绝对定位元素:position (absolute、fixed)
- display 为 inline-block、table-cells、flex
- overflow 除了 visible 以外的值 (hidden、auto、scroll)
BFC 特性及应用
同一个 BFC 下外边距会重叠
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| <head> <style> div{ width: 100px; height: 100px; background: lightblue; margin: 100px; } </style> </head> <body> <div></div> <div></div> </body>
|
如果想要避免外边距的重叠,可以将其放在不同的 BFC 容器中。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| <style> .container { overflow: hidden; } p { width: 100px; height: 100px; background: lightblue; margin: 100px; } </style> <div class="container"> <p></p> </div> <div class="container"> <p></p> </div>
|
BFC 可以阻止元素被浮动元素覆盖
1 2 3 4 5 6
| <div style="height: 100px;width: 100px;float: left;background: lightblue"> 我是一个左浮动的元素 </div> <div style="width: 200px; height: 200px;background: #eee"> 我是一个没有设置浮动, 也没有触发 BFC 元素, width: 200px; height:200px; background: #eee; </div>
|
1 2 3 4 5 6
| <div style="height: 100px;width: 100px;float: left;background: lightblue;"> 我是一个左浮动的元素 </div> <div style="width: 200px; height: 200px;background: #eee; overflow: hidden;"> 我是一个没有设置浮动, 也没有触发 BFC 元素, width: 200px; height:200px; background: #eee; </div>
|
BFC 可以包含浮动的元素(清除浮动)
我们都知道,浮动的元素会脱离普通文档流,来看下下面一个例子
1 2 3
| <div style="border: 1px solid #000;"> <div style="width: 100px;height: 100px;background: #eee;float: left;"></div> </div>
|
由于容器内元素浮动,脱离了文档流,所以容器只剩下 2px 的边距高度。如果使触发容器的 BFC,那么容器将会包裹着浮动元素。
1 2 3
| <div style="border: 1px solid #000;overflow: hidden"> <div style="width: 100px;height: 100px;background: #eee;float: left;"></div> </div>
|