Bootstrap navbar-fixed-top类,不工作

Ben*_*nWS 11 html css twitter-bootstrap bootstrap-4

使用Bootstrap构建投资组合站点 - 我正在应用'navbar-fixed-top'类以使导航栏粘在窗口的顶部,例如在此示例中:

https://getbootstrap.com/examples/navbar-fixed-top/

我正在尝试使用此代码:

<nav class="navbar navbar-fixed-top">
  <div class="container">
    <div id="navbar" class="navbar-collapse">
      <ul class="nav navbar-nav">
        <li>About</li>
        <li>Projects</li>
        <li>Contact Me</li>
      </ul>
    </div>
  </div>
</nav>
Run Code Online (Sandbox Code Playgroud)

但是,当我将导航栏应用到我自己的网页时,它仍然可以滚动.你可以在这里查看页面:

http://codepen.io/BenWS/pen/gmLEVw

小智 42

因为您使用的是最新版本的bootstrap(bootstrap4 beta6).

他们从.navbar-fixed-top变为.fixed-top

您必须阅读此链接中的文档.