帮我用html写一个购物网页的购物车页面,要求有css和j
时间: 2024-02-18 11:03:08 浏览: 147
好的,下面是一个简单的购物车页面的HTML代码,包含CSS样式。
```html
<!DOCTYPE html>
<html>
<head>
<title>购物车</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: 50px auto;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0,0,0,.2);
}
h1 {
font-size: 28px;
text-align: center;
margin-bottom: 30px;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
th, td {
padding: 10px;
border: 1px solid #ccc;
text-align: center;
}
th {
background-color: #f2f2f2;
}
td img {
max-width: 100px;
max-height: 100px;
}
.total {
font-size: 24px;
text-align: right;
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: background-color .2s ease-in-out;
}
.btn:hover {
background-color: #0062cc;
}
</style>
</head>
<body>
<div class="container">
<h1>购物车</h1>
<table>
<thead>
<tr>
<th>商品</th>
<th>单价</th>
<th>数量</th>
<th>小计</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<img src="https://via.placeholder.com/100x100" alt="商品图片">
<p>商品名称</p>
</td>
<td>¥100.00</td>
<td>
<input type="number" min="1" value="1">
</td>
<td>¥100.00</td>
<td>
<button class="btn">删除</button>
</td>
</tr>
<tr>
<td>
<img src="https://via.placeholder.com/100x100" alt="商品图片">
<p>商品名称</p>
</td>
<td>¥100.00</td>
<td>
<input type="number" min="1" value="1">
</td>
<td>¥100.00</td>
<td>
<button class="btn">删除</button>
</td>
</tr>
<tr>
<td colspan="3" class="total">总计</td>
<td colspan="2" class="total">¥200.00</td>
</tr>
</tbody>
</table>
<button class="btn">结算</button>
</div>
</body>
</html>
```
这是一个简单的购物车页面,包含一个商品列表和一个总计,在每个商品行中可以编辑数量和删除商品。CSS样式包含了页面整体的布局和一些元素的样式。你可以根据需要进行调整和修改。
阅读全文