块格式化上下文(Block Formatting Context,BFC) 是Web页面的可视CSS渲染的一部分,是块盒子的布局过程发生的区域,也是浮动元素与其他元素交互的区域。
每一个BFC区域只包括其子元素,不包括其子元素的子元素。
每一个BFC区域都是独立隔绝的,互不影响
float
时其浮动的元素position: fixed
或position: sticky
display: inline-block
display: table-cell
, 包括使用 display: table-*
属性的所有表格单元格display: table-caption
的元素visible ---可能有副作用
display: flow-root
或 display: flow-root list-item --- 无副作用
contain: layout
, content
, 或 strict
column-span
设置为 all
1、属于同一个BFC的两个相邻容器的上下margin会重叠
改为不是同一个bfc display: flow-root;
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> *{ margin: 0; padding: 0; } .box { margin: 40px; background-color: aqua; } .bfc { display: flow-root; } </style> </head> <body> <div class="box">margin:40px</div> <div class="bfc"> <div class="box">margin:40px</div> </div> </body> </html>
2、计算BFC高度时浮动元素也参于计算
不给父节点设置高度,子节点设置浮动的时候,会发生高度塌陷,这个时候我们就要清除浮动。
吧父元素改为bfc
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> *{ margin: 0; padding: 0; } .box { border: 10px solid red; display: flow-root; } .son { float: left; width: 100px; height: 50px; border: 10px solid blueviolet; } </style> </head> <body> <div class="box"> <div class="son"></div> <div class="son"></div> <div class="son"></div> <div class="son"></div> </div> </body> </html>
3、BFC的区域不会与浮动容器发生重叠-可以左右布局
将right改为bfc
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> *{ margin: 0; padding: 0; } .box1 { width: 100px; height: 100px; float: left; background-color: aqua; } .box2 { height: 300px; background-color: blueviolet; display: flow-root; } </style> </head> <body> <div class="box1">left</div> <div class="box2">right</div> </body> </html>
4、BFC内的容器在垂直方向依次排列