我在父 div 中有两个 div。我想放置 div 以使 div 1 的位置是bottom:0
父 div 的绝对位置,并且 div 2 始终位于 div 1 的顶部。
我正在使用绝对位置来放置 div。但是问题是 div 1 具有可变高度。在这种情况下,如何将 div 2 放在 div 1 的顶部?请看附图:
我正在尝试这个,但它不起作用:
HTML:
<div class="box">
<div class="wrap">
<div class="box2">box 2</div>
<div class="box1">box1</div>
</div>
</div>
CSS:
.box{
width: 200px;
height: 200px;
background: green;
position: relative;
}
.wrap{
position: absolute;
bottom: 0;
border: 1px solid blue;
}
.box1{
background: yellow;
height: 50px;
position: relative;
}
.box2{
background: red;
position: absolute;
top: 0;
}
演示:http: //jsfiddle.net/P46ht/