HTML 标签

HTML <caption> 标签

主题:HTML5 标签参考上一页|下一页

说明

<caption> 标签定义表格的标题。 标题文本应描述表格的性质。 caption 标签只允许紧跟在 <table> 开始标签之后。 一个 <table> 元素只能包含一个 <caption> 元素。

下表总结了此标签的使用上下文和版本历史。

Placement: Inline
Content: 内嵌和文本
开始/结束标签: 开始标签: required, 结束标签:required
版本: HTML 3.2, 4, 4.01, 5

语法

<caption> 标签的基本语法如下:

HTML / XHTML: <caption> ... </caption>

下面的示例显示了 <caption> 标签的作用。

<table>
    <caption>User Details</caption>
    <thead>
        <tr>
            <th>No.</th>
            <th>Name</th>
            <th>Email</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>1</td>
            <td>John Carter</td>
            <td>johncarter@mail.com</td>
        </tr>
        <tr>
            <td>2</td>
            <td>Peter Parker</td>
            <td>peterparker@mail.com</td>
        </tr>
        <tr>
            <td>3</td>
            <td>John Rambo</td>
            <td>johnrambo@mail.com</td>
        </tr>
    </tbody>
</table>

标签特定属性

下表显示了特定于 <caption> 标签的属性。

属性 说明
align top
bottom
left
right
Obsolete 指定标题相对于表格的位置。

全局属性

与所有其他 HTML 标签一样, <caption> 标签支持 HTML5 中的全局属性


事件属性

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


浏览器兼容性

所有主要的现代浏览器都支持 <caption> 标签。

Browsers Icon

基本支持—

  • Firefox 1+
  • Google Chrome 1+
  • Internet Explorer 4+
  • Apple Safari 1+
  • Opera 4+

进一步阅读

请参阅以下教程: HTML 表格.

相关标签: <table>.

Advertisements