बूटस्ट्रैप बटन ग्रुप क्लास के साथ काम करने के लिए क्लास .btn-group का इस्तेमाल करें। आप बटन समूह बनाने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं
उदाहरण
<!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">A</button> <button type = "button" class = "btn btn-default">B</button> <button type = "button" class = "btn btn-default">C</button> </div> </body> </html>