table
2025/11/13小于 1 分钟
table
Try it
| Person | Most interest in | Age |
|---|---|---|
| Chris | HTML tables | 22 |
| Average age | 33 | |
Demo
<table>
<caption>
Front-end web developer course 2021
</caption>
<thead>
<tr>
<th> Person </th>
<th> Most interest in </th>
<th> Age </th>
</tr>
</thead>
<tbody>
<tr>
<td> Chris </td>
<td> HTML tables </td>
<td> 22 </td>
</tr>
</tbody>
<tfoot>
<tr>
<th scope="row" colspan="2">Average age</th>
<td>33</td>
</tr>
</tfoot>
</table>相关的元素
| element | function |
|---|---|
| caption | 注解 |
| thead | |
| colgroup | |
| col | |
| th | |
| tbody | |
| tr | |
| td | |
| tfoot |