Documentation and examples for badges, our small count and labeling component: Google AMP Badges Library
Badges scale to match the size of the immediate parent element by using relative font sizing and em
units.
<h1>Google AMP <span class="badge badge-secondary">Badge</span></h1>
<h2>Google AMP <span class="badge badge-secondary">Badge</span></h2>
<h3>Google AMP <span class="badge badge-secondary">Badge</span></h3>
<h4>Google AMP <span class="badge badge-secondary">Badge</span></h4>
<h5>Google AMP <span class="badge badge-secondary">Badge</span></h5>
<h6>Google AMP <span class="badge badge-secondary">Badge</span></h6>
Badges can be used as part of links or buttons to provide a counter.
<button class="btn btn-primary">
Google AMP button with badge <span class="badge badge-light">3</span>
</button>
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 badge-primary">Primary</span>
<span class="badge badge-secondary">Secondary</span>
<span class="badge badge-success">Success</span>
<span class="badge badge-danger">Danger</span>
<span class="badge badge-warning">Warning</span>
<span class="badge badge-info">Info</span>
<span class="badge badge-light">Light</span>
<span class="badge badge-dark">Dark</span>
Use the .badge-pill
modifier class to make badges more rounded (with a larger border-radius
and additional horizontal padding
).
<span class="badge badge-pill badge-primary">Primary</span>
<span class="badge badge-pill badge-secondary">Secondary</span>
<span class="badge badge-pill badge-success">Success</span>
<span class="badge badge-pill badge-danger">Danger</span>
<span class="badge badge-pill badge-warning">Warning</span>
<span class="badge badge-pill badge-info">Info</span>
<span class="badge badge-pill badge-light">Light</span>
<span class="badge badge-pill badge-dark">Dark</span>
Using the contextual .badge-*
classes on an <a>
element quickly provide actionable badges with hover and focus states.
<a href="#" class="badge badge-primary">Primary</a>
<a href="#" class="badge badge-secondary">Secondary</a>
<a href="#" class="badge badge-success">Success</a>
<a href="#" class="badge badge-danger">Danger</a>
<a href="#" class="badge badge-warning">Warning</a>
<a href="#" class="badge badge-info">Info</a>
<a href="#" class="badge badge-light">Light</a>
<a href="#" class="badge badge-dark">Dark</a>