<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>商品列表頁面</title>
<style>
body {
font-family: Arial, sans-serif;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 20px;
}
.product {
background-color: #f1f1f1;
border: 1px solid #ccc;
padding: 20px;
margin: 10px;
width: calc(33% - 40px);
box-sizing: border-box;
text-align: center;
}
.product img {
width: 100%;
height: auto;
}
.product h3 {
margin: 0;
}
.product p {
margin: 10px 0;
}
</style>
</head>
<body>
<div class="container">
<div class="product">
<img src="https://via.placeholder.com/300x200" alt="商品圖片">
<h3>商品名稱</h3>
<p>商品描述</p>
<p>價格:¥100</p>
</div>
<div class="product">
<img src="https://via.placeholder.com/300x200" alt="商品圖片">
<h3>商品名稱</h3>
<p>商品描述</p>
<p>價格:¥100</p>
</div>
<!-- 更多商品 -->
</div>
</body>
</html>
這是一個簡單的商品列表頁面的HTML代碼,你可以根據(jù)需要修改和添加更多的商品信息。
本文內(nèi)容根據(jù)網(wǎng)絡(luò)資料整理,出于傳遞更多信息之目的,不代表金鑰匙跨境贊同其觀點和立場。
轉(zhuǎn)載請注明,如有侵權(quán),聯(lián)系刪除。