tryhtml_table_header 在线代码实例
<h4>表格使用水平标题:</h4>
<table border="1">
<tbody><tr>
<th>Name</th>
<th>Telephone</th>
</tr>
<tr>
<td>Bill Gates</td>
<td>555 77 854</td>
</tr>
</tbody></table>
<h4>表格使用垂直标题:</h4>
<table border="1">
<tbody><tr>
<th>First Name:</th>
<td>Bill Gates</td>
</tr>
<tr>
<th>Telephone:</th>
<td>555 77 854</td>
</tr>
</tbody></table>