Bootstrap 布局组件 互动版

固定在底部


添加 .navbar-fixed-bottom 类可以让导航条固定在底部,并且还可以包含一个.container.container-fluid 容器,从而让导航条居中,并在两侧添加内补(padding)。

<nav class="navbar navbar-default navbar-fixed-bottom">
  <div class="container">
    ...
  </div>
</nav>

需要为 body 元素设置内补(padding)

这个固定的导航条会遮住页面上的其它内容,除非你给 元素底部设置了 padding。用你自己的值,或用下面给出的代码都可以。提示:导航条的默认高度是 50px。

body { padding-bottom: 70px; } Make sure to include this after the core Bootstrap CSS.