花店新品上市页面html+css
时间: 2023-11-05 19:20:27 浏览: 105
好的,以下是一个简单的花店新品上市页面的HTML和CSS示例,供您参考:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>花店新品上市</title>
<style>
/* 设置页面背景色和字体样式 */
body {
background-color: #f5f5f5;
font-family: Arial, sans-serif;
}
/* 设置页面标题样式 */
h1 {
text-align: center;
margin-top: 50px;
font-size: 36px;
color: #333;
}
/* 设置新品展示区域样式 */
#new-products {
display: flex;
justify-content: center;
align-items: flex-start;
flex-wrap: wrap;
margin-top: 50px;
}
/* 设置每个新品卡片样式 */
.product-card {
width: 300px;
margin: 20px;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
border-radius: 5px;
}
/* 设置新品卡片中图片样式 */
.product-image {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 5px;
}
/* 设置新品卡片中标题样式 */
.product-title {
font-size: 24px;
margin-top: 20px;
color: #333;
}
/* 设置新品卡片中描述样式 */
.product-description {
font-size: 16px;
margin-top: 10px;
color: #666;
line-height: 1.5;
}
</style>
</head>
<body>
<h1>花店新品上市</h1>
<div id="new-products">
<div class="product-card">
<img class="product-image" src="https://via.placeholder.com/300x200.png?text=Product+1" alt="Product 1">
<h2 class="product-title">新品名称1</h2>
<p class="product-description">这是新品1的描述。</p>
</div>
<div class="product-card">
<img class="product-image" src="https://via.placeholder.com/300x200.png?text=Product+2" alt="Product 2">
<h2 class="product-title">新品名称2</h2>
<p class="product-description">这是新品2的描述。</p>
</div>
<div class="product-card">
<img class="product-image" src="https://via.placeholder.com/300x200.png?text=Product+3" alt="Product 3">
<h2 class="product-title">新品名称3</h2>
<p class="product-description">这是新品3的描述。</p>
</div>
</div>
</body>
</html>
```
这段代码会创建一个包含三个新品卡片的页面,每个卡片都包括一张图片、一个标题和一段描述。您可以根据需要修改CSS样式和卡片内容,以适应您的具体需求。
阅读全文