HTML 参考手册
HTML <th> 标签
- 带有标题的表格 - 本例演示一个带标题(caption)的表格。
源代码:
点击运行 »
<table border="1"> <caption>Monthly savings</caption> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$50</td> </tr> </table>
运行结果:
点击运行 »