<caption>
优质
小牛编辑
126浏览
2023-12-01
描述 (Description)
HTML
标记用于为表创建标题。每张桌子只能有一个标题。例子 (Example)
<!DOCTYPE html>
<html>
<head>
<title>HTML caption Tag</title>
</head>
<body>
<h2>Cricketers List</h2>
<table width = "100%">
<caption>Indian Cricketers</caption>
<th>Name</th>
<tr>
<td>Sachin Tendulkar</td>
</tr>
<tr>
<td>M S Dhoni</td>
</tr>
<tr>
<td>Suresh Raina</td>
</tr>
<tr>
<td>Virat Kohli</td>
</tr>
</table>
</body>
</html>
全局属性 (Global Attributes)
此标记支持HTML Attribute Reference描述的所有全局属性
事件属性 (Event Attributes)
此标记支持HTML Events Reference中描述的所有事件属性
浏览器支持 (Browser Support)
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |