- 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 Button Group with Bootstrap
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
- Create a small button group with Bootstrap
- Create a large button group with Bootstrap
- Create an extra small button group with Bootstrap
- Create a Button Group with CSS
- Create a basic button with Bootstrap
- Create a large button with Bootstrap
- Create a small button with Bootstrap
- Create a Bordered Button Group with CSS
- Create a Vertical Button Group with CSS
- Create a block level button with Bootstrap
- Create a yellow button (warning) with Bootstrap
- Create a blue button (primary) with Bootstrap
- Create a green button (success) with Bootstrap
- Bootstrap Button Group Classes
- Create block level button with Bootstrap

Advertisements