search
HomeWeb Front-endCSS TutorialCSS understands block-level formatting context BFC

1.BFC definition

BFC (Block formatting context) is literally translated as "block-level formatting context". It is an independent rendering area, with only Block-level boxes (block-level elements) participating. It stipulates how the internal Block-level Box is laid out and has nothing to do with the outside of this area.

In layman’s terms Said: The element that created the BFC is an independent box. The sub-elements inside will not affect the layout of the outside elements (no matter how the inside is laid out, it will not affect the outside). The BFC still belongs to the ordinary flow in the document.

##2. Generation of BFC:

If you know how to trigger BFC
You can trigger BFC and transform into BFC if you meet one of the following conditions


    Root element
  1. The float attribute is not none
  2. position is not static and relative
  3. overflow is not visible
  4. display is inline-block, table-cell, table-caption, flex, inline-flex

You will find that BFC is everywhere, you just don’t know it when you use it

3. BFC layout rules:

What are the characteristics after transforming into BFC, as follows:

    The internal Boxes will be placed one after another in the vertical direction.
  1. The vertical distance of the Box is determined by margin. The margins of two adjacent boxes belonging to the same BFC will overlap
  2. The left side of the margin box of each element is in contact with the left side of the containing block border box (for left to Right formatting, otherwise the opposite). This is true even if there is float.
  3. The BFC area will not overlap with the float box.
  4. BFC is an isolated independent container on the page. The sub-elements inside the container will not affect the elements outside. And vice versa.
  5. When calculating the height of BFC, floating elements also participate in the calculation
4.BFC function:

Use it come boby

1. Prevent margin overlap

bfc causes the margins of child elements in the same bfc to overlap (the distance in the vertical direction of the Box Determined by margin. The margins of two adjacent boxes belonging to the same BFC will overlap)

Problem: As you can see from the picture, there is only a 20px margin between String1 and String2, which should logically be 40px. , but this is in bfc causing their margins to overlap

Code:

<style>
.container1{
        /* 通过overflow:hidden可以创建bfc */
        overflow: hidden;
        background-color: red;
        width: 300px;
    }
    .sub1{
        margin: 20px 0px;
        background-color: #dea;
    }
</style>
<p class="container1">
        <p class="sub1">String1</p>
        <p class="sub1">String2</p>
</p>

Solution: We can wrap a container around p and trigger the container to generate a BFC. Then the two ps do not belong to the same BFC, and margin overlap will not occur.

Code:

<style>
    .newbfc{
            overflow: hidden;
    }
</style>
<p class="container1">
        <p class="sub1">String1</p>
        <p class="newbfc"><p class="sub1">String2</p></p>
</p>

2. Clear float:

Problem: When all the child elements of an element are floated, there will be a phenomenon of height collapse, that is, the height of the parent container will not be stretched

Code:

<style>
    .pre2{
        width: 200px;
        border: 2px solid red;
    }
    .float1,.float2{
        width: 100px;
        height: 100px;
        float: left;
    }
    .float1{
        background-color: #dee;
    }
    .float2{
        background-color: #dcc;
    }
</style>
<p class="pre2">
        <p class="float1"></p>
        <p class="float2"></p>
</p>

Solution:

bfc's rules: When calculating the height of BFC, floating elements also participate in the calculation, so as long as the parent container is set to bfc, the child elements can be included. :

This container will contain floated child elements, and its height will expand to contain its child elements, which, in this BFC, will flow back into the page's regular document flow.


.pre2{
        width: 200px;
        border: 2px solid red;
        /* 设置overflow*/
        overflow:hidden;
    }

3. Solve the layout: prevent text wrapping

Code:

<style>
.container2{
        overflow: hidden;
        width: 200px;
    }
    .box{
        float: left;
        width: 100px;
        height: 30px;
        background-color: #daa;
    }
</style>
<p class="container2">
        <p class="box"></p>
        <p style="background-color: #eea">sdfadsfdff fffffffds fsfffff sfd  fsdsdfsdf fffffff</p>
</p>

The p element has not moved, but it appears below the floating element. The line boxes (referring to text lines) of the p element are shifted. Here the horizontal shrinkage of line boxes provides space for floating elements.

BFC rules: The left side of the margin box of each element touches the left side of the containing block border box (for left-to-right formatting, otherwise the opposite). This is true even if there is float.

To solve this problem, just add overflow:hidden to the p element to make it a new bfc

Related recommendations:


Detailed explanation of CSS BFC principle and its application

Analysis of usage examples of BFC and IFC in CSS

In CSS Hidden BFC

The above is the detailed content of CSS understands block-level formatting context BFC. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is CSS Grid?What is CSS Grid?Apr 30, 2025 pm 03:21 PM

CSS Grid is a powerful tool for creating complex, responsive web layouts. It simplifies design, improves accessibility, and offers more control than older methods.

What is CSS flexbox?What is CSS flexbox?Apr 30, 2025 pm 03:20 PM

Article discusses CSS Flexbox, a layout method for efficient alignment and distribution of space in responsive designs. It explains Flexbox usage, compares it with CSS Grid, and details browser support.

How can we make our website responsive using CSS?How can we make our website responsive using CSS?Apr 30, 2025 pm 03:19 PM

The article discusses techniques for creating responsive websites using CSS, including viewport meta tags, flexible grids, fluid media, media queries, and relative units. It also covers using CSS Grid and Flexbox together and recommends CSS framework

What does the CSS box-sizing property do?What does the CSS box-sizing property do?Apr 30, 2025 pm 03:18 PM

The article discusses the CSS box-sizing property, which controls how element dimensions are calculated. It explains values like content-box, border-box, and padding-box, and their impact on layout design and form alignment.

How can we animate using CSS?How can we animate using CSS?Apr 30, 2025 pm 03:17 PM

Article discusses creating animations using CSS, key properties, and combining with JavaScript. Main issue is browser compatibility.

Can we add 3D transformations to our project using CSS?Can we add 3D transformations to our project using CSS?Apr 30, 2025 pm 03:16 PM

Article discusses using CSS for 3D transformations, key properties, browser compatibility, and performance considerations for web projects.(Character count: 159)

How can we add gradients in CSS?How can we add gradients in CSS?Apr 30, 2025 pm 03:15 PM

The article discusses using CSS gradients (linear, radial, repeating) to enhance website visuals, adding depth, focus, and modern aesthetics.

What are pseudo-elements in CSS?What are pseudo-elements in CSS?Apr 30, 2025 pm 03:14 PM

Article discusses pseudo-elements in CSS, their use in enhancing HTML styling, and differences from pseudo-classes. Provides practical examples.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.