0

我读过一篇非常相似的帖子并尝试了所有解决方案,但没有任何乐趣。这就是我所拥有的。我的网站具有全宽(100%)页眉和页脚空间以及一个较小宽度的容器。我使用了 Ryan Fait 粘性页脚,但容器(具有白色背景)不会到达页脚,除非我只是放入一堆换行符,这违背了粘性页脚的目的。

款式:

html, body {
height: 100%;}

body    {
margin:0;
padding:0;
}

html {
overflow: -moz-scrollbars-vertical; 
overflow-y: scroll;}

.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -30px;}

.container {
width:1050px;
margin: 0 auto 0 auto;
min-height: 100%;
height: auto !important;
height: 100%;
padding:0 25px 0 25px;
background-color:#FFF;
    }

 .footer, .push {
height: 30px;}

 .footer {
background-color:#000;
width:100%;
height: 30px;}

和html:

<div class="wrapper">
<div class="container">
/* content */
</div>
<!--end container-->
<div class="push"></div>
</div>
<!--end wrapper-->
<div class="footer">
/* footer */
</div>
<!--end footer-->
4

1 回答 1

0

你可以摆脱.wrapper并搬进.push你的.container

见小提琴:http: //jsfiddle.net/32WxJ/3/

于 2013-04-03T15:49:26.087 回答