我正在重新做我的网站 - 当我有时间时,它正在构建 - 我对页脚的四个页面中的两个有一点问题 - 我不太确定为什么它不起作用,因为它似乎在两个页面上都可以正常工作。我正在使用这里的技术:(ryanfait.com/resources/footer-stick-to-bottom-of-page/)
我在我的 CSS 中使用这些值:
/* BOTTOM BAR */
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -122px;
}
.push, .footer {
clear: both;
width: 100%;
height: 122px;
}
.footer {
text-align: right;
padding-right: 0px;
padding-left: 0px;
clear:both;
background-color: #2e2e2e;
-moz-box-shadow: 0px -1px 0px rgba(0,0,0,0.1), inset 0px 1px 0px rgba(255,255,255,0.6);
-webkit-box-shadow: 0px -1px 0px rgba(0,0,0,0.1), inset 0px 1px 0px rgba(255,255,255,0.6);
box-shadow: 0px -1px 0px rgba(0,0,0,0.1), inset 0px 1px 0px rgba(255,255,255,0.6);
border-top:1px solid #36383D;
}
.bottom_content {
width: 900px;
margin-left:auto;
margin-right:auto;
padding-top: 25px;
border: 0px;
}
.copywrite {
float: left;
text-align: left;
padding:0px;
margin-top: 0px;
clear: both;
font-family: Helvetica, Arial;
font-size:24px;
font-weight:300;
color: #3c3e43;
}
- 它在这里工作正常:http: //bit.ly/MlV6JP
但不在此处:http : //bit.ly/NfVoRR 或关于页面 (/test/test_about.php)
我尝试了许多不同的方法,但都没有成功!开始用它把我的头发扯掉一点,所以任何建议都将不胜感激
编辑 - 这是我所看到的:jameshenry.info/test/BottomExamples.png我在 chrome、safari 和 safari iOS 中看到了这个。我希望它始终位于页面底部,位于页面内容下方。