热门商品展示 | 优质产品推荐 | 优惠促销
<!DOCTYPE html>
<html>
<head>
<title>热门商品展示</title>
<style>
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
<pre><code> .item {
margin: 20px;
padding: 20px;
border: 1px solid grey;
border-radius: 10px;
width: 300px;
height: 400px;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.item img {
max-width: 100%;
max-height: 70%;
border-radius: 10px;
}
.item h3 {
margin: 10px 0;
font-size: 20px;
text-align: center;
}
.item p {
margin: 0;
font-size: 18px;
font-weight: bold;
}
.item button {
padding: 10px;
border: none;
border-radius: 5px;
background-color: #4CAF50;
color: white;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
.item button:hover {
background-color: #3e8e41;
}
</style>
</code></pre>
</head>
<body>
<div class='container'>
<div class='item'>
<img src='https://via.placeholder.com/300x200.png?text=Product+1' alt='Product 1'>
<h3>Product 1</h3>
<p>$10.99</p>
<button>Add to Cart</button>
</div>
<div class='item'>
<img src='https://via.placeholder.com/300x200.png?text=Product+2' alt='Product 2'>
<h3>Product 2</h3>
<p>$15.99</p>
<button>Add to Cart</button>
</div>
<div class='item'>
<img src='https://via.placeholder.com/300x200.png?text=Product+3' alt='Product 3'>
<h3>Product 3</h3>
<p>$12.99</p>
<button>Add to Cart</button>
</div>
<div class='item'>
<img src='https://via.placeholder.com/300x200.png?text=Product+4' alt='Product 4'>
<h3>Product 4</h3>
<p>$8.99</p>
<button>Add to Cart</button>
</div>
<div class='item'>
<img src='https://via.placeholder.com/300x200.png?text=Product+5' alt='Product 5'>
<h3>Product 5</h3>
<p>$14.99</p>
<button>Add to Cart</button>
</div>
<div class='item'>
<img src='https://via.placeholder.com/300x200.png?text=Product+6' alt='Product 6'>
<h3>Product 6</h3>
<p>$9.99</p>
<button>Add to Cart</button>
</div>
</div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lLe3 著作权归作者所有。请勿转载和采集!