Buttons
Set Theme Color
Icon Border Stroke
Layout Section Light/Dark
More App Settings
Buttons
Use Bootstrap’s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.
<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>
Basic Examples
Button tags
The
.btn
classes are designed to be used with the
<button>
element. However, you can also use these classes on
<a>
or
<input>
elements (though some browsers may apply a slightly
different rendering).
Outline buttons
In need of a button, but not the hefty background
colors they bring? Replace the default modifier classes
with the
.btn-outline-*
ones to remove all background images and colors on any
button.
Sizes
Fancy larger or smaller buttons? Add
.btn-lg
or
.btn-sm
for additional sizes.
Disabled state
Make buttons look inactive by adding the
disabled
boolean attribute to any
<button>
element. Disabled buttons have
pointer-events: none
applied to, preventing hover and active states from
triggering.
Block buttons
Button group
Mixed styles
Outlined styles
Checkbox and radio button groups
Combine button-like checkbox and radio toggle buttons into a seamless looking button group.
Button toolbar
Combine sets of button groups into button toolbars for more complex components. Use utility classes as needed to space out groups, buttons, and more.
Sizing
Instead of applying button sizing
classes to every button in a group, just
add
.btn-group-*
to each
.btn-group
, including each one when nesting
multiple groups.