5

我的内容与我的页脚重叠(很粘)。但它应该有一个正常的填充顶部。我如何使用 CakePHP(不相关)和 Twitter Bootstrap。在某些页面上它可以工作,而在其他页面上则不行。我怎样才能解决这个问题?

CSS

body {
    padding-top: 60px;
}
.sidebar-nav {
    padding: 9px 0;
}

html, body {
    height: 100%;
}
footer {
    padding: 17px 0 18px 0;
    border-top: 1px solid #000;
}
.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -63px;
}
.push {
    height: 63px;
}

HTML

<div class="container-fluid wrapper">
    <div class="row-fluid">
        <div class="span11">
            //content
        </div>
    </div>
</div>

<footer class="footer">          
    <div class="container-fluid">
        <div class="row-fluid">
            <div class="span8">
            </div>
            <div class="span4">
                <div class="footer-links pull-right>
                  //content
                </div>
            </div>
        </div>
    </div>
    <div class="footer-floor">
        <div class="container-fluid">
                //content
        </div>
    </div>
</footer>
4

2 回答 2

4

为了使粘性页脚起作用,您必须为.push和设置高度.footer。尝试将63px高度添加到您的页脚。

.push, footer {
height: 63px;
}
于 2012-12-19T13:39:06.400 回答
0

以某种方式使您的页脚 z-index 超过侧边栏 z-index。

于 2016-07-30T17:05:18.603 回答