首页 > 代码库 > 表格的标准格式

表格的标准格式

表格的标准结构
<table>
<thead>
<tr>
<td></td>
<td></td>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
<tfoot>
<tr>
<td></td>
<td></td>
</tr>
</tfoot>
</table>

table>tr*3>td*3
<table border="1" width="500" height="300" aligh="center">

<caption>表头<caption>

ctrl+鼠标左键 集体输入
colspan 同一行单元格合并
rowspan 同一列单元格合并

表格标题、边框颜色、内容垂直对齐
<th></th> 标题(颜色加粗)
bordercolor="red" 边框颜色
内容垂直对齐方式
valign="top"/"middle"/"bottom"

细线表格

表格的标准格式