用HTML和css写一个淘宝单个商品的页面
时间: 2023-12-17 13:06:10 浏览: 90
html+css+js模仿淘宝搜索商品页面
好的,以下是一个简单的淘宝单个商品页面的 HTML 和 CSS 代码示例:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>淘宝商品详情页</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>淘宝商品详情页</h1>
</header>
<main>
<section class="product-image">
<img src="https://img.alicdn.com/bao/uploaded/i3/2206816847735/O1CN01ZJ5JFt1KONP6ZQWQf_!!0-item_pic.jpg_360x360Q50s50.jpg_.webp" alt="商品图片">
</section>
<section class="product-info">
<h2 class="product-title">Apple iPhone 12 128GB 黑色 移动联通电信5G全网通手机</h2>
<p class="product-price">¥6299.00</p>
<p class="product-desc">全新 Apple A14 芯片,全新平面化边框设计,4GB RAM + 128GB ROM,5G全网通,支持Face ID、NFC等功能。</p>
<button class="add-to-cart-btn">加入购物车</button>
</section>
</main>
<footer>
<p>版权所有 © 淘宝</p>
</footer>
</body>
</html>
```
```css
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
header {
background-color: #FF4200;
color: #fff;
padding: 20px;
text-align: center;
}
main {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 20px;
}
.product-image {
flex: 1 0 360px;
margin-right: 20px;
}
.product-info {
flex: 1 1 500px;
}
.product-title {
font-size: 24px;
font-weight: bold;
margin-top: 0;
margin-bottom: 20px;
}
.product-price {
font-size: 36px;
font-weight: bold;
margin-top: 0;
margin-bottom: 20px;
}
.product-desc {
font-size: 16px;
margin-bottom: 20px;
}
.add-to-cart-btn {
background-color: #FF4200;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.add-to-cart-btn:hover {
background-color: #E53C00;
}
```
这个示例页面包含了商品图片、商品标题、商品价格、商品描述和加入购物车按钮等元素。通过 CSS 样式设置,实现了简单的响应式布局。
注意:这只是一个简单的示例,实际开发中可能需要更多的 HTML 和 CSS 代码来实现更多的功能和样式。
阅读全文