我的页脚为什么不坚持?

时间:2012-07-13 13:54:04

标签: css footer sticky-footer

我正在重新制作我的网站 - 它是在我有时间的时候构建的 - 我对页脚的四个页面中的两个有一点问题 - 我是不太清楚为什么它不起作用,因为它似乎在两个页面上正常工作。我正在使用这里的技术:(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/NfVoRR 或关于页面(/test/test_about.php)

我尝试了很多不同的东西,但无济于事!开始用它来撕掉我的头发,所以任何建议都会受到大力赞赏

编辑 - 这就是我所看到的:jameshenry.info/test/BottomExamples.png我在chrome,safari和safari iOS中看到了这一点。我希望它始终位于页面底部,页面内容下方。

1 个答案:

答案 0 :(得分:0)

问题在于你的HTML。

以下是源代码中嵌套不良标记的示例:

<a class="fancybox-thumb" rel="gallery" href="../images/photography/fullsize/MVI_4003-2.jpg" width="249" height="148"><img src="../images/photography/thumbnail/MVI_4003-2-thumb.jpg"></div></a>

正如您所看到的,您的锚中有一个关闭div标签,不应该存在。修复这些错误,你的页脚应该按预期工作。