我想做的是增加位置:固定;到下面的容器,但与页眉和页脚相比,它是居中的
#OuterGallery {
margin: -6px auto 0px auto;
width: 960px;
height: 675px;
padding: 0px 0px 20px 0px;
}
以下是标题代码:
#HeaderBar {
width: 100%;
background-image: url(../image-core/header.png);
background-position: 0px 0px;
background-repeat: repeat-x;
height: 80px;
margin: 0px;
border: 0px solid #FFF;
position: absolute; z-index: 100;
}
它的设计是为了在向下滚动时标题消失
最后听到的是页脚
#Footer {
background-color:transparent;
position:fixed;
width:100%;
bottom:0;
display:none;
z-index:10000;
background-image: url(../image-core/footer.png);
border-top: 5px solid #e0c495;
-moz-box-shadow: -0px -1px 5px #000;
-webkit-box-shadow: -0px -1px 5px #000;
box-shadow: -0px -1px 5px #000;
background-color: #000;
background-position: 0px 0px;
height: 35px;
非常感谢您提供的帮助