当前位置: 首页 > 工具软件 > sander > 使用案例 >

BFC_Sander_2020的博客

陶高峻
2023-12-01

BFC

BFC(Block formatting context)直译为“块级格式化上下文”。它是一个独立的渲染区域,只有Block-level box(块)参与, 它规定了内部的Block-level Box如何布局,并且与这个区域外部毫不相干。

BFC的布局规则

一、内部的Box会在垂直方向,一个接一个地放置。
二、Box垂直方向的距离由margin决定。属于同一个BFC的两个相邻Box的margin会发生重叠(按照最大margin值设置)
三、每个元素的margin box的左边, 与包含块border box的左边相接触
四、BFC的区域不会与float box重叠。
五、BFC就是页面上的一个隔离的独立容器,容器里面的子元素不会影响到外面的元素。
六、计算BFC的高度时,浮动元素也参与计算

哪些元素或属性能触发BFC

根元素(html)
float属性不为none
position为absolute或fixed
display为inline-block, table-cell, table-caption, flex, inline-flex
overflow不为visible

BFC的应用

1、自适应两栏布局
2、清除内部浮动
3、防止margin上下重叠

扩展:几种经典的布局方式

1.BFC完成自适应两栏布局

<body>
    <div class="left_box"></div>
    <div class="right_box">1</div>
</body>

<style>
        *{
            margin:0;
            padding:0;
        }
        body,html{
            height:100%;
        }
        
        /* 方式一*/
        /* .left_box{
            width:150px;
            height:80%;
            background:purple;
            float:left;
        }
        .right_box{
            height:100%;
            background:orange;
            overflow:hidden;
        } */
        
        /* 方式二*/
		.left_box{
		    width:150px;
		    height:80%;
		    background:purple;
		}
		.right_box{
			height: 100%;
			width: calc(100% - 150px);
			background:orange;
		}
    </style>

2.BFC完成自适应三栏布局

<body>
    <div class="box_l"></div>
    <div class="box_r"></div>
    <div class="box_c"></div>
</body>

<style>
        *{
            margin:0;
            padding:0;
        }
        html,body{
            height:100%;
        }
        .box_l{
            height:80%;
            width:150px;
            background:red;
            float:left;
        }
        .box_r{
            height:80%;
            width:150px;
            background:blue;
            float:right;
        }
        .box_c{
            height:100%;
            background:orange;
            overflow:hidden;
        }
    </style>

3.双飞翼布局

<body>
    <div class="left_box"></div>
    <div class="right_box"></div>
    <div class="center_box">
        <div class="centent"></div>
    </div>
</body>

  <style>
        *{
            margin:0;
            padding:0;
        }
        body,html{
            height:100%;
        }
        .left_box{
            width:150px;
            height:80%;
            background:purple;
            float:left;
        }
        .right_box{
            width:150px;
            height:80%;
            background:orange; 
            float:right;
        }
        .center_box{
            height:100%;
            background:pink;
            padding:0 150px;
        }
        .centent{
            height:100%;
            background:grey;
        }
    </style>
 类似资料: