<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>table</title>
</head>
<body>
<table border="1" style="width:300px;">
<caption>这是一个table</caption>
<colgroup style="background:red;" span="1">
<col>
<col style="backgroud:red;">
</colgroup>
<thead> 在表头
<tr>
<!-- tr代表行 th是标题行,td是内容行,都是连接的 -->
<th rowspan="4">基本情况</th>
<th>一</th>
<th>二</th>
<th>三</th>
</tr>
</thead>
<tr>
<!-- tr代表行 th是标题行,td是内容行,都是连接的 -->
<th>shelton</th>
<th>jim</th>
<th>sherlock</th>
</tr>
<tr>
<!-- tr代表行 th是标题行,td是内容行,都是连接的 -->
<th>shelton</th>
<th>jim</th>
<th>sherlock</th>
</tr>
<tfoot>
<tr >
<td colspan="3">三列</td>
</tr>
</tfoot>
</table>
</body>
</html>