保证金 - 底部没有出现在正确的位置

时间:2011-12-07 22:31:36

标签: css html css-float margin

我有一个标题和内容div的简单示例。我希望在标题div之后有一个10像素的边距,但它在内容div之后显示。标头div有两个浮动div。以下是代码:

<style type="text/css"
div {border: 1px solid red;}
#container{width:680px;}
#header{margin-bottom:10px; background-color:yellow;}
#title{float:left;}
#link{float:right;}
#header_clear{clear:both;}
</style>

<div id="container">
    <div id="header">
        <div id="title">Header Title</div>
        <div id="link" style="float:right;">
            <a href="http://www.apple.com" target="_blank">Link</a>
        </div>
        <div id="header_clear"/>
    </div>

    <div id="content" style="background-color:brown;">
        This is the body.
    </div>
</div>

这就是它的样子。您可以看到10px边距低于内容div而不是标题div。

screen capture showing the issue

margin-bottom not working

1 个答案:

答案 0 :(得分:3)

<style type="text/css">
div {border: 1px solid red;}
#container{width:680px;}
#header{margin-bottom:10px; background-color:yellow;}
#title{float:left;}
#link{float:right;}
#header_clear{clear:both;}
</style>

<div id="container">
 <div id="header">
    <div id="title">Header Title</div>
    <div id="link">
        <a href="http://www.apple.com" target="_blank">Link</a>
    </div>
    <div id="header_clear"></div>
 </div>

 <div id="content" style="background-color:brown;">
    This is the body.
 </div>
</div>

似乎它不喜欢自我关闭div