常用标签:
eg1.
<table border="1">
<caption>重要表格</caption>
<tr>
<th>单元</th>
<th>单元</th>
<th>单元</th>
</tr>
<tr>
<td>单元1</td>
<td>单元2</th>
<td>单元3</th>
</tr>
</table>
cellspacing属性用于控制单元格之间的间距
cellpadding属性应用于控制单元格边框与其内容之间的间距
eg.
<table border="1" cellspacing="0" cellpadding="10">
<caption>重要表格</caption>
<tr>
<th>单元</th>
<th>单元</th>
<th>单元</th>
</tr>
<tr>
<td>单元1</td>
<td>单元2</td>
<td>单元3</td>
</tr>
</table>
将bgcolor与background属性加入table中,为表格添加背景颜色与背景图片