<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<table border="10" align="center" bordercolor="pink"; cellspacing="0">
<tr>
<td rowspan="8" width="100px"><img src="../../img/dongman.jpg" alt="" width="100px" height="150px"/></td>
<td rowspan="3" width="100px"> </td>
<td rowspan="2" width="100px"> </td>
<td width="100px"> </td>
</tr>
<tr>
<td width="100px"> </td>
</tr>
<tr>
<td rowspan="2" width="100px"> </td>
<td width="100px"> </td>
</tr>
<tr>
<td rowspan="3" width="100px"> </td>
<td width="100px"> </td>
</tr>
<tr>
<td rowspan="2" width="100px"> </td>
<td width="100px"> </td>
</tr>
<tr>
<td width="100px"> </td>
</tr>
</table>
表格如下
<table width="500" align="center" border="1">
<colgroup style="background-color: red;"> <!--前两列为一组-->
<col/> <!--第一列-->
<col/> <!--第二列-->
</colgroup>
<col style="background-color: blue;"/> <!--第三列-->
<caption>表格标题</caption>
<thead>
<tr>
<th>头1</th>
<th>头2</th>
<th>头3</th>
</tr>
</thead>
<tbody>
<tr>
<td>111</td>
<td>111</td>
<td>111</td>
</tr>
<tr>
<td>222</td>
<td>222</td>
<td>222</td>
</tr>
</tbody>
<tbody>
<tr>
<td>111</td>
<td>111</td>
<td>111</td>
</tr>
<tr>
<td>222</td>
<td>222</td>
<td>222</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>尾1</td>
<td>尾2</td>
<td>尾3</td>
</tr>
</tfoot>
</table>
</body>
</html>
表格如下