Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

부트스트랩 버튼 그룹 클래스


부트스트랩 버튼 그룹 클래스로 작업하려면 .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>