我有一个div
和另一个div
里面。第二个div
有width
和。这个有绝对位置,所以它的容器没有显示。height
background-color: green
<div id="root">
<div id="r1">
<div id="r2">
</div>
</div>
Mas
</div>
CSS 文件
#root{
width:300px;
background-color: red;
}
#r1{
position: relative;
width: 100px;
background: yellow;
}
#r2{
position: absolute;
display: inline-block;
width: 50px;
height: 50px;
left: 0;
background-color: green;
}
我想知道是否有可能显示它的容器并用绝对位置包装 div。
我想看到这样的东西,但不使用相对位置,也不给它的容器增加高度。
谢谢!