伙计们,
我正在构建这个响应式网站,底部有页脚浮动。
在我的 index.page ( http://testi3.aada.fi/ ) 上,我的代码工作正常,但我的内容页面 () 有问题,即使我对浮动页脚使用相同的代码..
有人可以给我一个提示如何解决这个问题吗?
我的浮动代码:
.container {
min-height: 100%;
/* equal to footer height */
margin-bottom: -120px;
}
.container:after {
content: "";
display: block;
}
.site-footer, .container:after {
/* .push must be the same height as footer */
height: 120px;
text-align: center;
}
.site-footer {
background-image: url(../images/footer_bg_trans.png);
background-repeat: no-repeat;
background-position: center top;
text-align: center;
position: fixed;
width: 100%;
bottom: 0;
}
/ 米卡