HTML 参考手册
HTML <tr> 标签
- 表格中的标题 - 本例演示如何显示表格标题。
源代码:
点击运行 »
<h4>表格使用水平标题:</h4> <table border="1"> <tr> <th>Name</th> <th>Telephone</th> </tr> <tr> <td>Bill Gates</td> <td>555 77 854</td> </tr> </table> <h4>表格使用垂直标题:</h4> <table border="1"> <tr> <th>First Name:</th> <td>Bill Gates</td> </tr> <tr> <th>Telephone:</th> <td>555 77 854</td> </tr> </table>
运行结果:
点击运行 »