- 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
Pills with Dropdowns Bootstrap Example
To form pills with dropdowns, you can try to run the following example
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;"> <h2>Website</h2> <ul class = "nav nav-pills"> <li class = "active"><a href = "#">Home</a></li> <li><a href = "#">About</a></li> <li class = "dropdown"> <a class = "dropdown-toggle" data-toggle = "dropdown" href = "#"> Products <span class = "caret"></span> </a> <ul class = "dropdown-menu"> <li><a href = "#">Online Compiler</a></li> <li><a href = "#">Image Editor</a></li> </ul> </li> <li><a href = "#">Services</a></li> <li><a href = "#">Contact</a></li> </ul> </body> </html>
- Related Articles
- Split Button Dropdowns with Bootstrap
- Vertically stack pills with Bootstrap
- Bootstrap Pills
- Use dropdowns with any button size using Bootstrap
- Bootstrap Vertical Pills
- Bootstrap nav-pills class
- Segment button dropdowns in Bootstrap input groups
- Bootstrap 4 .card-header-pills class
- Tabs With Dropdown Bootstrap Example
- Style navigation pills inside the Bootstrap 4 card header
- What are the methods available for handling static dropdowns in a page in Selenium with python?
- Blood Pressure Pills Recalled Over Cancer Risk
- A woman uses pills A as a method of birth control (or preventing pregnancy). The pills A stop the ovaries from releasing ovum into oviducts. Another woman uses pills B as a method of birth control. The pills B kill the sperms and prevent pregnancy.(a) What do the pills A contain? (b) What is the common name of pills A? (c) What do the pills B contain? (d) What is the common name of pills B? (e) What is the general name of these methods of birth control?
- Filter table with Bootstrap
- Responsive grid with Bootstrap

Advertisements