表格单元横跨两列的表格:
<table border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td colspan="2">January</td>
</tr>
<tr>
<td colspan="2">February</td>
</tr>
</table>

<td colspan="value">
| 值 | 描述 |
|---|---|
| number |
设置单元格可横跨的列数。 注释:colspan="0" 指示浏览器横跨到列组的最后一列。 |
原文:http://www.cnblogs.com/mr-wuxiansheng/p/7476224.html