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

부트스트랩 버튼의 크기 추가


Bootstrap에서 버튼의 크기를 추가하려면 다음 클래스를 시도하십시오.

클래스
설명
.btn-lg
이렇게 하면 버튼 크기가 커집니다.
.btn-sm
이렇게 하면 버튼 크기가 작아집니다.
.btn-xs
이렇게 하면 버튼 크기가 매우 작아집니다.
.btn-블록
이렇게 하면 부모의 전체 너비에 걸쳐 있는 블록 수준 버튼이 생성됩니다.

예시

다음 코드를 실행하여 작은 버튼을 만들 수 있습니다 -

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>  
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://stackpath.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://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
   </head>
   <body>
      <button type = "button" class = "btn btn-default btn-sm">
         Small button
      </button>
   </body>
</html>