HTML 参考手册
HTML <tr> 标签
一个简单的 HTML 表格,包含两列两行
源代码:
点击运行 »
<table border="1"> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table>
运行结果:
点击运行 »