Group buttons on a single line with Bootstrap


Use the .btn-group class in Bootstrap to group buttons on a single like.

You can try to run the following code to implement .btn-group class in Bootstrap:

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link rel = "stylesheet" href = "https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
      <script src = "https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
   </head>
   <body>
      <p>The following are the car brands:</p>
      <div class = "btn-group">
         <button type = "button" class = "btn btn-default">BMW</button>
         <button type = "button" class = "btn btn-default">Audi</button>
         <button type = "button" class = "btn btn-default">Jeep</button>
         <button type = "button" class = "btn btn-default">Datsun</button>
         <button type = "button" class = "btn btn-default">Toyota</button>
         <button type = "button" class = "btn btn-default">Mahindra</button>
      </div>
   </body>
</html>

Updated on: 12-Jun-2020

3K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements