Bootstrap 按钮组类
htmlbootstrapjqueryjavascript
使用 .btn-group 类与 Bootstrap 按钮组类配合使用。您可以尝试运行以下代码来形成按钮组
示例
<!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>