1)表格的一些属性
<table border="1" cellspacing="10" cellpadding="10" align="center"
bgcolor="red">
<caption>学科</caption>
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
</table>
cellspacing="2" 改属性的默认值为2
2)下面这个结构不怎么常用,因为有些浏览器不支持
<thead>1</thead>
<tbody>1</tbody>
<tfoot>1</tfoot>
3)单元格的合并
<tr>
<td colspan="2">1</td> 跨行
<td rowspan="2">1</td> 跨列
</tr>