CSS背景和身高100%

时间:2011-07-03 13:34:29

标签: html css background

我无法让我的背景图片覆盖整个内容。

我查看了其他问题,似乎我需要在每个容器上设置100%的最小宽度......但我尝试了每种组合,但它仍然无效。

这是我的HTML:

<body>
<div id="container">

    <div id="header">
                 header content...             
    </div>
    <div id="content">

        <div id="myAccountArea" class="section">
            accountArea content...
        </div>

        <div id="myPostsArea" class="section">
        postsArea content...
        </div>

    </div>
    <div id="footer">
    </div>
</div>

CSS:

html, body {
    margin: 0;
    padding: 0;
    height:100%
}

body {
    background: red;
}

#container {
    padding-top: 80px;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    min-width: 1000px;
}

#content {
    min-width:1000px;
}

我遇到的问题是postsArea内容通常比浏览器的窗口更多,但背景却没有。

由于


修改

好的,所以我把它缩小到了reset.css文件......关于在该文件中发现问题的任何提示?

感谢。

1 个答案:

答案 0 :(得分:5)

好的,所以在查看重置样式表后,我发现了这个:

html {
     background:#FFF
}

注释掉这一行,一切似乎都很好:)

非常感谢所有帮助