Usage of Bootstrap Navbar Fixed Top Class



Use the Bootstrap class .navbar-fixed-top to set the navbar fixed to the top.

You can try to run the following code to fix navbar to the top −

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href="/https/www.tutorialspoint.com/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-fixed-top" role = "navigation" style="background: red;">
         <div class = "navbar-header">
            <a class = "navbar-brand" href = "#">Modes of Transport</a>
         </div>
         <div>
            <ul class = "nav navbar-nav">
               <li class = "active"><a href = "#">Air Transport</a></li>
               <li><a href = "#">Water Transport</a></li>
            </ul>
         </div>
      </nav>
   </body>
</html>
Updated on: 2020-06-12T16:59:13+05:30

364 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements