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
     ❯   

W3.CSS 表格


分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67
Bo Nilsson 50
Mike Ross 35

W3.CSS 表格类

W3.CSS 提供以下表格类

定义
w3-table HTML 表格容器
w3-striped 条纹表格
w3-border 带边框表格
w3-bordered 带边框线
w3-centered 表格内容居中
w3-hoverable 可悬停表格
w3-table-all 设置所有属性

基本表格

w3-table 类用于显示基本表格

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table">
<tr>
  <th>姓</th>
  <th>名</th>
  <th>分数</th>
</tr>
<tr>
  <td>Jill</td>
  <td>Smith</td>
  <td>50</td>
</tr>
</table>
自己尝试 »


条纹表格

w3-striped 类用于为表格添加斑马条纹

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table w3-striped">
自己尝试 »

带边框表格

w3-bordered 类为每行表格添加底部边框

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table w3-bordered">
自己尝试 »

条纹带边框表格

w3-striped 类和 w3-bordered 类结合使用,创建条纹带边框表格

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table w3-striped w3-bordered">
自己尝试 »

表格周围的边框

w3-border 类用于在表格周围显示边框

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table w3-striped w3-border">
自己尝试 »

提示: w3-border 类不仅用于表格。它可以用于任何 HTML 元素!


全部显示

w3-table-all 类将所有上述类结合在一起

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table-all">
自己尝试 »

翻转条纹

要翻转条纹(从浅灰色开始),请在表格标题行周围添加一个 <thead> 元素。您还需要定义一个用于表格标题行的颜色

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67
Bo Nilson 35

示例

<thead>
  <tr class="w3-light-grey">
    <th>姓</th>
    <th>名</th>
    <th>分数</th>
  </tr>
</thead>
自己尝试 »

居中所有内容

w3-centered 类将表格内容居中

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table-all w3-centered">
自己尝试 »

居中一列

w3-center 类将列内容居中

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table-all">
<tr>
  <th>姓</th>
  <th>名</th>
  <th class="w3-center">分数</th>
</tr>
自己尝试 »

右对齐一列

w3-right-align 类将列内容右对齐

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table-all">
<tr>
  <th>姓</th>
  <th>名</th>
  <th class="w3-right-align">分数</th>
</tr>

自己尝试 »

可悬停表格

w3-hoverable 类在鼠标悬停时添加灰色背景颜色

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table-all w3-hoverable">
自己尝试 »

悬停颜色

如果您想要特定的悬停颜色,请将任何 w3-hover-color 类添加到每个 <tr> 元素中

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<tr class="w3-hover-green">
自己尝试 »

组合 W3.CSS 类

许多 W3.CSS 类可以用于所有 HTML 元素。

例如:边框类、颜色类、字体类、卡片类等等。


 彩色表格标题

使用任何 w3-color 类来显示彩色行

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<tr class="w3-red">
  <th>姓</th>
  <th>名</th>
  <th>分数</th>
</tr>
自己尝试 »

彩色表格

使用任何 w3-color 类来显示彩色表格

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table w3-blue">
自己尝试 »

响应式表格

w3-responsive 类创建响应式表格。表格将在小屏幕上水平滚动。在大型屏幕上查看时,没有任何区别。

调整屏幕大小以查看下面表格的效果

分数 分数 分数 分数 分数 分数 分数 分数 分数 分数 分数
Jill Smith 5000 5000 5000 5000 5000 5000 5000 5000 5000 5000 5000
Eve Jackson 9400 9400 9400 9400 9400 9400 9400 9400 9400 9400 9400
Adam Johnson 6700 6700 6700 6700 6700 6700 6700 6700 6700 6700 6700

示例

<div class="w3-responsive">
  <table class="w3-table-all">
    ... 表格内容 ...
  </table>
</div>
自己尝试 »

表格作为卡片

使用 w3-card 类将表格显示为卡片

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table-all w3-card-4">
自己尝试 »

微型表格

使用 w3-tiny 类显示微型表格

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table-all w3-tiny">
自己尝试 »

小型表格

使用 w3-small 类显示小型表格

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table-all w3-small">
自己尝试 »

大型表格

使用 w3-large 类显示大型表格

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table-all w3-large">
自己尝试 »

超大型表格

使用 w3-xlarge 类显示超大型表格

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table-all w3-xlarge">
自己尝试 »

特大型表格

使用 w3-xxlarge 类显示特大型表格

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table-all w3-xxlarge">
自己尝试 »

巨型表格

使用 w3-xxxlarge 类显示巨型表格

分数
Jill Smith 50
Eve Jackson 94
Adam Johnson 67

示例

<table class="w3-table-all w3-xxxlarge">
自己尝试 »

巨型表格

使用 w3-jumbo 类显示巨型表格

Jill Smith
Eve Jackson
Adam Johnson

示例

<table class="w3-table-all w3-jumbo">
自己尝试 »

×

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.