要求:
html代码:
<!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">
<title>Document</title>
<link rel="stylesheet" href="./作业.css"
</head>
<body>
<div class="box">
<a href="#">
<img src="./202305241112_ecb14876904f09f3cbc605350a02eff0.webp" alt="" width="160px" height="160px">
<h3>Xiaomi Civi3</h3>
<p>仿生双眸 天生出色</p>
<div>2499元起</div>
</a>
</div>
</body>
</html>
css代码:
.box {
width: 234px;
height: 300px;
background-color: pink;text-align: center;
}
a {
text-decoration: none;
}
h3{
color: black;
font-weight: 400;
font-size: 14px;
}
p {
color: #b0b0b0;
font-size: 12px;
}
.box a div {
font-size: 14px;
color: orange;
}
结果图如下: