- BFC 是前端面试中的一个超级热点,今日头条某部门曾经就问过:
- 请解释一下 回答这个问题并不困难,但是可以继续追问:
- 请解释一下 回答这个问题并不困难,但是可以继续追问:
2024年8月13日大约 5 分钟...
<style>
.wp {
border: 1px solid red;
width: 300px;
height: 300px;
}
.box {
background: green;
}
.box.fixed-size {
width: 100px;
height: 100px;
}
</style>
<body>
<div class="wp">
<div class="box fixed-size">text</div>
</div>
</body>
相关信息