3

我想将“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 中仍然不行。

我错过了什么?

谢谢卡尔

4

1 回答 1

3

为了控制浮动和位置,您需要记住两件事:位置根据其父元素是绝对的并且通常需要尺寸,并且浮动对象默认没有尺寸。

由于您的测试代表一个简单的两列模型,请在此处查看这个不错的概述,它可能会澄清一点:使用 CSS 的等高列

因此,这里的技巧是给#text 一个浮点数和pos:rel,然后#right*Part 将知道它们的位置。

看看这里:

<!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>

<style>
body             { margin: 0; }
#headers         { background: Olive; width: 300px; height: 50px; }
#text            { background: Navy; position: relative; width: 300px; display: block; float:left; }
#leftPart        { background: Gray; width: 200px; float: left;  display: inline-block; }
#rightPart       { background: Red; }

#rightTopPart    { background: Lime;     position: absolute; right: 0; top: 0; }
#rightBottomPart { background: Yellow;  position: absolute; right: 0; bottom: 0; }
</style>                                 

</head>
<body>
    <div id="headers"></div>
    <div id="text">
        <div id="leftPart">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</div>
        <div id="rightPart">
                <div id="rightTopPart">top</div>
                <div id="rightBottomPart">bottom</div>
        </div>
    </div>
</body>
</html>

亲切的问候, mtness

于 2009-11-19T11:42:11.170 回答