Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Bootstrap 4 表格


Bootstrap 4 基本表格

一个基本的 Bootstrap 4 表格具有轻微的填充和水平分隔线。

使用 .table 类可以为表格添加基本样式

示例

邮箱
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]
自己尝试 »

条纹行

使用 .table-striped 类可以为表格添加斑马纹

示例

邮箱
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]
自己尝试 »

带边框的表格

使用 .table-bordered 类可以为表格和单元格添加所有边框

示例

邮箱
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]
自己尝试 »


悬停行

使用 .table-hover 类可以为表格行添加悬停效果(灰色背景色)

示例

邮箱
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]
自己尝试 »

黑色/深色表格

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

示例

邮箱
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]
自己尝试 »

深色条纹表格

.table-dark.table-striped 类结合起来,可以创建一个深色条纹表格

示例

邮箱
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]
自己尝试 »

可悬停的深色表格

使用 .table-hover 类可以为表格行添加悬停效果(灰色背景色)

示例

邮箱
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]
自己尝试 »

无边框表格

使用 .table-borderless 类可以移除表格的边框

示例

邮箱
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]
自己尝试 »

上下文类

上下文类可以用来设置整个表格 (<table>)、表格行 (<tr>) 或表格单元格 (<td>) 的颜色。

示例

邮箱
默认 Defaultson [email protected]
主要 Joe [email protected]
成功 Doe [email protected]
危险 Moe [email protected]
信息 Dooley [email protected]
警告 引用 [email protected]
活动 Activeson [email protected]
次要 Secondson [email protected]
浅色 Angie [email protected]
深色 Bo [email protected]
自己尝试 »

可以使用以下上下文类

描述
.table-primary 蓝色:表示重要操作
.table-success 绿色:表示成功或积极的操作
.table-danger 红色:表示危险或潜在的负面操作
.table-info 浅蓝色:表示中性的信息性更改或操作
.table-warning 橙色:表示可能需要关注的警告
.table-active 灰色:将悬停颜色应用于表格行或表格单元格
.table-secondary 灰色:表示略微不重要的操作
.table-light 浅灰色表格或表格行背景
.table-dark 深灰色表格或表格行背景

表格标题颜色

使用 .thead-dark 类可以为表格标题添加黑色背景,使用 .thead-light 类可以为表格标题添加灰色背景

示例

邮箱
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]
邮箱
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]
自己尝试 »

小表格

使用 .table-sm 类可以使表格更小,通过将单元格填充减半

示例

邮箱
John Doe [email protected]
Mary Moe [email protected]
July Dooley [email protected]
自己尝试 »

响应式表格

使用 .table-responsive 类可以为表格添加滚动条(当表格水平方向过大时)

示例

<div class="table-responsive">
  <table class="table">
    ...
  </table>
</div>
自己尝试 »

您还可以根据屏幕宽度来决定何时为表格添加滚动条

屏幕宽度
.table-responsive-sm < 576px
.table-responsive-md < 768px
.table-responsive-lg < 992px
.table-responsive-xl < 1200px

示例

<div class="table-responsive-sm">
  <table class="table">
    ...
  </table>
</div>
自己尝试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.