html案例20:商品专栏
时间: 2023-07-01 20:09:18 浏览: 246
以下是一个简单的商品专栏的 HTML 代码示例:
```html
<!DOCTYPE html>
<html>
<head>
<title>商品专栏</title>
<style>
body {
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
font-size: 36px;
margin-bottom: 30px;
}
.item {
border: 1px solid #ccc;
padding: 10px;
margin-bottom: 20px;
display: flex;
align-items: center;
}
.item img {
max-width: 150px;
margin-right: 20px;
}
.item h2 {
font-size: 24px;
margin-bottom: 10px;
}
.item p {
font-size: 18px;
margin-bottom: 10px;
}
.item button {
background-color: #4CAF50;
color: white;
padding: 10px;
border: none;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>商品专栏</h1>
<div class="item">
<img src="https://via.placeholder.com/150x150" alt="商品图片">
<div>
<h2>商品名称</h2>
<p>商品描述</p>
<button>立即购买</button>
</div>
</div>
<div class="item">
<img src="https://via.placeholder.com/150x150" alt="商品图片">
<div>
<h2>商品名称</h2>
<p>商品描述</p>
<button>立即购买</button>
</div>
</div>
<div class="item">
<img src="https://via.placeholder.com/150x150" alt="商品图片">
<div>
<h2>商品名称</h2>
<p>商品描述</p>
<button>立即购买</button>
</div>
</div>
</body>
</html>
```
在这个示例中,我们使用了一个 `<h1>` 元素来显示标题。每个商品都被包裹在一个 `<div>` 元素内,并且给这个 `<div>` 元素添加了一个名为 `item` 的 CSS 类。CSS 样式定义了商品信息的布局和样式,包括商品图片、商品名称、商品描述和购买按钮。每个商品都有一个立即购买按钮,用户可以点击它来购买该商品。
需要注意的是,示例中的商品图片使用了一个占位符图片,你需要将其替换成你自己的商品图片。另外,该示例只包含了三个商品,你可以根据需要添加更多商品。
阅读全文