- 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
Bootstrap btn-group class
Use the class .btn-group to create a button group.
You can try to run the following code to implement the btn-group 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> <p>The following are the buttons:</p> <div class = "btn-group"> <button type = "button" class = "btn btn-default">One</button> <button type = "button" class = "btn btn-default">Two</button> </div> </body> </html>
- Related Articles
- Bootstrap btn-group-vertical class
- Bootstrap class btn-group-vertical
- Bootstrap input-group-btn class
- Usage of Bootstrap .btn-group-* class
- Bootstrap .btn class
- 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-success class
- Bootstrap .btn-primary class
- Bootstrap .btn-info class
- Bootstrap .btn-danger class

Advertisements