创建随页面滚动的 Bootstrap 导航栏


要创建一个随页面滚动的导航栏,请添加 .navbar-static-top 类。此类不要求在 <body> 中添加边距。

示例

在线演示

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <nav class = "navbar navbar-default navbar-static-top" role = "navigation">
         <div class = "navbar-header">
            <a class = "navbar-brand" href = "#">Car Accessories</a>
         </div>
         <div>
            <ul class = "nav navbar-nav">
               <li class = "active"><a href = "#">Car Cover</a></li>
               <li><a href = "#">Car Mobile Holder</a></li>
               <li><a href = "#">Car Mobile Charger</a></li>
            </ul>
         </div>
      </nav>
   </body>
</html>

更新于: 2020 年 6 月 12 日

超过 1K 次查看

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告