一、什么是BFC
BFC(Block Formatting Context)格式化上下文,是Web页面中盒模型布局的CSS渲染模式,指一个独立的渲染区域或者说是一个隔离的独立容器。
二、怎么形成BFC的条件
1、浮动元素,float 除 none 以外的值;
2、定位元素,position(absolute,fixed);
3、display 为以下其中之一的值 inline-block,table-cell,table-caption;
4、overflow 除了 visible 以外的值(hidden,auto,scroll);
三、BFC的特性
1、内部的Box会在垂直方向上一个接一个的放置;
2、垂直方向上的距离由margin决定;
3、bfc的区域不会与float的元素区域重叠;
4、计算bfc的高度时,浮动元素也参与计算;
5、bfc就是页面上的一个独立容器,容器里面的子元素不会影响外面元素。
四、利用BFC进行两列自适应布局
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
div {
height: 200px;
}
.left {
width: 200px;
margin-right: 20px;
float: left;
background: gray;
}
.right {
/*设为bfc,不会与浮动的元素重叠(bfc特性第3点)*/
overflow: auto;
background: green;
height: 200px;
}
</style>
</head>
<body>
<div class="box">
<div class="left">
左边
</div>
<div class="right">
右边
</div>
</div>
</body>
</html>
- 利用bfc解决margin-top 塌陷问题
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
div {
height: 200px;
background: gray;
/*bfc解决塌陷问题*/
overflow: hidden;
}
p {
height: 100px;
background: green;
margin-top: 50px;
}
</style>
</head>
<body>
<div>
<p>
</p>
</div>
</body>
</html>
网友评论