HTML <th> 标签
HTML <th> 标签
实例
普通的 HTML 表格,包含两行两列:
<table border="1">
  <tr>
    <th>Company</th>
    <th>Address</th>
  </tr>
  <tr>
    <td>Apple, Inc.</td>
    <td>1 Infinite Loop Cupertino, CA 95014</td>
  </tr>
</table>
普通的 HTML 表格,包含两行两列:
<table border="1">
  <tr>
    <th>Company</th>
    <th>Address</th>
  </tr>
  <tr>
    <td>Apple, Inc.</td>
    <td>1 Infinite Loop Cupertino, CA 95014</td>
  </tr>
</table>
