<html>
<head>
<title>html表格标签演示</title>
<head>
<body>
<table width="200" border="1" cellpadding="2" cellspacing="3">
<caption>商品信息</caption>
<tr>
<th>商品名称</th>
<th>数量</th>
<th>备注</th>
</tr>
<tr align="right" bgcolor="#33FFFF">
<td>雨伞</td>
<td>100</td>
<td rowspan="2">合并列</td>
</tr>
<tr>
<td align="center" valign="middle">皮鞋<td>
<td>200</td>
<tr>
<td colspan="3">合并列</td>
</tr>
</table>
</body>
</html>
cellpadding 是边框与其内容的间隙大小;
cellspacing 是边框与边框之间的间隙大小;
colspan="3" 把三列合并为一列
rowspan="2" 把两行合并为一行
时间: 2024-11-08 20:52:21