创建表格
<table> 表格标签
<tr> 行标签
<td></td> 单元格标签
</tr>
</table>
tr下只能放td标签 ,td下可以放其他标签
表格属性
表头标签
<table> 表格标签
<tr> 行标签
<th></th> 表头标签
</tr>
<tr> 行标签
<td></td> 单元格标签
</tr>
</table>
表格结构
表头,主体
<table> 表格标签
<thead>
<tr> 行标签
<th></th> 表头标签
</tr>
</thead>
<tbody>
<tr> 行标签
<td></td> 单元格标签
</tr>
</tbody>
</table>
表格标题
Caption
<table>
<caption></caption>
<tr></tr>
</table>