在我的网站here 上,我们对不同的城镇使用相同的CSS,但是这里没有内容的无人居住/新城镇的页脚向上并在下面留下一个大的白色间隙。
我尝试了一种不起作用的粘性页脚方法。
这是页脚CSS:
#footer-wrapper, #push {
height: 100px; /* .push must be the same height as .footer */
overflow:hidden;
}
#footer-wrapper {clear:both;width:100%;border-top:1px solid #323232;padding:20px 0 0;
background: #33383c;
background: #3F4952 url("/images/bg.jpg") repeat;
}
内容包装器:
#main-content {
margin: 0 5% -100px;
min-width:960px;
max-width:1137px;
overflow: hidden;
}
而且我想知道右/左导航相等列CSS是否会影响它,例如:
.right-nav {
float: right;
width: 29.4%;
border-left: 1px solid #Dddddd;
padding-top:2em;
padding-bottom:10040px;
margin-bottom:-10000px;
}
任何想法都会很棒。