CSS DIV高度背景图像重叠

时间:2013-02-19 18:38:20

标签: css html overlapping

我有这两个带有背景图像的DIV标签。

<div class="content_bg">
    <div id="content">
        <div id="contentLeft">   
        </div>
        <div id="contentRight">            
        </div>
    </div>
</div>
<div class="footer_bg">
    <div id="footer">
        <div id="footerLeft">            
        </div>
        <div id="footerRight">           
        </div>
    </div>
</div>

如果我手动设置内容的高度,一切看起来都不错,但如果我将其设置为100%或自动, footer_bg 重叠在 content_bg 即可。有人可以建议吗?

/*
====================================================================
Content Area
====================================================================
*/

.content_bg
{
    background:#dadad9 url(images/interior_content_bg_top.jpg) repeat-x center top;

}

#content
{
    width:980px;
    margin:auto;
    height:auto;   
    background:white;     

}

#contentLeft
{
    float:left;
    width:209px; 
    margin-top:50px;   
}


#contentRight
{
    float:right;
    width:770px;     
    font-family: Verdana, Arial, Sans-Serif;
    font-size: 11px;
    line-height:17px;
    border-left:1px solid;
    margin:20px 0 0 0;
}

/*
====================================================================
Footer
====================================================================
*/

.footer_bg
{
    background:#dadad9 url(images/interior_footer_bg.jpg) repeat-x center top;

}

#footer 
{
    width:980px;
    height:258px;
    margin:auto;
    background:#dadad9 url(images/interior_footer.jpg) no-repeat center top;
}
#footerLeft
{
    width:400px;
    height:50px;   
    font-family:Verdana, Arial, sans-serif;
    font-size:11px;    
    line-height:25px;
    float:left;
    padding: 20px 0 0 25px;
    color:#fff;
}


#footerRight
{
    width:100px;
    height:50px;       
    float:right;
    padding: 20px 0 0 0;
}

2 个答案:

答案 0 :(得分:0)

你应该为你的内容所有父母(包括body和html)设置100%的高度接受它。或者只为内容设置{min-height:Npx}。你的问题是#content不知道需要什么高度)

答案 1 :(得分:0)

请参阅代码和演示的小提琴:http://jsfiddle.net/4Ly7E/1/

演示:http://jsfiddle.net/4Ly7E/1/embedded/result

注意:由于我没有背景图片,所以我假设内容和页脚的边框是边界。

.content_bg
{
    background:#dadad9 url(images/interior_content_bg_top.jpg) repeat-x center top;
    border:1px solid red; /* for visiblity */
    overflow:hidden;

}

.footer_bg
{
    background:#dadad9 url(images/interior_footer_bg.jpg) repeat-x center top;
    border:1px solid teal; /* for visiblity */
    clear:both;
}