<table>
<!--表头-->
<thead>
<th>
</th>
</thead>
<!--表格底部-->
<tfoot>
</tfoot>
<!--表格主体信息-->
<tbody>
<tr>
<td>
</td>
</tr>
</tbody>
</table>
tr:一行
th td:单元格th:头部说明信息,用在thead
表格内容垂直居中:vertical-align: center
表格内容水平居中:text-align: center; margin: 0 auto
<table>
<!--表头-->
<thead>
<th>
</th>
</thead>
<!--表格底部-->
<tfoot>
</tfoot>
<!--表格主体信息-->
<tbody>
<tr>
<td>
</td>
</tr>
</tbody>
</table>
tr:一行
th td:单元格
th:头部说明信息,用在thead
表格内容垂直居中:vertical-align: center
表格内容水平居中:text-align: center; margin: 0 auto