BFC

作者: 马甲要掉了 | 来源:发表于2020-05-24 21:30 被阅读0次

    概念

    Formatting context(格式化上下文) 是页面中的一块渲染区域,并且有一套渲染规则,它决定了其子元素将如何定位,以及和其他元素的关系和相互作用。

    触发BFC

    只要元素满足下面任一条件即可触发 BFC 特性:

    body 根元素
    浮动元素:float 除 none 以外的值
    绝对定位元素:position (absolute、fixed)
    display 为 inline-block、table-cells、flex
    overflow 除了 visible 以外的值 (hidden、auto、scroll)

    BFC特性和应用

    1. 同一个 BFC 下外边距会发生折叠
    <head>
    <style>
    div{
        width: 100px;
        height: 100px;
        background: lightblue;
        margin: 100px;
    }
    </style>
    </head>
    <body>
      <div></div>
      <div></div>
    </body>
    
    折叠

    如果想要避免外边距的重叠,可以将其放在不同的 BFC 容器中。
    如:

    .container {
      overflow: hidden;
      }
      p {
          width: 100px;
          height: 100px;
          background: lightblue;
          margin: 100px;
      }
    
    <body>
        <div class="container">
            <p></p>
        </div>
        <div class="container">
            <p></p>
        </div>
    </body>
    
    未折叠
    1. BFC 可以包含浮动的元素(清除浮动)
      一般来说设置overflow:hidden来开启BFC清除浮动,代价最小。
    2. BFC 可以阻止元素被浮动元素覆盖
    <div style="height: 100px;width: 100px;float: left;background: lightblue">我是一个左浮动的元素</div>
    <div style="width: 200px; height: 200px;background: #eee">我是一个没有设置浮动, 
    也没有触发 BFC 元素, width: 200px; height:200px; background: #eee;</div>
    
    被覆盖

    第二个元素有部分被浮动元素所覆盖,(但是文本信息不会被浮动元素所覆盖) 如果想避免元素被覆盖,可触第二个元素的 BFC 特性,在第二个元素中加入 overflow: hidden,就会变成:


    未被覆盖

    另:
    这个方法可以用来实现两列自适应布局,效果不错,这时候左边的宽度固定,右边的内容自适应宽度(去掉上面右边内容的宽度)。

      <div style="height: 100px;width: 100px;float: left;background: lightblue">我是一个左浮动的元素</div>
        <div style=" height: 200px;overflow: hidden; background: #eee">我是一个没有设置浮动, 
        也没有触发 BFC 元素, width: 200px; height:200px; background: #eee;</div>
    
    两列自适应布局

    相关文章

      网友评论

        本文标题:BFC

        本文链接:https://www.haomeiwen.com/subject/lxhsahtx.html