核心知识
表格的整体结构
caption 给表格命名,thead、tbody、tfoot 分组不同性质的行。
- caption 是表格的一部分,不只是视觉标题
- thead 放列标题区域
- tbody 放主要数据,tfoot 可放汇总
<table>
<caption>第一周课程</caption>
<thead>...</thead>
<tbody>...</tbody>
</table>
caption 给表格命名,thead、tbody、tfoot 分组不同性质的行。
<table>
<caption>第一周课程</caption>
<thead>...</thead>
<tbody>...</tbody>
</table>