- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Add responsive features to Bootstrap navbar
To add responsive features to the navbar, the content that you want to be collapsed needs to be wrapped in a <div> with classes .collapse, .navbar-collapse.
You can try to run the following code to
Example
<!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 style="background: #F5CBA7;"> <nav class = "navbar navbar-default" role = "navigation"> <div class = "navbar-header"> <button type = "button" class = "navbar-toggle" data-toggle = "collapse" data-target = "#example-navbar-collapse"> <span class = "sr-only">Toggle navigation</span> <span class = "icon-bar"></span> <span class = "icon-bar"></span> <span class = "icon-bar"></span> </button> <a class = "navbar-brand" href = "#">Tools</a> </div> <div class = "collapse navbar-collapse" id = "example-navbar-collapse"> <ul class = "nav navbar-nav"> <li class = "active"><a href = "#">Online Compiler</a></li> <li><a href = "#">Image Editor</a></li> <li class = "dropdown"> <a href = "#" class = "dropdown-toggle" data-toggle = "dropdown"> Whiteboard <b class = "caret"></b> </a> <ul class = "dropdown-menu"> <li><a href = "#">Image Optimizer</a></li> </ul> </li> </ul> </div> </nav> </body> </html>
- Related Articles
- Add buttons in Bootstrap Navbar
- Bootstrap navbar-default class
- Create Default Bootstrap Navbar
- Bootstrap navbar-inverse class
- Add a gray background color to the active link in a default Bootstrap navbar
- Create Inverted Navbar in Bootstrap
- Bootstrap navbar-static-top class
- Fix navbar to the top with Bootstrap
- Usage of Bootstrap navbar-form class
- Usage of Bootstrap navbar-btn class
- Usage of Bootstrap navbar-text class
- Bootstrap responsive utility classes
- Responsive grid with Bootstrap
- Bootstrap table-responsive class
- Wrap Strings of Text in Bootstrap Navbar

Advertisements