- 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 a caret arrow icon that represents dropdown button with Bootstrap
Use the .caret class in Bootstrap to create a caret arrow icon representing dropdown button.
You can try to run the following code to create a carot arrow icon −
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>Brands</h2> <p>The car brands:</p> <div class = "btn-group"> <button type = "button" class = "btn dropdown-toggle" data-toggle = "dropdown">Car <span class="caret"></span></button> <ul class = "dropdown-menu" role = "menu"> <li><a href = "#">BMW</a></li> <li><a href = "#">Toyota</a></li> <li><a href = "#">Audi</a></li> <li><a href = "#">Mahindra</a></li> <li><a href = "#">Volvo</a></li> </ul> </div> </div> </body> </html>
- Related Articles
- Create Dropdown menu with Bootstrap
- How to create a split button dropdown with CSS?
- Create a basic button with Bootstrap
- Create a large button with Bootstrap
- Create a small button with Bootstrap
- Create a Button Group with Bootstrap
- Create a block level button with Bootstrap
- Create a small button group with Bootstrap
- Create a large button group with Bootstrap
- Create a yellow button (warning) with Bootstrap
- Create a blue button (primary) with Bootstrap
- Create a green button (success) with Bootstrap
- Create block level button with Bootstrap
- Create a red button that indicates danger in Bootstrap
- Caret Bootstrap class

Advertisements