1、BFC是什麼?css
在解釋 BFC 是什麼以前,須要先介紹 Box、Formatting Context的概念。html
Box 是 CSS 佈局的對象和基本單位, 直觀點來講,就是一個頁面是由不少個 Box 組成的。元素的類型和 display 屬性,決定了這個 Box 的類型。 不一樣類型的 Box, 會參與不一樣的 Formatting Context(一個決定如何渲染文檔的容器),所以Box內的元素會以不一樣的方式渲染。讓咱們看看有哪些盒子:css3
Formatting context 是 W3C CSS2.1 規範中的一個概念。它是頁面中的一塊渲染區域,而且有一套渲染規則,它決定了其子元素將如何定位,以及和其餘元素的關係和相互做用。最多見的 Formatting context 有 Block fomatting context (簡稱BFC)和 Inline formatting context (簡稱IFC)。ide
CSS2.1 中只有 BFC
和 IFC
, CSS3 中還增長了 GFC
和 FFC。
佈局
BFC(Block formatting context)直譯爲"塊級格式化上下文"。它是一個獨立的渲染區域,只有Block-level box參與, 它規定了內部的Block-level Box如何佈局,而且與這個區域外部絕不相干。flex
代碼:spa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<style>
body {
width: 300px;
position: relative;
}
.aside {
width: 100px;
height: 150px;
float: left;
background:
#f66;
}
.main {
height: 200px;
background:
#fcc;
}
</style>
<body>
<div
class
=
"aside"
></div>
<div
class
=
"main"
></div>
</body>
|
頁面:
3d
根據BFC
佈局規則第3條:code
每一個元素的margin box的左邊, 與包含塊border box的左邊相接觸(對於從左往右的格式化,不然相反)。即便存在浮動也是如此。orm
所以,雖然存在浮動的元素aslide,但main的左邊依然會與包含塊的左邊相接觸。
根據BFC
佈局規則第四條:
BFC
的區域不會與float box
重疊。
咱們能夠經過經過觸發main生成BFC
, 來實現自適應兩欄佈局。
1
2
3
|
.main {
overflow: hidden;
}
|
當觸發main生成BFC
後,這個新的BFC
不會與浮動的aside重疊。所以會根據包含塊的寬度,和aside的寬度,自動變窄。效果以下:
代碼:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<style>
.par {
border: 5px solid
#fcc;
width: 300px;
}
.child {
border: 5px solid
#f66;
width:100px;
height: 100px;
float: left;
}
</style>
<body>
<div
class
=
"par"
>
<div
class
=
"child"
></div>
<div
class
=
"child"
></div>
</div>
</body>
|
頁面:
根據BFC
佈局規則第六條:
計算BFC
的高度時,浮動元素也參與計算
爲達到清除內部浮動,咱們能夠觸發par生成BFC
,那麼par在計算高度時,par內部的浮動元素child也會參與計算。
代碼:
1
2
3
|
.par {
overflow
:
hidden
;
}
|
效果以下:

代碼:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<style>
p {
color
:
#f55
;
background
:
#fcc
;
width
:
200px
;
line-height
:
100px
;
text-align
:
center
;
margin
:
100px
;
}
</style>
<body>
<p>Haha</p>
<p>Hehe</p>
</body>
|
頁面:
兩個p之間的距離爲100px,發送了margin重疊。
根據BFC佈局規則第二條:
Box
垂直方向的距離由margin決定。屬於同一個BFC
的兩個相鄰Box
的margin會發生重疊
咱們能夠在p外面包裹一層容器,並觸發該容器生成一個BFC
。那麼兩個P便不屬於同一個BFC
,就不會發生margin重疊了。
代碼:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<style>
.wrap {
overflow: hidden;
}
p {
color:
#f55;
background:
#fcc;
width: 200px;
line-height: 100px;
text-align:center;
margin: 100px;
}
</style>
<body>
<p>Haha</p>
<div
class
=
"wrap"
>
<p>Hehe</p>
</div>
</body>
|
效果以下: