HTML 表格:数据展示
html · beginner · 15-20 min · Step 1/5HTML 表格
语义化表格结构
<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>
| 标签 | 用途 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|