Badges

Documentation and examples for badges, our small count and labeling component.

Example

Badges scale to match the size of the immediate parent element by using relative font sizing and em units.

Example heading New
Example heading New
Example heading New
Example heading New
Example heading New
Example heading New
<h1>Example heading <span class="badge_sth badge-secondary_sth">New</span></h1>
<h2>Example heading <span class="badge_sth badge-secondary_sth">New</span></h2>
<h3>Example heading <span class="badge_sth badge-secondary_sth">New</span></h3>
<h4>Example heading <span class="badge_sth badge-secondary_sth">New</span></h4>
<h5>Example heading <span class="badge_sth badge-secondary_sth">New</span></h5>
<h6>Example heading <span class="badge_sth badge-secondary_sth">New</span></h6>

Badges can be used as part of links or buttons to provide a counter.

<button type="button" class="btn_sth btn-primary_sth">
  Notifications <span class="badge_sth badge-light_sth">4</span>
</button>

Note that depending on how they are used, badges may be confusing for users of screen readers and similar assistive technologies. While the styling of badges provides a visual cue as to their purpose, these users will simply be presented with the content of the badge. Depending on the specific situation, these badges may seem like random additional words or numbers at the end of a sentence, link, or button.

Unless the context is clear (as with the “Notifications” example, where it is understood that the “4” is the number of notifications), consider including additional context with a visually hidden piece of additional text.

<button type="button" class="btn_sth btn-primary_sth">
  Profile <span class="badge_sth badge-light_sth">9</span>
  <span class="sr-only_sth">unread messages</span>
</button>

Contextual variations

Add any of the below mentioned modifier classes to change the appearance of a badge.

Primary Secondary Success Danger Warning Info Light Dark
<span class="badge_sth badge-primary_sth">Primary</span>
<span class="badge_sth badge-secondary_sth">Secondary</span>
<span class="badge_sth badge-success_sth">Success</span>
<span class="badge_sth badge-danger_sth">Danger</span>
<span class="badge_sth badge-warning_sth">Warning</span>
<span class="badge_sth badge-info_sth">Info</span>
<span class="badge_sth badge-light_sth">Light</span>
<span class="badge_sth badge-dark_sth">Dark</span>

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 .sr-only class.

Pill badges

Use the .badge-pill_sth modifier class to make badges more rounded (with a larger border-radius and additional horizontal padding). Useful if you miss the badges from v3.

Primary Secondary Success Danger Warning Info Light Dark
<span class="badge_sth badge-pill_sth badge-primary_sth">Primary</span>
<span class="badge_sth badge-pill_sth badge-secondary_sth">Secondary</span>
<span class="badge_sth badge-pill_sth badge-success_sth">Success</span>
<span class="badge_sth badge-pill_sth badge-danger_sth">Danger</span>
<span class="badge_sth badge-pill_sth badge-warning_sth">Warning</span>
<span class="badge_sth badge-pill_sth badge-info_sth">Info</span>
<span class="badge_sth badge-pill_sth badge-light_sth">Light</span>
<span class="badge_sth badge-pill_sth badge-dark_sth">Dark</span>

Using the contextual .badge-*_sth classes on an <a> element quickly provide actionable badges with hover and focus states.

<a href="#" class="badge_sth badge-primary_sth">Primary</a>
<a href="#" class="badge_sth badge-secondary_sth">Secondary</a>
<a href="#" class="badge_sth badge-success_sth">Success</a>
<a href="#" class="badge_sth badge-danger_sth">Danger</a>
<a href="#" class="badge_sth badge-warning_sth">Warning</a>
<a href="#" class="badge_sth badge-info_sth">Info</a>
<a href="#" class="badge_sth badge-light_sth">Light</a>
<a href="#" class="badge_sth badge-dark_sth">Dark</a>