Bs Badgets/Labels
Bootstrap Badges in addition to Labels
Badges
Badges are numerical indicators of how many items are associated alongside a link:News 5
Comments 10
Updates 2
The numbers (5, 10, in addition to 2) are the badges.
Use the
.badge shape within <span> elements to practice badges:Example
<a href="#">News <span class="badge">5</span></a><br>
<a href="#">Comments <span class="badge">10</span></a><br>
<a href="#">Updates <span class="badge">2</span></a> The next instance shows how to add together badges to buttons:
Example
<button type="button" class="btn btn-primary">Primary <span class="badge">7</span></button> Labels
Labels are used to render additional data near something:Example New
Example New
Example New
Example New
Example New
Example New
Use the
.label class, followed past times 1 of the half-dozen contextual classes .label-default, .label-primary, .label-success, .label-info, .label-warning or .label-danger, within a <span> chemical gene to practice a label:Example
<h1>Example <span class="label label-default">New</span></h1>
<h2>Example <span class="label label-default">New</span></h2>
<h3>Example <span class="label label-default">New</span></h3>
<h4>Example <span class="label label-default">New</span></h4>
<h5>Example <span class="label label-default">New</span></h5>
<h6>Example <span class="label label-default">New</span></h6> Default Label Primary Label Success Label Info Label Warning Label Danger Label
Example
<span class="label label-default">Default Label</span>
<span class="label label-primary">Primary Label</span>
<span class="label label-success">Success Label</span>
<span class="label label-info">Info Label</span>
<span class="label label-warning">Warning Label</span>
<span class="label label-danger">Danger Label</span>
Comments
Post a Comment