世界杯预选赛中国队赛程_世界杯多少年一次 - fybstd.com


Bootstrap4 表格

2026-02-28 06:31:35 - fifa世界杯游戏

Bootstrap4 表格

Bootstrap4 基础表格

Bootstrap4 通过 .table 类来设置基础表格的样式,实例如下:

实例

Firstname Lastname Email
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]

尝试一下 »

条纹表格

通过添加 .table-striped 类,您将在 内的行上看到条纹,如下面的实例所示:

实例

Firstname Lastname Email
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]

尝试一下 »

带边框表格

.table-bordered 类可以为表格添加边框

实例

Firstname Lastname Email
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]

尝试一下 »

鼠标悬停状态表格

.table-hover 类可以为表格的每一行添加鼠标悬停效果(灰色背景):

实例

Firstname Lastname Email
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]

尝试一下 »

黑色背景表格

.table-dark 类可以为表格添加黑色背景:

实例

Firstname Lastname Email
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]

尝试一下 »

黑色条纹表格

联合使用 .table-dark 和 .table-striped 类可以创建黑色的条纹表格:

实例

Firstname Lastname Email
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]

尝试一下 »

鼠标悬停效果 - 黑色背景表格

联合使用 .table-dark 和 .table-hover 类可以设置黑色背景表格的鼠标悬停效果:

实例

Firstname Lastname Email
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]

尝试一下 »

无边框表格

.table-borderless 类可以设置一个无边框的表格:

实例

Firstname Lastname Email
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]

尝试一下 »

指定意义的颜色类

通过指定意义的颜色类可以为表格的行或者单元格设置颜色:

实例

Firstname Lastname Email
Default Defaultson [email protected]
Primary Joe [email protected]
Success Doe [email protected]
Danger Moe [email protected]
Info Dooley [email protected]
Warning Refs [email protected]
Active Activeson [email protected]
Secondary Secondson [email protected]
Light Angie [email protected]
Dark Bo [email protected]

尝试一下 »

下表列出了表格颜色类的说明:

类名

描述

.table-primary

蓝色: 指定这是一个重要的操作

.table-success

绿色: 指定这是一个允许执行的操作

.table-danger

红色: 指定这是可以危险的操作

.table-info

浅蓝色: 表示内容已变更

.table-warning

橘色: 表示需要注意的操作

.table-active

灰色: 用于鼠标悬停效果

.table-secondary

灰色: 表示内容不怎么重要

.table-light

浅灰色,可以是表格行的背景

.table-dark

深灰色,可以是表格行的背景

表头颜色

在 Bootstrap v4.0.0-beta.2 中.thead-dark 类用于给表头添加黑色背景, .thead-light 类用于给表头添加灰色背景:

在 Bootstrap v4.0.0-beta 这个版本中,.thead-inverse 类用于给表头添加黑色背景,.thead-default 类用于给表头添加灰色背景。

实例

Firstname Lastname Email
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]

Firstname Lastname Email
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]

尝试一下 »

较小的表格

.table-sm 类用于通过减少内边距来设置较小的表格:

实例

Firstname Lastname Email
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]

尝试一下 »

响应式表格

.table-responsive 类用于创建响应式表格:在屏幕宽度小于 992px 时会创建水平滚动条,如果可视区域宽度大于 992px 则显示不同效果(没有滚动条):

实例

# Firstname Lastname Age City Country Sex Example Example Example Example
1 Anna Pitt 35 New York USA Female Yes Yes Yes Yes

尝试一下 »

你可以通过以下类设定在指定屏幕宽度下显示滚动条:

类名

屏幕宽度

.table-responsive-sm

< 576px

.table-responsive-md

< 768px

.table-responsive-lg

< 992px

.table-responsive-xl

< 1200px

实例

...

尝试一下 »