看看这个:http://jsfiddle.net/unimous/88uqJ/
<div id="d1">
<div id="d2">
</div>
</div>
#d1 {
height: 3000px;
background-color: red;
}
#d2 {
background-color: green;
height: 40px;
width: 40px;
position: absolute;
bottom: 0px;
}
我想让div d2出现在d1的底部,而不是屏幕的底部。
为什么position: absolute
在这里不起作用?