This section describes how to trigger BFC and BFC functions (such as clear floating and prevent overlap of margin)
1. What is BFC? Box: basic unit of CSS layout
Box is the object and basic unit of CSS layout. In a straight view, a page is composed of many boxes. The element type and display attribute determine the type of the box. Different types of boxes are involved in different formatting context (a container that determines how to render the Document). Therefore, elements in the box are rendered in different ways. Let's see which boxes are available:
- Block-level box: If the display attribute is block, list-item, or table, block-level box is generated. And participate in block fomatting context;
- Inline-level box: If the display attribute is inline, inline-block, or inline-table, inline-level box is generated. And participate in inline formatting context;
- Run-in box: css3.
Formatting Context
Formatting context is a concept in W3C css2.1 specification. It is a rendering area in the page and has a set of rendering rules that determine how its child elements will be located and the relationship and interaction with other elements. The most common formatting context includes block fomatting context (BFC) and inline formatting context (IFC ).
OnlyBFC
AndIFC
,Css3AddedGFC
AndFFC。
BFC Definition
The BFC (Block formatting context) literal translation is "block-level formatting context ". It is an independent rendering area with only block-level box involved. It specifies how the internal block-level box is laid out and has nothing to do with the outside of the area.
BFC layout rules:
- The internal box is placed in the vertical direction one by one.
- The vertical distance of the box is determined by margin. The margin of two adjacent boxes belonging to the same BFC overlaps.
- The left side of the margin box of each element is in contact with the left side of the border box containing the block (for formatting from left to right, otherwise the opposite is true ). This is true even if floating occurs.
- The BFC region does not overlap with the float box.
- BFC is an isolated independent container on the page. The child elements in the container do not affect the external elements. And vice versa.
- When calculating the BFC height, floating elements are also involved in calculation.
2. What elements will generate BFC?
- Root element
- The float attribute is not none.
- Position is absolute or fixed
- Display is inline-block, table-cell, table-caption, flex, inline-flex
- Overflow is not visible
Iii. functions and principles of BFC 1. Adaptive Layout of two columns
<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>
Page:
AccordingBFC
3rd layout rules:
The left side of the margin box of each element is in contact with the left side of the border box containing the block (for formatting from left to right, otherwise the opposite is true ). This is true even if floating occurs.
Therefore, although the floating element aslide exists, the left side of main is still in contact with the left side of the contained block.
AccordingBFC
Article 4 of layout rules:
BFC
Does not matchfloat box
Overlap.
We can generateBFC
To achieve adaptive two-column layout.
.main { overflow: hidden;}
When the main generation is triggeredBFC
After, this newBFC
Does not overlap with floating aside. Therefore, it is automatically narrowed according to the width of the included block and the width of the aside. The effect is as follows:
2. Clear internal floating
Code:
<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>
Page:
AccordingBFC
Article 6 of layout rules:
ComputingBFC
The floating element is also involved in the calculation.
To clear the internal floating point, we can trigger the par generation.BFC
In this case, when the height of a par is calculated, the floating element child in the PAR is also involved in the calculation.
Code:
.par { overflow: hidden;}
The effect is as follows:
?
3. Prevent Vertical margin overlap
Code:
<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>
Page:
The distance between two P is PX, and a margin overlap is sent.
The second rule is as follows:
Box
The vertical distance is determined by margin. Belong to the sameBFC
Two AdjacentBox
The margin of will overlap.
We can wrap a layer of containers outside P and trigger this container to generateBFC
. Then the two P do not belong to the sameBFC
.
Code:
<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>
The effect is as follows:
Summary
In fact, the above examples all reflectBFC
Article 5 of layout rules:
BFC
Is an isolated independent container on the page. The child elements in the container do not affect the external elements. And vice versa.
BecauseBFC
The internal and external elements will never affect each other. Therefore, whenBFC
When there is a floating outside, it should not be affectedBFC
Internal box layout,BFC
It will narrow down without overlap with the floating. Similarly, whenBFC
When there is a floating inside, in order not to affect the layout of external elements,BFC
The calculated height includes a floating height. This is also the case for avoiding the overlap of margin.
Front-end selection Digest: what is behind the magic of BFC