表格
<table width="300" border="1" cellspacing="0">
<caption>表格标题</caption>
<thead>
<tr>
<th>姓名</th>
<th>性别</th>
<th>语文</th>
</tr>
</thead>
<tbody>
<tr>
<td>欧阳</td>
<td>男</td>
<td>30</td>
</tr>
<tr>
<td>戴璐</td>
<td>女</td>
<td>10</td>
</tr>
</tbody>
</table>
单元格合并
案例