BFC理解

1.什么是BFC?

  • BFC(Block Formatting Context),即块级格式化上下⽂,它是⻚⾯中的⼀块渲染区域,并且有⼀套属于⾃⼰的渲染规则:
  • - 内部的盒⼦会在垂直⽅向上⼀个接⼀个的放置
  • - 对于同⼀个BFC的俩个相邻的盒⼦的margin会发⽣重叠,与⽅向⽆关。
  • - 每个元素的左外边距与包含块的左边界相接触(从左到右),即使浮动元素也是如此
  • - BFC的区域不会与float的元素区域重叠
  • - 计算BFC的⾼度时,浮动⼦元素也参与计算
  • - BFC就是⻚⾯上的⼀个隔离的独⽴容器,容器⾥⾯的⼦元素不会影响到外⾯的元素,反之亦然

BFC⽬的是形成⼀个相对于外界完全独⽴的空间,让内部的⼦元素不会影响到外部的元素

2.触发BFC的条件包含不限于:

  • 浮动元素:float值为left、right
  • overflow值不为 visible,为 auto、scroll、hidden
  • display的值为inline-block、inltable-cell、table-caption、table、inline-table、flex、inline-flex、grid、inline-grid
  • position的值为absolute或fixed

3.利⽤BFC的特性,我们将BFC应⽤在以下场景:

  • 防⽌margin重叠(塌陷)

例子:

<!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>
        .div_top{
            width: 100px;
            height: 100px;
            background-color: red;
            margin-bottom: 30px;
        }
        .div_bottom{
            width: 100px;
            height: 100px;
            background-color: gray;
            margin-top: 50px;
        }
    </style>
</head>
<body>
    <div class="div_top">我是盒子一</div>
    <div class="div_bottom">我是盒子二</div>
</body>
</html>

margin重叠俩盒子间距为50px 取俩个盒子间距的最大值

 但是我们要的是俩个盒子的margin属性都起效果,就可以利用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>
        .div_top{
            width: 100px;
            height: 100px;
            background-color: red;
            margin-bottom: 30px;
        }
        .div_bottom{
            width: 100px;
            height: 100px;
            background-color: gray;
            margin-top: 50px;
        }
        .div_mid{
            overflow: hidden;
        }
    </style>
</head>
<body>
    <div class="div_top">我是盒子一</div>
    <div class="div_mid"></div>
    <div class="div_bottom">我是盒子二</div>
</body>
</html>

在俩个盒子中间在写个盒子触发BFC防止margin重叠

 这样俩个盒子间距就是80px,俩个盒子的margin属性都起作用了

  • 清除内部浮动

为什么清除内部浮动解决父级盒子高度为0问题影响页面布局

例如:

<!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>
        .content{
            border: 5px solid yellowgreen;
        }
        .div_top {
            width: 50px;
            height: 50px;
            background-color: red;
            float: left;
        }

        .div_mid {
            width: 100px;
            height: 100px;
            background-color: gray;
            float: left;

        }

        .div_bottom {
            width: 150px;
            height: 150px;
            background-color: hotpink;
            float: left;

        }
    </style>
</head>

<body>
    <div class="content">
        <div class="div_top"></div>
        <div class="div_mid"></div>
        <div class="div_bottom"></div>
    </div>
</body>

</html>

 

 当我们把盒子都浮动起来父级盒子高度就会为0

利用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>
        .content{
            border: 5px solid yellowgreen;
            overflow: hidden;
        }
        .div_top {
            width: 50px;
            height: 50px;
            background-color: red;
            float: left;
        }

        .div_mid {
            width: 100px;
            height: 100px;
            background-color: gray;
            float: left;

        }

        .div_bottom {
            width: 150px;
            height: 150px;
            background-color: hotpink;
            float: left;

        }
    </style>
</head>

<body>
    <div class="content">
        <div class="div_top"></div>
        <div class="div_mid"></div>
        <div class="div_bottom"></div>
    </div>
</body>

</html>

 

父级盒子还会保留高度

  •  自适应两栏布局
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<style>
    *{
        margin: 0;
        padding: 0;
    }
    body {
        width: 100%;
        position: relative;
    }
 
    .left {
        width: 100px;
        height: 150px;
        float: left;
        background: red;
        text-align: center;
        line-height: 150px;
        font-size: 20px;
    }
 
    .right {
        height: 300px;
        background: green;
        text-align: center;
        line-height: 300px;
        font-size: 40px;
    }
</style>
<body>
    <div class="left">LEFT</div>
    <div class="right">RIGHT</div>
</body>
</html>

 

 把right盒子触发BFC让left盒子不如之重叠

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<style>
    *{
        margin: 0;
        padding: 0;
    }
    body {
        width: 100%;
        position: relative;
    }
 
    .left {
        width: 100px;
        height: 150px;
        float: left;
        background: red;
        text-align: center;
        line-height: 150px;
        font-size: 20px;
    }
 
    .right {
        height: 300px;
        background: green;
        text-align: center;
        line-height: 300px;
        overflow: hidden;
        font-size: 40px;
    }
</style>
<body>
    <div class="left">LEFT</div>
    <div class="right">RIGHT</div>
</body>
</html>

 

总结 

BFC是一块独立的布局环境,保护其中内部元素不受外部影响,也不影响外部。本身BFC是一种css的布局方式,只是我们可以利用它来解决外边距折叠的问题,BFC并不是专门用来解决这个问题而创的;

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值