- 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
Separate links in the dropdown menu with a thin horizontal border with Bootstrap
Use the .divider class in Bootstrap to separate links in the dropdown menu with a thin border
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><a href = "#">Gatorade</a></li> <li><a href = "#">Sting</a></li> <li><a href = "#">Red Bull</a></li> <li class = "divider"></li> <li><a href = "#">Pepsi</a></li> <li><a href = "#">Coca Cola</a></li> </ul> </div> </div> </body> </html>
- Related Articles
- Create Dropdown menu with Bootstrap
- Add header to label sections in dropdown menu with Bootstrap
- Right align a Bootstrap dropdown menu
- Add headers inside the dropdown menu in Bootstrap
- Tkinter dropdown Menu with keyboard shortcuts
- Add dropdown menu to buttons using Bootstrap
- Disable a dropdown item with Bootstrap
- How can I separate Menu Items in a Menu with Java?
- How to create a hoverable dropdown menu with CSS?
- Get links in alerts with Bootstrap
- Set disabled links with Bootstrap
- Tabs With Dropdown Bootstrap Example
- Indicate a tabbed menu with Bootstrap
- Set a pill menu with Bootstrap
- Create a tabbed menu with Bootstrap

Advertisements