Buttons
Examples
Conveying meaning to assistive technologies
Using color to add meaning only provides a visual indication, which will not be conveyed to users of assistive technologies – such as screen readers. Ensure that information denoted by the color is either obvious from the content itself (e.g. the visible text), or is included through alternative means, such as additional text hidden with the .visually-hidden class.
Button content positioning
TODO: Fix code snippets too wide
| Class | Example | Code |
|---|---|---|
btn btn-linkReduces outer padding to "xs" Adds icon to :after |
|
|
btn btn-link btn-link--startReduces outer padding to "xs" Adds icon to :before |
|
| Class | Example | Code |
|---|---|---|
Note all have: btn btn-primary
|
||
|
|
|
btn--iconReduces outer padding to "sm" |
|
|
btn--icon btn-xlbtn--icon btn-lgbtn--iconbtn--icon btn-sm |
|
|
btn--icon-startReduces outer padding to "xs" Makes icon's right padding "sm" |
|
|
btn--icon-end Reduces outer padding to "xs" Makes icon's left padding "sm" |
|
|
btn--icon-only
Reduces outer padding to "xs" |
|
|
Disable text wrapping
If you don’t want the button text to wrap, you can add the .text-nowrap class to the button. In Sass, you can set $btn-white-space: nowrap to disable text wrapping for each button.
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).
When using button classes on <a> elements that are used to trigger in-page functionality (like collapsing content), rather than linking to new pages or sections within the current page, these links should be given a role="button" to appropriately convey their purpose to assistive technologies such as screen readers.
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
Disabled state
Disabled buttons using the <a> element behave a bit different:
<a>s don’t support thedisabledattribute, so you must add the.disabledclass to make it visually appear disabled.- Some future-friendly styles are included to disable all
pointer-eventson anchor buttons. - Disabled buttons should include the
aria-disabled="true"attribute to indicate the state of the element to assistive technologies.
Link functionality caveat
The .disabled class uses pointer-events: none to try to disable the link functionality of <a>s, but that CSS property is not yet standardized. In addition, even in browsers that do support pointer-events: none, keyboard navigation remains unaffected, meaning that sighted keyboard users and users of assistive technologies will still be able to activate these links. So to be safe, in addition to aria-disabled="true", also include a tabindex="-1" attribute on these links to prevent them from receiving keyboard focus, and use custom JavaScript to disable their functionality altogether.
Block buttons
Here we create a responsive variation, starting with vertically stacked buttons until the md breakpoint, where .d-md-block replaces the .d-grid class, thus nullifying the gap-2 utility. Resize your browser to see them change.
You can adjust the width of your block buttons with grid column width classes. For example, for a half-width “block button”, use .col-6. Center it horizontally with .mx-auto, too.
Additional utilities can be used to adjust the alignment of buttons when horizontal. Here we’ve taken our previous responsive example and added some flex utilities and a margin utility on the button to right align the buttons when they’re no longer stacked.
Non-Rounded
Only for single buttons. Otherwise use Vertical Stacked Button Groups.
Button plugin
The button plugin allows you to create simple on/off toggle buttons.
Toggle states
Add data-bs-toggle="button" to toggle a button’s active state. If you’re pre-toggling a button, you must manually add the .active class and aria-pressed="true" to ensure that it is conveyed appropriately to assistive technologies.
Methods
You can create a button instance with the button constructor, for example:
| Method | Description |
|---|---|
toggle
|
Toggles push state. Gives the button the appearance that it has been activated. |
dispose
|
Destroys an element's button. (Removes stored data on the DOM element) |
For example, to toggle all buttons