🧪 Frontend Lab
交互式前端学习实验室

HTML 表格:数据展示

html · beginner · 15-20 min · Step 1/5

HTML 表格

语义化表格结构

<table>
  <caption>2024 课程价格表</caption>
  <thead>
    <tr>
      <th>课程</th>
      <th>价格</th>
      <th>时长</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Web 开发</td>
      <td>$999</td>
      <td>12 周</td>
    </tr>
  </tbody>
  <tfoot>
    <tr>
      <td colspan="3">* 价格含 GST</td>
    </tr>
  </tfoot>
</table>
标签用途
表头(列标题)
表体(数据行)
表尾(合计/备注)
表格标题(无障碍必备)
标题单元格
colspan/rowspan合并列/行