HTML <caption> 标签
<caption> 标签表示 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>
运行实例点击"运行实例"按钮查看在线实例