将div中的空格扩展到页面底部

时间:2013-09-24 11:03:02

标签: css html

我正在我的网站上工作,我需要进行高度屏幕填充。 它存在于容器中的header-banner-content。

容器本身位于另一个div(shadowbox)中,因为有一个淡出/阴影效果,所以它有点宽。因此,shadowbox的宽度为1150px,容器的宽度仅为1024px。

也许这是一种更好的方法来抑制内部div和工作宽度左右填充,但我发现在没有填充的情况下工作更好。

这是我的小提琴:

http://jsfiddle.net/Bartimi/REpTA/

<div id="shadowbox">
    <div id="container">
        <div id="header">
            MENU
        </div>
        <div id="banner">
            BANNER
        </div>
        <div id="content">
            <div id="left">
                content left <br /><br />
            </div>        
            <div id="right">
                content right
            </div>
            <div id="clear"></div>
        </div>
    </div>
</div>

如何确保#shadowbox-background排在最后?

CSS:

* {
   margin: 0 auto;
   padding: 0;
   border: 0;
}
body {
    background-image: url('http://atrox.no-ip.org:8082/HIJW/images/bg.png');
    background-repeat: repeat;
}
#shadowbox {
    width: 1150px;
    min-height: 100%;
    background-image: url('http://atrox.no-ip.org:8082/HIJW/images/shadowbox.png');
    background-repeat: repeat-y;
}
#container {
    width: 1024px;
}
#header {
   height: 100px;
   background-color: red;
}
#banner {
    top: 100px;
    min-width: 1200px;
    height: 150px;
    margin-left: -100%;
    margin-right: -100%;
    background-color: blue;
}
#content {
    position: relative;
    width: 1000px;
    padding: 0;
    margin-top: 20px;
}
#left {
    float: left;
    width: 625px;
    background-color: green;
}
#right {
    float: right;
    width: 350px;
    background-color: green;
}
#clear {
    clear: both;
}

2 个答案:

答案 0 :(得分:2)

min-height:100%移除#shadowbox并添加此CSS:

html, body, #shadowbox {
    height:100%;
}

选中此JSFiddle

答案 1 :(得分:1)

添加

html, body {
height: 100%;
}

代码:)