最近接触表格比较密集,总结一些小知识点。
- HTML <td> 标签的 colspan 属性
colspan 属性规定单元格可横跨的列数。
<table width="100%" 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>
效果如下(下面的两行,分别添加 colspan="2",代表可以横跨两列):