跳至主要内容 跳至文档导航

徽章的文档和示例,我们的计数和标签组件很小。

示例

徽章通过使用相对字体大小和em单位来缩放以匹配父元素的大小。从 v5 开始,徽章不再具有链接的焦点或悬停样式。

标题

示例标题

示例标题

示例标题

示例标题

示例标题
示例标题
html
<h1>Example heading <span class="badge text-bg-secondary">New</span></h1>
<h2>Example heading <span class="badge text-bg-secondary">New</span></h2>
<h3>Example heading <span class="badge text-bg-secondary">New</span></h3>
<h4>Example heading <span class="badge text-bg-secondary">New</span></h4>
<h5>Example heading <span class="badge text-bg-secondary">New</span></h5>
<h6>Example heading <span class="badge text-bg-secondary">New</span></h6>

按钮

徽章可以用作链接或按钮的一部分来提供计数器。

html
<button type="button" class="btn btn-primary">
  Notifications <span class="badge text-bg-secondary">4</span>
</button>

请注意,根据徽章的使用方式,它们可能会让屏幕阅读器和类似辅助技术的用户感到困惑。虽然徽章的样式提供了对其用途的视觉提示,但这些用户只会看到徽章的内容。根据具体情况,这些徽章可能看起来像句子、链接或按钮末尾的随机附加单词或数字。

除非上下文很清楚(如“通知”示例,其中理解“4”是通知数),请考虑在视觉上隐藏的附加文本中包含附加上下文。

定位

使用实用程序修改.badge并将其定位在链接或按钮的角落。

html
<button type="button" class="btn btn-primary position-relative">
  Inbox
  <span class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-danger">
    99+
    <span class="visually-hidden">unread messages</span>
  </span>
</button>

您还可以将 .badge 类替换为更多没有计数的实用程序,以获得更通用的指示符。

html
<button type="button" class="btn btn-primary position-relative">
  Profile
  <span class="position-absolute top-0 start-100 translate-middle p-2 bg-danger border border-light rounded-circle">
    <span class="visually-hidden">New alerts</span>
  </span>
</button>

背景颜色

在 v5.2.0 中添加

使用 我们的 .text-bg-{color} 帮助程序设置具有对比前景 colorbackground-color。以前需要手动配对您选择的 .text-{color}.bg-{color} 实用程序进行样式设置,如果您愿意,您仍然可以使用它们。

主要 次要 成功 危险 警告 信息 浅色 深色
html
<span class="badge text-bg-primary">Primary</span>
<span class="badge text-bg-secondary">Secondary</span>
<span class="badge text-bg-success">Success</span>
<span class="badge text-bg-danger">Danger</span>
<span class="badge text-bg-warning">Warning</span>
<span class="badge text-bg-info">Info</span>
<span class="badge text-bg-light">Light</span>
<span class="badge text-bg-dark">Dark</span>
辅助功能提示:仅使用颜色添加含义只会提供视觉指示,而不会传达给屏幕阅读器等辅助技术的用户。请确保含义从内容本身(例如,具有 足够 色彩对比度 的可见文本)中显而易见,或通过其他方式(例如,使用 .visually-hidden 类隐藏的附加文本)包含在内。

药丸徽章

使用 .rounded-pill 实用程序类使徽章更圆,并具有更大的 border-radius

主要 次要 成功 危险 警告 信息 浅色 深色
html
<span class="badge rounded-pill text-bg-primary">Primary</span>
<span class="badge rounded-pill text-bg-secondary">Secondary</span>
<span class="badge rounded-pill text-bg-success">Success</span>
<span class="badge rounded-pill text-bg-danger">Danger</span>
<span class="badge rounded-pill text-bg-warning">Warning</span>
<span class="badge rounded-pill text-bg-info">Info</span>
<span class="badge rounded-pill text-bg-light">Light</span>
<span class="badge rounded-pill text-bg-dark">Dark</span>

CSS

变量

在 v5.2.0 中添加

作为 Bootstrap 不断发展的 CSS 变量方法的一部分,徽章现在在 .badge 上使用本地 CSS 变量,以增强实时自定义。CSS 变量的值通过 Sass 设置,因此 Sass 自定义仍然受支持。

--#{$prefix}badge-padding-x: #{$badge-padding-x};
--#{$prefix}badge-padding-y: #{$badge-padding-y};
@include rfs($badge-font-size, --#{$prefix}badge-font-size);
--#{$prefix}badge-font-weight: #{$badge-font-weight};
--#{$prefix}badge-color: #{$badge-color};
--#{$prefix}badge-border-radius: #{$badge-border-radius};

Sass 变量

$badge-font-size:                   .75em;
$badge-font-weight:                 $font-weight-bold;
$badge-color:                       $white;
$badge-padding-y:                   .35em;
$badge-padding-x:                   .65em;
$badge-border-radius:               var(--#{$prefix}border-radius);