- 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
Create Inverted Navbar in Bootstrap
To create an inverted navbar with a black background and with white text, simply add the .navbar-inverse class to the .navbar class.
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> <nav class = "navbar navbar-inverse" role = "navigation"> <div class = "navbar-header"> <a class = "navbar-brand" href = "#">TutorialsPoint</a> <div> <div> <ul class = "nav navbar-nav"> <li class = "active"><a href = "#">iOS</a></li> <li><a href = "#">SVN</a></li> <li class = "dropdown"> <a href = "#" class = "dropdown-toggle" data-toggle = "dropdown"> Java <b class = "caret"></b> </a> <ul class = "dropdown-menu"> <li><a href = "#">jmeter</a></li> <li><a href = "#">EJB</a></li> <li><a href = "#">Jasper Report</a></li> </ul> </li> </ul> </div> </nav> </body> </html>
- Related Articles
- Create Default Bootstrap Navbar
- Create a navbar scrolling with the page in Bootstrap
- Add buttons in Bootstrap Navbar
- Bootstrap navbar-default class
- Bootstrap navbar-inverse class
- Bootstrap navbar-static-top class
- Wrap Strings of Text in Bootstrap Navbar
- Add responsive features to Bootstrap navbar
- Usage of Bootstrap navbar-form class
- Usage of Bootstrap navbar-btn class
- Usage of Bootstrap navbar-text class
- Change HTML navbar color in Twitter Bootstrap 2.0.4
- Fix navbar to the top with Bootstrap
- Usage of Bootstrap navbar-fixed-top class
- Usage of Bootstrap navbar-fixed-bottom class

Advertisements