页脚(导航栏)与侧栏不相关

时间:2016-02-16 10:09:36

标签: jquery twitter-bootstrap-3

我对网页开发有点新意。所以,请耐心等待。我使用Bootstrap 3中的导航栏制作了我网站的页脚。

显然,我需要页脚停留在页面底部。我的网格系统为2 8 2.现在,页脚完全适用于中间网格,即col-8。但对于正确的专栏而言,却惨遭失败。

FOOTER:

<div class="footer navbar navbar-default navbar-fixed-bottom">
    <div class="container">
        <p class="navbar-text pull-left"> Footer</p>
    </div>
</div> 

CSS:

.footer { 
    position:relative;
    background-color:#ccffcc;
    color: white; 
}

.container { 
    width: auto;
    max-width: 680px;
    padding: 0 15px;
    height:auto;
}

有问题的场景:  Please look at the right side of the page. The footer's misbehavior with the sidebar....so to speak.

1 个答案:

答案 0 :(得分:1)

看看bootstrap sticky-footer有一个例子。

在你的html / css中你必须添加:

CSS:

* {
    margin: 0;
}
html, body {
    height: 100%;
}
.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -155px; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
    height: 155px; /* .push must be the same height as .footer */
}

HTML:

<div class="wrapper">
  <p>Your content.</p>
  <div class="push"></div>
 </div>
 <div class="footer">
   <p>Copyright</p>
 </div>