我必须将div添加到另一个div中,位置绝对(不能相对)到底部,代码看起来像
<div style="position:aboslute; top:100px; left:200px; height:500px">
<div style="height:20px">Example 1</div>
<div style="height:2px">Example 2</div>
</div>
解决方案?
答案 0 :(得分:1)
将relative
位置提供给父级,将absolute
位置提供给子级。
<div style="position:aboslute; top:100px; left:200px; height:500px">
<div style="height:20px; position: absolute; bottom: 0;">Example 1</div>
<div style="height:2px; position: absolute; bottom: 0;">Example 2</div>
</div>
在这里查看小提琴:http://jsfiddle.net/vLn32/