HTML中的Div标签相互重叠

时间:2012-09-27 20:40:20

标签: html css web

我正在尝试创建我的个人HTML网站(我在网站开发方面非常新)。但我遇到的问题是两个最近的div标签相互重叠,不明白为什么。 这是代码,所以你可以自己看看:

<!DOCTYPE html>
<html>
<head>
    <title>My site</title>
    <link rel="icon" type="image/png" href="favicon.png"  />
    <link rel="stylesheet" type="text/css" href="stylesheet.css" /> 
</head>
<body style="background-color: #759CE0;">
    <div id="wrapper">
        <div id="header">
            <div style="background-color: #708EE0; width: 100%; height: 30px; display: block;" />
            <div>
                <h1 id="segoeuilight">Welcome to my blog</h1>
                <h3 id="smalltip">News and thoughts</h3>
            </div>
        </div>
        <div id="container">
            <div id="left" />
            <div id="right" />
            <div id="center" />     
        </div>
        <div id="footer" /> 
    </div>
</body>
</html>

样式表:

@font-face
{
    font-family: 'Segoe UI Light';
    src: url('fonts/segoeuil.ttf');
}
@font-face
{
    font-family: 'Segoe UI';
    src: url('fonts/segoeui.ttf');
}
h1#segoeuilight
{
    font-family: 'Segoe UI Light';
    font-weight: normal;
    color: #FFFFFF;
    padding-left: 10px;
    height: 20px;
}
h3#smalltip
{
    font-family: 'Segoe UI';
    font-weight: normal;
    color: #FFFFFF;
    padding-left: 10px;
}
div#header 
{
    height: 20%;
}
div#container 
{
    min-width:800px;
}
div#center 
{
    margin:0px 200px 0px 200px;
}
div#left 
{
    float:left; 
    width:200px;
}
div#right 
{
    float:right; 
    width:200px;
}
div#footer 
{
    height:100px;
}
div#wrapper
{
    width: 800px; /* set to desired width in px or percent */
    text-align: left; /* optionally you could use "justified" */
    border: 0px; /* Changing this value will add lines around the centered area */
    padding: 0;  
    margin: 0 auto;
    background-color: #8D0087;
}

以下是我得到的结果: http://www.freeimagehosting.net/h11uc

“header”div中的div彼此重叠。但我想首先创建矩形,然后打印一些文本。我的代码出了什么问题? 顺便说一句,我使用Chrome浏览器,但IE9显示相同的结果。

抱歉我的英语不好。

1 个答案:

答案 0 :(得分:5)

出于某种原因,您无法写出<div>之类的空<div />标记。请改用<div></div>。 看到这个小提琴:

http://jsfiddle.net/MzUtA/