<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-secondary">Secondary</button>
<button type="button" class="btn btn-success">Success</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-warning">Warning</button>
<button type="button" class="btn btn-info">Info</button>
<button type="button" class="btn btn-light">Light</button>
<button type="button" class="btn btn-dark">Dark</button>
<button type="button" class="btn btn-link">Link</button>
如果您不希望按钮文本换行,可以将
.text-nowrap
类添加到按钮。在 Sass 中,您可以设置
$btn-white-space: nowrap
为禁用每个按钮的文本换行。
这些
.btn
类旨在与
<button>
元素一起使用。但是,您也可以在
<a>
或
<input>
元素上使用这些类(尽管某些浏览器可能会应用略有不同的呈现)。
当在用于触发页面内功能(如折叠内容)的元素上使用按钮类时
<a>
,而不是链接到当前页面中的新页面或部分时,应为这些链接提供
role="button"
适当的目的,以将其目的传达给辅助技术,例如屏幕阅读器。
<a class="btn btn-primary" href="#" role="button">Link</a>
<button class="btn btn-primary" type="submit">Button</button>
<input class="btn btn-primary" type="button" value="Input">
<input class="btn btn-primary" type="submit" value="Submit">
<input class="btn btn-primary" type="reset" value="Reset">
需要一个按钮,但又不需要它们带来的厚重背景色?将默认修饰符类替换
.btn-outline-*
为删除任何按钮上的所有背景图像和颜色的修饰符类。
<button type="button" class="btn btn-outline-primary">Primary</button>
<button type="button" class="btn btn-outline-secondary">Secondary</button>
<button type="button" class="btn btn-outline-success">Success</button>
<button type="button" class="btn btn-outline-danger">Danger</button>
<button type="button" class="btn btn-outline-warning">Warning</button>
<button type="button" class="btn btn-outline-info">Info</button>
<button type="button" class="btn btn-outline-light">Light</button>
<button type="button" class="btn btn-outline-dark">Dark</button>
一些按钮样式使用相对较浅的前景色,并且应该只在深色背景上使用,以便有足够的对比度。
喜欢更大或更小的按钮?添加
.btn-lg
或
.btn-sm
用于其他尺寸。
<button type="button" class="btn btn-primary btn-lg">Large button</button>
<button type="button" class="btn btn-secondary btn-lg">Large button</button>
<button type="button" class="btn btn-primary btn-sm">Small button</button>
<button type="button" class="btn btn-secondary btn-sm">Small button</button>
您甚至可以使用 CSS 变量滚动您自己的自定义大小:
自定义按钮
<button type="button" class="btn btn-primary"
style="--bs-btn-padding-y: .25rem; --bs-btn-padding-x: .5rem; --bs-btn-font-size: .75rem;">
Custom button
</button>
通过向任何元素添加
disabled
布尔属性使按钮看起来不活动。
<button>
禁用按钮已
pointer-events: none
应用于,防止触发悬停和活动状态。
<button type="button" class="btn btn-primary" disabled>Primary button</button>
<button type="button" class="btn btn-secondary" disabled>Button</button>
<button type="button" class="btn btn-outline-primary" disabled>Primary button</button>
<button type="button" class="btn btn-outline-secondary" disabled>Button</button>
使用该元素的禁用按钮的
<a>
行为有点不同:
<a>
s 不支持该
disabled
属性,因此您必须添加
.disabled
该类以使其在视觉上显示为已禁用。
包含一些面向未来的样式以禁用所有
pointer-events
锚按钮。
使用的禁用按钮
<a>
应包含
aria-disabled="true"
向辅助技术指示元素状态的属性。
使用的禁用按钮
<a>
不应
包含该
href
属性。
<a class="btn btn-primary disabled" role="button" aria-disabled="true">Primary link</a>
<a class="btn btn-secondary disabled" role="button" aria-disabled="true">Link</a>
为了涵盖必须将
href
属性保留在禁用链接上的情况,
.disabled
该类用于
pointer-events: none
尝试禁用
<a>
s 的链接功能。请注意,此 CSS 属性尚未针对 HTML 进行标准化,但所有现代浏览器都支持它。此外,即使在支持 的浏览器中
pointer-events: none
,键盘导航也不会受到影响,这意味着有视力的键盘用户和辅助技术用户仍然能够激活这些链接。所以为了安全起见,除了 之外
aria-disabled="true"
,还在这些链接上包含一个
tabindex="-1"
属性以防止它们接收键盘焦点,并使用自定义 JavaScript 完全禁用它们的功能。
<a href="#" class="btn btn-primary disabled" tabindex="-1" role="button" aria-disabled="true">Primary link</a>
<a href="#" class="btn btn-secondary disabled" tabindex="-1" role="button" aria-disabled="true">Link</a>
结合我们的显示和间隙实用程序,创建响应式堆栈的全宽“块按钮”,如 Bootstrap 4 中的按钮。通过使用实用程序而不是特定于按钮的类,我们可以更好地控制间距、对齐和响应行为。
<div class="d-grid gap-2">
<button class="btn btn-primary" type="button">Button</button>
<button class="btn btn-primary" type="button">Button</button>
</div>
在这里,我们创建了一个响应式变体,从垂直堆叠的按钮开始直到
md
断点,在断点处
.d-md-block
替换
.d-grid
类,从而使
gap-2
实用程序无效。调整浏览器大小以查看它们的变化。
<div class="d-grid gap-2 d-md-block">
<button class="btn btn-primary" type="button">Button</button>
<button class="btn btn-primary" type="button">Button</button>
</div>
您可以使用网格列宽度类调整块按钮的宽度。例如,对于半角“阻止按钮”,使用
.col-6
. 也将其水平居中
.mx-auto
。
<div class="d-grid gap-2 col-6 mx-auto">
<button class="btn btn-primary" type="button">Button</button>
<button class="btn btn-primary" type="button">Button</button>
</div>
其他实用程序可用于调整水平按钮的对齐方式。在这里,我们采用了之前的响应式示例,并在按钮上添加了一些 flex 实用程序和边距实用程序,以便在按钮不再堆叠时右对齐按钮。
<div class="d-grid gap-2 d-md-flex justify-content-md-end">
<button class="btn btn-primary me-md-2" type="button">Button</button>
<button class="btn btn-primary" type="button">Button</button>
</div>
按钮插件允许您创建简单的开/关切换按钮。
在视觉上,这些切换按钮与
相同。然而,它们通过辅助技术以不同的方式传达:屏幕阅读器将宣布复选框切换为“已选中”/“未选中”(因为,尽管它们的外观,它们基本上仍然是复选框),而这些切换按钮将被宣布为“按钮”/“按下按钮”。这两种方法之间的选择将取决于您正在创建的切换类型,以及切换作为复选框或实际按钮宣布时对用户是否有意义。
<button type="button" class="btn btn-primary" data-bs-toggle="button">Toggle button</button>
<button type="button" class="btn btn-primary active" data-bs-toggle="button" aria-pressed="true">Active toggle button</button>
<button type="button" class="btn btn-primary" disabled data-bs-toggle="button">Disabled toggle button</button>
<a href="#" class="btn btn-primary" role="button" data-bs-toggle="button">Toggle link</a>
<a href="#" class="btn btn-primary active" role="button" data-bs-toggle="button" aria-pressed="true">Active toggle link</a>
<a class="btn btn-primary disabled" aria-disabled="true" role="button" data-bs-toggle="button">Disabled toggle link</a>