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 5 表格


基本表格

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

.table 类为表格添加基本样式


条纹行

.table-striped 类为表格添加斑马条纹


带边框的表格

.table-bordered 类在表格和单元格的所有边框上添加边框



悬停行

.table-hover 类在表格行上添加悬停效果(灰色背景色)


黑色/深色表格

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


深色条纹表格

结合 .table-dark.table-striped 创建一个深色条纹表格


可悬停深色表格

.table-hover 类在表格行上添加悬停效果(灰色背景色)


无边框表格

.table-borderless 类从表格中删除边框


上下文类

上下文类 可用于为整个表格 (<table>)、表格行 (<tr>) 或表格单元格 (<td>) 着色。

示例

默认 Defaultson [email protected]
主要 Joe [email protected]
成功 Doe [email protected]
危险 Moe [email protected]
信息 Dooley [email protected]
警告 Refs [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 深灰色表格或表格行背景

表格标题颜色

您也可以使用任何上下文类来仅为表格标题添加背景颜色


小型表格

.table-sm 类通过将单元格填充减少一半来使表格更小


响应式表格

.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
.table-responsive-xxl < 1400px

示例

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

你知道吗?

W3.CSS 是 Bootstrap 5 的绝佳替代品。

W3.CSS 更小、更快,使用更简单。

如果您想学习 W3.CSS,请访问我们的 W3.CSS 教程


×

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.