美文网首页
在Bootstrap框架下实现固定页脚

在Bootstrap框架下实现固定页脚

作者: By_syk | 来源:发表于2017-06-30 18:12 被阅读1319次

    固定在窗口底部

    不会随内容滚动而消失。

    <nav class="navbar navbar-default navbar-fixed-bottom">
      <div class="container">
        ...
      </div>
    </nav>
    
    body {
      /* Default height of navbar is 50px *
      padding-bottom: 70px;
    }
    

    固定在页面底部

    粘在内容底部,内容未撑满窗口时则粘在窗口底部。

    <footer class="footer">
      <div class="container">
        ...
      </div>
    </footer>
    
    html {
      position: relative;
      min-height: 100%;
    }
    
    body {
      /* Margin bottom by footer height */
      margin-bottom: 60px;
    }
    
    .footer {
      position: absolute;
      bottom: 0;
      width: 100%;
      /* Set the fixed height of the footer here */
      height: 50px;
      background-color: #f5f5f5;
    }
    

    参考

    相关文章

      网友评论

          本文标题:在Bootstrap框架下实现固定页脚

          本文链接:https://www.haomeiwen.com/subject/bwsicxtx.html