HTML <caption> 标签

caption 元素定义表格标题。

caption 标签必须紧随 table 标签之后。您只能对每个表格定义一个标题。通常这个标题会被居中于表格之上。

 

1. 范例

<table border="1">
  <caption>Monthly savings</caption>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</table>

我要试一试

 

2. 浏览器支持

元素 Chrome IE Firefox Safari Opera
<caption> Yes Yes Yes Yes Yes

所有浏览器都支持 <caption> 标签。

 

3. HTML 与 XHTML 之间的差异

在 HTML 4.01 中,caption 元素的 align 属性是不被赞成使用的。

在 XHTML 1.0 Strict DTD 中,caption 元素的 align 属性是不被支持的。

 

4. 可选的属性

属性 描述
align
  • left
  • right
  • top
  • bottom

不赞成使用。请使用样式取而代之。

规定标题的对齐方式。

 

5. 全局属性

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

 

6. 事件属性

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

 

7. TIY 范例

HTML <center> 标签:对其所包括的文本进行水平居中。所有浏览器都支持 <center> 标签。请使用 CSS 样式来居中文本!