Buttons

     
      <button type="button" class="btn btn-primary">Primary</button>
      <button type="button" class="btn btn-secondary">Secondary</button>
      <button type="button" class="btn btn-success">Success</button>
      <button type="button" class="btn btn-danger">Danger</button>
      <button type="button" class="btn btn-warning">Warning</button>
      <button type="button" class="btn btn-info">Info</button>
      <button type="button" class="btn btn-light">Light</button>
      <button type="button" class="btn btn-dark">Dark</button>
      <button type="button" class="btn btn-link">Link</button>
    
  

Outline

Replace the default modifier classes with the .btn-outline-* ones to remove all background images and colors on any button.

    
      <button type="button" class="btn btn-outline-primary">Primary</button>
    
  

Sizes

Fancy larger or smaller buttons? Add .btn-lg or .btn-sm for additional sizes.

Create block level buttons—those that span the full width of a parent—by adding .btn-block.

    
      <button type="button" class="btn btn-primary btn-lg">Large button</button>
      <button type="button" class="btn btn-primary btn-sm">Small button</button>
      <button type="button" class="btn btn-primary btn-block">Block level button</button>
    
  

Disabled

Make buttons look inactive by adding the disabled boolean attribute to any button element.

      
        <button type="button" class="btn btn-primary" disabled>Primary button</button>