CSS样式代码
目录
/*整体区域*/
.goods-item:hover {
border: solid 1px red;
}
/*相框区域*/
.xk {
border-radius: 4px;
/*圆角边框*/
cursor: pointer;
/*鼠标移动上去,显示手图案*/
}
/*图片区域*/
.img {
width: 250px;
height: 300px;
}
/*价格区域*/
.price {
cursor: pointer;
/*鼠标移动上去,显示手图案*/
font-size: 30px;
color: red;
font-weight: bolder
}
.xiaoshu {
cursor: pointer;
/*鼠标移动上去,显示手图案*/
font-size: 20px;
color: red;
}
/*文案区域*/
.goods-title {
color: dimgrey;
font-size: 15px;
}
HTML代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>第7次课的作业 css练习</title>
<link rel="stylesheet" href="CSS/goods.css">
</head>
<body>
<table>
<tr>
<td>
<div class="goods-item">
<div class="xk">
<img src="images/sj1.png" class="img" />
</div>
<p class="goods-title">
拍拍 苹果【12期免息】Apple iPhone16 苹果16Plus 全新未激活美版有锁手机 iPhone16 粉色 128GB【原版未激活+店保2年】
</p>
<div class="price">
499.<span class="xiaoshu">99</span>$
</div>
</div>
</td>
<td>
<div class="goods-item">
<div class="xk">
<img src="images/sj2.png" class="img" />
</div>
<p class="goods-title">
苹果【现货速发】苹果 iPhone 15 Pro全网通5G 苹果手机apple 苹果15pro 黑色钛金属 6.1寸 256G 店保2年+配件礼包
</p>
<div class="price">
599.<span class="xiaoshu">99</span>$
</div>
</div>
</td>
<td>
<div class="goods-item">
<div class="xk">
<img src="images/sj3.png" class="img" />
</div>
<p class="goods-title">
苹果【现货速发】苹果 iPhone 15 Pro全网通5G 苹果手机apple 苹果15pro 白色钛金属 6.1寸 256G 店保2年+配件礼包
</p>
<div class="price">
699.<span class="xiaoshu">99</span>$
</div>
</div>
</td>
<td>
<div class="goods-item">
<div class="xk">
<img src="images/sj4.png" class="img" />
</div>
<p class="goods-title">
拍拍 苹果【24期免息】Apple iPhone16Promax 苹果16Pro 全新美版有锁 iPhone16Promax 原色 256GB【原版未激活+店保2年】
</p>
<div class="price">
799.<span class="xiaoshu">99</span>$
</div>
</div>
</td>
<td>
<div class="goods-item">
<div class="xk">
<img src="images/sj5.png" class="img" />
</div>
<p class="goods-title">
Apple【0首付24期免息】苹果15iPhone15全新美版有锁全网通5G手机 iPhone15 圣诞节 128G+一年电池免费换新+店保两年
</p>
<div class="price">
899.<span class="xiaoshu">99</span>$
</div>
</div>
</td>
<td>
<div class="goods-item">
<div class="xk">
<img src="images/sj6.png" class="img" />
</div>
<p class="goods-title">
苹果【12期免息】Apple iPhone15 苹果15 全新美版有锁 三网通5G手机 15 6.1英寸 粉色 128GB【原版未激活+店保2年】
</p>
<div class="price">
999.<span class="xiaoshu">99</span>$
</div>
</div>
</td>
</tr>
</table>
</body>
</html>