HTML
HTML <caption> 元素
带有标题的表
源代码:
点击运行 »
<table border="1"> <caption>每月存款</caption> <tr> <th>月份</th> <th>存款</th> </tr> <tr> <td>1月</td> <td>¥1000</td> </tr> <tr> <td>2月</td> <td>¥2200</td> </tr> </table>
运行结果:
点击运行 »