<th> 标签是HTML中用于定义表格中表头单元格的元素。在HTML表格中,<th> 通常用于标识表格列的标题或表头信息。

以下是一个简单的 <th> 示例:
<table border="1">
  <tr>
    <th>姓名</th>
    <th>年龄</th>
  </tr>
  <tr>
    <td>小明</td>
    <td>25</td>
  </tr>
  <tr>
    <td>小红</td>
    <td>30</td>
  </tr>
</table>

在这个例子中,<th> 用于定义表头单元格,标识了表格的两列分别是 "姓名" 和 "年龄"。

<th> 通常会在表头行 (<thead>) 中使用,但也可以在表格的其他地方使用,以提供更语义化的标记。表头行通常包含一个或多个 <th> 元素,而表格主体 (<tbody>) 则包含表格数据单元格 (<td>)。
<table border="1">
  <thead>
    <tr>
      <th>Name</th>
      <th>Age</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>John</td>
      <td>28</td>
    </tr>
    <tr>
      <td>Alice</td>
      <td>24</td>
    </tr>
  </tbody>
</table>

在这个例子中,<thead> 包含了表格的表头行,其中每个列都由 <th> 元素标识。


转载请注明出处:http://www.zyzy.cn/article/detail/3914/HTML