小码哥的IT人生

HTML <caption> 标签 详解

HTML基础 2022-06-02 09:39:17小码哥的IT人生shichen

HTML <caption> 标签

实例

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

 

完整实例【亲自试一试】:

<html>
<body>
<h4>这个表格有一个标题,以及粗边框:</h4>
<table border="6">
<caption>我的标题</caption>
<tr>
  <td>100</td>
  <td>200</td>
  <td>300</td>
</tr>
<tr>
  <td>400</td>
  <td>500</td>
  <td>600</td>
</tr>
</table>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

浏览器支持

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

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

定义和用法

caption 元素定义表格标题。

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

HTML 与 XHTML 之间的差异

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

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

可选的属性

属性 描述
align
  1. left
  2. right
  3. top
  4. bottom

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

规定标题的对齐方式。

全局属性

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

事件属性

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

TIY 实例

完整实例【带有标题的表格】:

<html>
<body>
<h4>这个表格有一个标题,以及粗边框:</h4>
<table border="6">
<caption>我的标题</caption>
<tr>
  <td>100</td>
  <td>200</td>
  <td>300</td>
</tr>
<tr>
  <td>400</td>
  <td>500</td>
  <td>600</td>
</tr>
</table>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

本例演示一个带标题(caption)的表格

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024