在重合元素外包裹一层容器,并触发该容器生成一个BFC。
例子:


.aside {
margin-bottom: l00px;
width: l00px;
height: 150px;
background: #f66;
}
.main {
margin-top: l00px;
height: 200px;
background: #fee;
}
.text {
/*盒子main的外面包一个div,通过改变此div的属性使两个盒子分属于两个不同的BFC,以此来 阻止margin重叠*/
overflow: hidden; //此时已经触发了 BFC属性。
}

Was this helpful?

0 / 0

发表回复 0

Your email address will not be published.