首页 > 文章列表 > css中BFC是什么意思

css中BFC是什么意思

css BFC
422 2022-08-06

说明

1、译为块级格式化上下文,是Web页面可视化CSS渲染的一部分,是布局过程中生成块级盒子的区域。

也是浮动元素与其他元素的交互限制区域。

2、只有Block-levelbox参与,它规定了Block-levelBox的内部布局,与该区域的外部无关。

实例

     div{
        width: 100px;
        height: 100px;
        background: lightblue;
        margin: 100px;
      }
        <body>
    <div class="">
 
    </div>
    <div class="">
 
    </div>
  </body>

本文教程操作环境:windows7系统、css3版,DELL G3电脑。