- 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
Usage of btn-sm Bootstrap class
Create a small button using the btn-sm Bootstrap class. You can try to run the following code to implement the btn-sm Bootstrap 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> <div class = "btn-group"> <button type = "button" class = "btn btn-default dropdown-toggle btn-sm" data-toggle = "dropdown"> Subject <span class = "caret"></span> </button> <ul class = "dropdown-menu" role = "menu"> <li><a href = "#">Programming</a></li> <li><a href = "#">Web Dev</a></li> <li><a href = "#">Database</a></li> <li><a href = "#">Networking</a></li> </ul> </div> </body> </html>
- Related Articles
- Bootstrap .btn-sm class
- Usage of Bootstrap .btn-group-* class
- Usage of btn-xs Bootstrap class
- Usage of Bootstrap navbar-btn class
- Usage of btn-large Bootstrap class
- Bootstrap pagination-sm class
- Bootstrap .btn class
- Bootstrap class input-group-sm
- Bootstrap btn-toolbar class
- Bootstrap .btn-xs class
- Bootstrap .btn-warning class
- Bootstrap .btn-lg class
- Bootstrap .btn-link class
- Bootstrap .btn-block class
- Bootstrap btn-group class

Advertisements