<!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>
<style>
p{
margin: 0;
padding: 0;
} //清除p标签默认的间隔,或者将p标签换成div标签
body{
background-color: #f5f5f5;
}
.box{
width: 234px;
height: 300px;
background-color: #ffff;
/* background-color:blue; */
text-align: center;
margin: 0 auto;
}
img{
width: 160px;
}
.product {
height: 25px; //文字顶部到下一行文字的高度
font-size: 14px;
}
.info {
font-size: 12px;
height: 30px;
color: #cccccc;
}
.price{
font-size: 14px;
color: #ffa500;
}
</style>
</head>
<body>
<div class="box">
<img src="./images/car.jpg" alt="平衡车">
<p class="product">九号平衡车</p>
<p class="info">成人的玩具</p>
<p class="price">1999元</p>
</div>
</body>
</html>