HTML <tr> 标签

定义和用法

<tr> 标签定义 HTML 表格中的行。

<tr> 元素包含一个或多个 <th><td> 元素。

另请参阅:

HTML 教程:HTML 表格

HTML DOM 参考手册:TableRow 对象

CSS 教程:设置表格样式

实例

例子 1

一个简单的三行 HTML 表格;一个标题行和两个数据行:

<table>
  <tr>
    <th>月份</th>
    <th>储蓄</th>
  </tr>
  <tr>
    <td>一月</td>
    <td>¥3400</td>
  </tr>
  <tr>
    <td>二月</td>
    <td>¥4500</td>
  </tr>
</table>

亲自试一试

例子 2

如何对齐 <tr> 中的内容(使用 CSS):

<table style="width:100%">
  <tr>
    <th>月份</th>
    <th>储蓄</th>
  </tr>
  <tr style="text-align:right">
    <td>一月</td>
    <td>¥3400</td>
  </tr>
</table>

亲自试一试

例子 3

如何将背景颜色添加到表格行(使用 CSS):

<table>
  <tr style="background-color:#FF0000">
    <th>月份</th>
    <th>储蓄</th>
  </tr>
  <tr>
    <td>一月</td>
    <td>¥3400</td>
  </tr>
 </table>

亲自试一试

例子 4

如何垂直对齐 <tr> 中的内容(使用 CSS):

<table style="height:200px">
  <tr  style="vertical-align:top">
    <th>月份</th>
    <th>储蓄</th>
  </tr>
  <tr style="vertical-align:bottom">
    <td>一月</td>
    <td>¥3400</td>
  </tr>
</table>

亲自试一试

例子 5

如何创建表格标题:

<table>
  <tr>
    <th>姓名</th>
    <th>电邮</th>
    <th>电话</th>
  </tr>
  <tr>
    <td>Bill Gates</td>
    <td>bill.gates@example.com</td>
    <td>138-1234-5678</td>
  </tr>
</table>

亲自试一试

例子 6

如何创建带有标题的表格:

<table>
  <caption>月份ly savings</caption>
  <tr>
    <th>月份</th>
    <th>储蓄</th>
  </tr>
  <tr>
    <td>一月</td>
    <td>¥3400</td>
  </tr>
  <tr>
    <td>二月</td>
    <td>¥4500</td>
  </tr>
</table>

亲自试一试

例子 7

如何定义跨越多行或多列的表格单元格:

<table>
  <tr>
    <th>姓名</th>
    <th>电邮</th>
    <th colspan="2">电话</th>
  </tr>
  <tr>
    <td>Bill Gates</td>
    <td>bill.gates@example.com</td>
    <td>138-1234-5678</td>
    <td>186-2345-6789</td>
  </tr>
</table>

亲自试一试

全局属性

<tr> 标签还支持 HTML 中的全局属性

事件属性

<tr> 标签还支持 HTML 中的事件属性

默认的 CSS 设置

大多数浏览器将使用以下默认值显示 <tr> 元素:

tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}

浏览器支持

Chrome Edge Firefox Safari Opera
Chrome Edge Firefox Safari Opera
支持 支持 支持 支持 支持