0
点赞
收藏
分享

微信扫一扫

「HTML和CSS入门指南」thead 标签详解

沐之轻语 2023-06-05 阅读 30

什么是 thead 标签?

        在 HTML 中,thead 标签用于标识表格的表头。使用 thead 标签可以帮助您提高表格的可读性和理解性。


thead 标签的基本语法

以下是 thead 标签的基本语法:

<table>
  <thead>
    <tr>
      <th>姓名</th>
      <th>年龄</th>
      <th>性别</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>张三</td>
      <td>28</td>
      <td>男</td>
    </tr>
    <tr>
      <td>李四</td>
      <td>35</td>
      <td>女</td>
    </tr>
  </tbody>
</table>

其中:

  • <thead> 标签用于标识表格的表头。
  • <tr> 标签用于创建表格中的行。
  • <th> 标签用于创建表头单元格。
  • <tbody> 标签用于标识表格的主体部分。

请注意,

举报

相关推荐

0 条评论