HTML CSS examples for Bootstrap:Navbar
Create a horizontal affixed navigation menu
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <style> .affix {<!--from ww w .ja v a2 s.co m--> top: 0; width: 100%; z-index: 9999 !important; } .affix + .container-fluid { padding-top: 70px; } </style> </head> <body> <div class="container-fluid" style="background-color:#F44336;color:#fff;height:200px;"> <h1>Bootstrap Affix Example</h1> <h3>Fixed (sticky) navbar on scroll</h3> <p>This is a test. This is a test. This is a test.</p> <p>This is a test. This is a test. This is a test.</p> </div> <nav class="navbar navbar-inverse" data-spy="affix" data-offset-top="197"> <ul class="nav navbar-nav"> <li class="active"><a href="#">Basic Topnav</a></li> <li><a href="#">Page 1</a></li> <li><a href="#">Page 2</a></li> <li><a href="#">Page 3</a></li> </ul> </nav> <div class="container-fluid" style="height:1000px"> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> <h1>Some text to enable scrolling</h1><br/><br/> </div> </body> </html>