<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<table border="1" width="80%" cellspacing="0" cellpadding="5">
<caption>
商品信息表
</caption>
<thead>
<tr>
<th>ID</th>
<th>品类</th>
<th>品名</th>
<th>数量</th>
<th>单价</th>
<th>金额</th>
</tr>
<tr>
<th>1</th>
<th rowspan="2">衣服</th>
<th>冬装</th>
<th>1</th>
<th>100</th>
<th>100</th>
</tr>
<tr>
<th>2</th>
<th>夏装</th>
<th>1</th>
<th>100</th>
<th>100</th>
</tr>
<tr>
<th>3</th>
<th rowspan="2">饮料</th>
<th>可口可乐</th>
<th>1</th>
<th>100</th>
<th>100</th>
</tr>
<th>4</th>
<th>百事可乐</th>
<th>1</th>
<th>100</th>
<th>100</th>
</tr>
</tr >
<th colspan="6" bgcolor="pink">以下为备用物品</th>
</tr>
</tr>
<th>5</th>
<th rowspan="2">数码</th>
<th>相机</th>
<th>1</th>
<th>100</th>
<th>100</th>
</tr>
</tr>
<th>6</th>
<th>镜头</th>
<th>1</th>
<th>100</th>
<th>100</th>
</tr>
<tfoot>
</tr >
<th colspan="4" rowspan="2" bgcolor="pink">合计</th>
<th>平均单价</th>
<th>金额合计</th>
</tr>
</tr >
<th>100</th>
<th>600</th>
</tr>
</tfoot>
</thead>
</table>
</body>
</html>