<!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">
<!-- <link rel="stylesheet" href="E:\PHP Web1\HTML\CH-1\1017\1017\static\css\cart.css"> -->
<title>表格</title>
<style>
table{
width: 2000px;
height: 800px;
border-collapse: collapse;/* 表格间距合并*/
text-align: center;
}
table th,
table td {
border: thin solid #888;
padding: 5px;
}
table caption {
font-size: 1.2em;
margin-bottom: 0.5em;
letter-spacing: 0.5em;
}
table thead,
table tfoot tr [colspan] {
background-color: lightcyan;
}
table + button {
padding: 5px 20px;
letter-spacing: 5px;
margin: 10px 10px 10px 320px;
background-color: violet;
border: none;
cursor: pointer;
}
table + button:hover {
cursor: pointer;
background-color: orangered;
color: #fff;
transition: 0.5s;
}
.green {
background-color: lightgreen;
}
.wheat {
background-color: wheat;
}
</style>
</head>
<body>
<table border="1">
<caption>购物车</caption>
<thead>
<tr>
<th>分类</th>
<th>ID</th>
<th>名称</th>
<th>单价</th>
<th>数量</th>
<th>金额</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="3">数码</td>
<th>5010</th>
<td>电脑</td>
<td>9000</td>
<td>2</td>
<td>18000</td>
</tr>
<tr>
<th>5012</th>
<td>手机</td>
<td>5000</td>
<td>4</td>
<td>20000</td>
</tr>
<tr>
<th>5013</th>
<td>相机</td>
<td>15000</td>
<td>2</td>
<td>30000</td>
</tr>
<tr>
<td rowspan="2">服装</td>
<th>3030</th>
<td>男装</td>
<td>500</td>
<td>2</td>
<td>1000</td>
</tr>
<tr>
<th>3031</th>
<td>女装</td>
<td>1000</td>
<td>5</td>
<td>5000</td>
</tr>
</tbody>
<tfoot>
<tr>
<th colspan="4">总计:</th>
<th>15</th>
<th>74000</th>
</tr>
</tfoot>
</table>
<button>结算</button>
</body>
</html>