- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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 headers inside the dropdown menu in Bootstrap
To add headers inside the dropdown menu, use the .dropdown-header class in Boostrap. The .dropdown-menu class is used to add a dropdown menu.
You can try to run the following code to implement the dropdown-header class in Bootstrap −
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> <div class = "container"> <h2>Beverages</h2> <p>The following are the beverages available in India:</p> <div class = "dropdown"> <button class = "btn btn-primary dropdown-toggle" type = "button" data-toggle="dropdown">Beverages <span class = "caret"></span></button> <ul class = "dropdown-menu"> <li class = "dropdown-header">Energy Drinks</li> <li><a href = "#">Gatorade</a></li> <li><a href = "#">Sting</a></li> <li><a href = "#">Red Bull</a></li> <li class = "dropdown-header">Sof Drinks</li> <li><a href = "#">Pepsi</a></li> <li><a href = "#">Coca Cola</a></li> </ul> </div> </div> </body> </html>
- Related Articles
- Add dropdown menu to buttons using Bootstrap
- Add the default styles for the dropdown menu container in Bootstrap
- Add header to label sections in dropdown menu with Bootstrap
- Create Dropdown menu with Bootstrap
- Right align a Bootstrap dropdown menu
- Separate links in the dropdown menu with a thin horizontal border with Bootstrap
- Creating a Dropdown Menu using Tkinter
- Tkinter dropdown Menu with keyboard shortcuts
- Add a hover effect inside the Bootstrap 4 card
- Bootstrap dropdown class
- How to add a search box inside a responsive navigation menu?
- Bootstrap class dropdown-header
- Tabs With Dropdown Bootstrap Example
- Align Dropdown to the right with Bootstrap
- How to create a hoverable dropdown menu with CSS?

Advertisements