前端 BFC ,一些小例子帮助理解

想都是问题,做才有答案

BFC 这个对我来说有点抽象的东西,看着MDN 上的解释 以及 小例子 似乎明白了一点,把小例子代码贴出来接着体会。

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>BFC 测试</title>
    <!-- 为box 盒子设置一些属性 创建了BFC ,就能让你内部的元素都包含在其中,这样就不会出现子盒子溢出在父盒子的外面的情况了 -->
    <style>
        section {
            height: 150px;
        }

        .box {
            background-color: rgb(224, 206, 247);
            border: 5px solid rebeccapurple;
        }

        .box[style] {
            background-color: aliceblue;
            border: 5px solid steelblue;
        }

        .float {
            float: left;
            width: 200px;
            height: 100px;
            background-color: rgba(255, 255, 255, .5);
            border: 1px solid black;
            padding: 10px;
        }
    </style>
</head>

<body>
    <section>
        <div class="box">
            <div class="float">I am a floated box!</div>
            <p>I am content inside the container.</p>
        </div>
    </section>
    <section>
        <div class="box" style="overflow:auto">
            <div class="float">I am a floated box!</div>
            <p>I am content inside the <code>overflow:auto</code> container.</p>
        </div>
    </section>
    <section>
        <div class="box" style="display:flow-root">
            <div class="float">I am a floated box!</div>
            <p>I am content inside the <code>display:flow-root</code> container.</p>
        </div>
    </section>
</body>

 

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>BFCTest 排出外部浮子</title>
    <style>
        section {
            height: 150px;
        }

        .box {
            background-color: rgb(224, 206, 247);
            border: 5px solid rebeccapurple;
        }

        .box[style] {
            background-color: aliceblue;
            border: 5px solid steelblue;
        }

        .float {
            float: left;
            overflow: hidden;
            /* required by resize:both */
            resize: both;
            margin-right: 25px;
            width: 200px;
            height: 100px;
            background-color: rgba(255, 255, 255, .75);
            border: 1px solid black;
            padding: 10px;
        }
    </style>
</head>

<body>
    <section>
        <div class="float">Try to resize this outer float</div>
        <div class="box">
            <p>Normal</p>
        </div>
    </section>
    <section>
        <div class="float">Try to resize this outer float</div>
        <div class="box" style="display:flow-root">
            <p><code>display:flow-root</code>
                <p>
        </div>
    </section>
</body>

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>保证金崩溃</title>
    <!-- 创建一个新的BFC来避免两个相邻div之间的边距崩溃: -->
    <style>
        .blue,
        .red-inner {
            height: 50px;
            margin: 10px 0;
        }

        .blue {
            background: blue;
        }

        .red-outer {
            overflow: hidden;
            background: red;
        }
    </style>
</head>

<body>
    <div class="blue"></div>
    <div class="red-outer">
        <div class="red-inner">red inner</div>
    </div>
</body>

</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值