HTML 表標題
HTML表格標題
caption
元素允許您定義一個標題并將其與table
元素相關聯。
align
屬性已過時。
例子
以下代碼顯示了正在使用的caption
元素。
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<table>
<caption>Results of the Survey</caption>
<tbody>
<tr>
<th>Favorite:</th>
<td>500</td>
</tr>
</tbody>
</table>
</body>
</html>
表只能包含一個caption
元素,但不一定是表中包含的第一個元素。