商品信息表
!DOCTYPE html>
<html lang="zh-CN">
<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>表格</title>
</head>
<body>
<table border="1px" width="80%" align="center" >
<caption>商品销售属性</caption>
<thead>
<tr align="center" bgcolor="lightblue">
<th>id </th>
<th>业种</th>
<th>品牌名称</th>
<th>款名称</th>
<th>吊牌价</th>
<th>活动价</th>
<th>可售库存</th>
</tr>
</thead>
<tbody>
<tr align="center" >
<td>1</td>
<td rowspan="3">皮具</td>
<td >百丽</td>
<td>乐福鞋</td>
<td>1200元</td>
<td>599元</td>
<td>10件</td>
</tr>
<tr align="center">
<td>2</td>
<!-- <td>皮具</td> -->
<td>哈森</td>
<td>老爹鞋</td>
<td>999元</td>
<td>399元</td>
<td>5件</td>
</tr>
<tr align="center">
<td>3</td>
<!-- <td>皮具</td> -->
<td>天美意</td>
<td>逗逗鞋</td>
<td>1200元</td>
<td>599元</td>
<td>10件</td>
</tr>
<tr align="center">
<td>4</td>
<td rowspan="2">青休</td>
<td>骷髅头</td>
<td>T恤 </td>
<td>1500元</td>
<td>899元</td>
<td>20件</td>
</tr>
<tr align="center">
<td>5</td>
<!-- <td>青休</td> -->
<td>Dickies</td>
<td>工装裤</td>
<td>959元</td>
<td>499元</td>
<td>15件</td>
</tr>
</tbody>
<tfoot>
<tr align="center">
<td colspan="4" >合计:</td>
<!-- <td>乐福鞋</td>
<td>皮具</td>
<td>百丽</td> -->
<td>5858元</td>
<td>3594元</td>
<td>60件</td>
</tr>
</tfoot>
</table>
</body>
</html>