我想将“rightBottomPart”定位到“rightPart”的底部,并且我希望“rightPart”与“leftPart”一样高。问题是我不知道“leftPart”中内容的高度,因此我可以'不设置“文本”的高度。(“文本”中的高度会解决它)
现在它看起来像这样:
我希望它看起来像这样:
我的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
</head>
<body style="margin: 0px 0px 0px 0px;">
<div id="headers" style="background-color: Olive; width: 300px; height: 50px;"></div>
<div id="text" style="background-color: Navy; position: relative; width: 300px;">
<div id="leftPart" style="background-color: Gray; width: 200px; float: left;">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</div>
<div id="rightPart" style="background-color: Red; float: right;">
<div id="rightTopPart" style="background-color: Lime; position: absolute; right: 0px; top: 0px;">top</div>
<div id="rightBottomPart" style="background-color: Yellow; position: absolute; right: 0px; bottom: 0px;">bottom</div>
</div>
</div>
</body>
</html>
它在 IE7 中看起来不错,但在我测试过的其他浏览器中却没有。如果我删除 DOCTYPE 标记,它在 IE8 中看起来也不错,但在 Google Chrome 中仍然不行。
我错过了什么?
谢谢卡尔