📜  Bootstrap 中表的上下文类是什么?(1)

📅  最后修改于: 2023-12-03 15:29:39.109000             🧑  作者: Mango

Bootstrap中表的上下文类

在Bootstrap中,表的上下文类是用于给表格添加颜色和样式的类。上下文类能使表格在UI上更加显眼和易于阅读。Bootstrap表格上下文类可以应用在<table><thead><tbody><tfoot>甚至<tr><td>元素上。

常用的表上下文类

以下是Bootstrap中可用的表上下文类:

  • .table-primary
  • .table-secondary
  • .table-success
  • .table-danger
  • .table-warning
  • .table-info
  • .table-light
  • .table-dark
  • .table-active
  • .table-striped
  • .table-hover
  • .table-borderless
Table context classes

下面是常用的table上下文类的样式演示:

Class | Sample ------|------- .table-primary |

Primary
.table-secondary |
Secondary
.table-success |
Success
.table-danger |
Danger
.table-warning |
Warning
.table-info |
Info
.table-light |
Light
.table-dark |
Dark

我们也可以组合使用上下文类:

Primary hover
Table responsive classes

Bootstrap中还有一个上下文类用于显示响应式表格,可以在大屏幕下水平滚动:

  • .table-responsive
  • .table-responsive-md
  • .table-responsive-sm
  • .table-responsive-lg
  • .table-responsive-xl

使用示例:

...
总结

通过使用Bootstrap中的上下文类,我们可以快速地为表格添加颜色和样式,使其更易于阅读和呈现。同时也可以使用响应式上下文类来满足不同屏幕设备的需求。