1、什么是BFC
在解释 BFC 是什么之前,需要先介绍 Box、Formatting Context的概念。
** (1)Box: CSS布局的基本单位**
Box 是 CSS 布局的对象和基本单位, 直观点来说,就是一个页面是由很多个 Box 组成的。元素的类型和 display 属性,决定了这个 Box 的类型。 不同类型的 Box, 会参与不同的 Formatting Context(一个决定如何渲染文档的容器),因此Box内的元素会以不同的方式渲染。
(2)Formatting context
Formatting context 是 W3C CSS2.1 规范中的一个概念。它是页面中的一块渲染区域,并且有一套渲染规则,它决定了其子元素将如何定位,以及和其他元素的关系和相互作用。最常见的 Formatting context 有 Block fomatting context (简称BFC)和 Inline formatting context (简称IFC)。
CSS2.1 中只有 BFC 和 IFC, CSS3 中还增加了 GFC 和 FFC。
(3)BFC定义
BFC(Block formatting context)直译为"块级格式化上下文"。它是一个独立的渲染区域,只有Block-level box参与, 它规定了内部的Block-level Box如何布局,并且与这个区域外部毫不相干。
(4)BFC布局规则
一、内部的Box会在垂直方向,一个接一个地放置。
二、Box垂直方向的距离由margin决定。属于同一个BFC的两个相邻Box的margin会发生重叠
三、每个元素的margin box的左边, 与包含块border box的左边相接触(对于从左往右的格式化,否则相反)。即使存在浮动也是如此。
四、BFC的区域不会与float box重叠。
五、BFC就是页面上的一个隔离的独立容器,容器里面的子元素不会影响到外面的元素。反之也如此。
六、计算BFC的高度时,浮动元素也参与计算。
2、哪些元素会生成BFC
(1)根元素
(2)float属性不为none
(3)position为absolute或fixed
(4)display为inline-block, table-cell, table-caption, flex, inline-flex
(5)overflow不为visible
3、BFC的作用及原理
(1)自适应两列布局
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BCF-自适应两列布局</title>
<style type="text/css">
.left{
width: 100px;
height: 50px;
float: left;
background: blue;
}
.center{
width: 200px;
background: red;
}
</style>
</head>
<body>
<div class="left">left</div>
<div class="center">
测试文本环绕效果1,测试文本环绕效果2,测试文本环绕效果3
</div>
</body>
</html>
运行效果:
给center 添加overflow: hidden;触发BFC
image.png
(2) 清除内部浮动
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BCF-清除内部浮动</title>
<style type="text/css">
.center{
margin-left: 10px;
width: 99%;
height: 200px;
background: red;
float: left;
}
.footer{
width: 100%;
background: blue;
}
</style>
</head>
<body>
<div class="container">
<div class="center">center</div>
</div>
<div class="footer">footer</div>
</body>
</html>
运行效果:
为达到清除内部浮动的效果 container overflow:hidden触发BFC清除内部浮动。
.container{
overflow:hidden;
}
运行效果:
3 防止垂直 margin 重叠
源代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BCF-防止margin合并</title>
<style type="text/css">
*{
margin:0px;
padding: 0px;
}
.div1{
width: 100px;
height: 100px;
background: red;
margin: 100px;
}
.div2{
width: 100px;
height: 100px;
background: blue;
margin: 100px;
}
.div2-warp{
overflow: hidden;
}
</style>
</head>
<body>
<div class="div1"></div>
<div class="div2-warp">
<div class="div2"></div>
</div>
</body>
</html>
运行结果:
image.png
网友评论