我有这个HTML
<div style="position: relative;">
<div style="top:0">
</div>
<div style='position: absolute; bottom:0; margin-bottom:0px;'>
</div>
</div>
这段代码对IE来说非常好,但在其他浏览器上,两个内部div重叠,我不能给外部div指定任何高度。
答案 0 :(得分:0)
您不需要绝对定位:
<div style="position: relative;">
<div style="background:black;">
test
</div>
<div style='background:red;'>
test
</div>
</div>
见工作fiddle。