前置知识
flow–root
该属性会生成一个块级元素盒子,这个盒子将创建一个新的块级格式化上下文,并定义为格式化根的位置。没错,一个词概括就是——BFC。
既然是用于创建BFC的,display:flow–root自然拥有去除父子上margin合并和清除浮动的作用,且不会产生任何‘副作用’。
布局方式
BFC
BFC(Block Formatting Context)中文译为”块级格式化上下文“,简单来说,BFC就是给盒子加一个属性,让盒子变成一块独立渲染的区域,可以理解为一个箱子,箱子里面物品的摆放是不受外界的影响的,其中外边距(margin)也是BFC区域的一部分。
如何成为BFC
常用方式:display:flow–root或overflow: hidden
BFC规则
注意
-
display:inline–block与overflow: hidden都可以开启BFC,但原理不同,inline–block会形成一行外框把元素包裹起来,所以能形成一个独立区域,解决外边距塌陷问题。但overflow: hidden主要作用于子元素,所以给外边距塌陷的元素加这个属性,不会解决外边距塌陷问题。
常见CSS问题
1. 相邻元素外边距合并问题
<div class='box1'>
box1
</div>
<div class='box2'>
box2
</div>
<style>
.box2{
width: 100px;
height: 100px;
background: deepskyblue;
margin-top: 50px;
}
.box1{
width: 100px;
height: 100px;
background: red;
margin-bottom: 100px;
}
</style>
两个相邻元素都有外边局时,取大者。这是css的布局规则。如何解决这个问题呢?
给其中一个元素包裹一层,并开启BFC
<div class='container'>
<div class='box1'>
box1
</div>
</div>
<div class='box2'>
box2
</div>
<style>
.container{
overflow: hidden;
}
.box2{
width: 100px;
height: 100px;
background: deepskyblue;
margin-top: 50px;
}
.box1{
width: 100px;
height: 100px;
background: red;
margin-bottom: 100px;
}
</style>
给其中一个元素添加display: inline-block;,添加这个属性的原理是inline-block会创建一个行框来包裹元素,所以也能做到隔离的效果。
<div class='box1'>
box1
</div>
<div class='box2'>
box2
</div>
<style>
.box2{
width: 100px;
height: 100px;
background: deepskyblue;
margin-top: 50px;
display: inline-block;
}
.box1{
width: 100px;
height: 100px;
background: red;
margin-bottom: 100px;
}
</style>
2. 父子元素外边距塌陷问题
<div class='container'>
<div class='box1'>
box1
</div>
</div>
<style>
.container{
width: 300px;
height: 300px;
background: deepskyblue;
}
.box1{
width: 100px;
height: 100px;
background: red;
margin-top: 100px;
}
</style>
父元素会被子元素一起带下来。
为父元素开启BFC,让父元素形成独立渲染区域。
.container{
width: 300px;
height: 300px;
background: deepskyblue;
overflow: hidden;
}
.box1{
width: 100px;
height: 100px;
background: red;
margin-top: 100px;
}
3. 父元素高度塌陷问题
子元素浮动后,脱离普通流,导致父元素高度为0
<div class='container'>
<div class='box1'>
box1
</div>
</div>
<style>
.container{
background: deepskyblue;
border: 2px solid greenyellow;
}
.box1{
width: 100px;
height: 100px;
background: red;
float: left;
}
</style>
为父元素开启BFC
.container{
background: deepskyblue;
border: 2px solid greenyellow;
overflow: hidden;
}
.box1{
width: 100px;
height: 100px;
background: red;
float: left;
}
4. 浮动重叠问题
一个元素开启浮动后,脱离普通流,就会覆盖普通流元素。
<div class='box1'>
box2
</div>
<div class='box2'>
box1
</div>
<style>
.box1{
background: deepskyblue;
width: 100px;
height: 100px;
float: left;
}
.box2{
width: 300px;
height: 300px;
background: red;
}
</style>
解决方案:
为box2开启bfc
.box1{
background: deepskyblue;
width: 100px;
height: 100px;
float: left;
}
.box2{
width: 300px;
height: 300px;
background: red;
display: flow-root;
}
原文地址:https://blog.csdn.net/SmileLife123/article/details/129140263
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_34692.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!