实现效果:
CSS样式:
<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>
<style>
table {
width: 50%;
margin: 1.5rem auto;
border-collapse: collapse;
border: .1rem solid gray;
}
th {
background: yellow;
height: 1rem;
border: .1rem solid gray;
}
tr {
height: 1rem;
text-align: center;
}
td {
border: .1rem solid gray;
}
</style>
</head>
HTML代码:
<body>
<table>
<tr>
<th>商品名称</th>
<th>数量</th>
<th>单价</th>
<th>小计</th>
<th>操作</th>
</tr>
<tr>
<td>西瓜</td>
<td>
<button>-</button>
<span class