BFC的问题

BFC有一条规则

BFC的区域不会与float box重叠

position为absolute和fixed会生成一个BFC,但如下代码

<style>
.aside {
        width: 100px;
        height: 150px;
        float: left;
        background: #f66;
    }
 
    .main {
        height: 200px;
        background: #fcc;
        position: absolute;
        width:200px;
    }
</style>
<body>
    <div class="aside"></div>
    <div class="main"></div>
</body>

.aside和.main依然会重叠,请问如何理解?

阅读 3.1k
3 个回答

你在.aside的float: left;写成float: box; 就不会重叠。

或者:

<style>
    body {
        width: 300px;
        position: relative;
    }
 
    .aside {
        width: 100px;
        height: 150px;
        float: left;
        background: #f66;
    }
 
    .main {
        height: 200px;
        background: #fcc;
    }
</style>

<body>
    <div class="aside"></div>
    <div class="main"></div>
</body>
新手上路,请多包涵

应该是float的层级比较低,position的元素会覆盖float元素,但是对bfc这东西,理解不了

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题