<div class="recommend"> <div> <b style="margin-top: 10px">商品推荐</b> </div> <div> <b style="margin-top: 10px">新品上新</b> </div> <div> <b style="margin-top: 10px">热销商品</b> </div> </div> 怎么让三个div三等分水平分布
时间: 2023-11-11 22:04:22 浏览: 72
你可以使用 Flexbox 或者 Grid 来实现三个 div 水平等分布。
使用 Flexbox:
你可以将这三个 div 放在一个父容器中,并将父容器的 display 属性设置为 flex。然后,给每个 div 设置 flex 属性为 1,这样它们将自动平均分布。
HTML 代码:
```html
<div class="container">
<div class="item">商品推荐</div>
<div class="item">新品上新</div>
<div class="item">热销商品</div>
</div>
```
CSS 代码:
```css
.container {
display: flex;
}
.item {
flex: 1;
}
```
使用 Grid:
你可以将这三个 div 放在一个父容器中,并将父容器的 display 属性设置为 grid,并使用 grid-template-columns 属性设置三个等分的列。
HTML 代码:
```html
<div class="container">
<div class="item">商品推荐</div>
<div class="item">新品上新</div>
<div class="item">热销商品</div>
</div>
```
CSS 代码:
```css
.container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
```
相关问题
做一个校园二手交易网站首页及代码实现,网站的主要功能,包括发布二手商品、搜索商品、浏览商品详情、联系卖家、购买商品等。
首页设计:
1. 标题:校园二手交易网站
2. 导航栏:主页、发布商品、搜索商品、浏览商品、联系卖家、购买商品
3. 搜索框:可以输入商品的关键字进行搜索
4. 轮播图:展示最新发布的几个商品图片及其简介
5. 推荐商品:展示一些精选的商品及其价格和简介
代码实现:
HTML代码:
```
<!DOCTYPE html>
<html>
<head>
<title>校园二手交易网站</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>校园二手交易网站</h1>
<nav>
<ul>
<li><a href="#">主页</a></li>
<li><a href="#">发布商品</a></li>
<li><a href="#">搜索商品</a></li>
<li><a href="#">浏览商品</a></li>
<li><a href="#">联系卖家</a></li>
<li><a href="#">购买商品</a></li>
</ul>
</nav>
</header>
<main>
<div class="search">
<form>
<input type="text" placeholder="请输入商品关键字">
<button type="submit">搜索</button>
</form>
</div>
<div class="slider">
<img src="img/1.jpg" alt="商品1">
<img src="img/2.jpg" alt="商品2">
<img src="img/3.jpg" alt="商品3">
<img src="img/4.jpg" alt="商品4">
<img src="img/5.jpg" alt="商品5">
</div>
<div class="recommend">
<h2>推荐商品</h2>
<ul>
<li>
<a href="#">
<img src="img/6.jpg" alt="商品6">
<p>商品6</p>
<span>¥100</span>
</a>
</li>
<li>
<a href="#">
<img src="img/7.jpg" alt="商品7">
<p>商品7</p>
<span>¥200</span>
</a>
</li>
<li>
<a href="#">
<img src="img/8.jpg" alt="商品8">
<p>商品8</p>
<span>¥300</span>
</a>
</li>
<li>
<a href="#">
<img src="img/9.jpg" alt="商品9">
<p>商品9</p>
<span>¥400</span>
</a>
</li>
<li>
<a href="#">
<img src="img/10.jpg" alt="商品10">
<p>商品10</p>
<span>¥500</span>
</a>
</li>
</ul>
</div>
</main>
<footer>
<p>版权所有 © 校园二手交易网站</p>
</footer>
</body>
</html>
```
CSS代码:
```
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
}
nav {
float: right;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav li {
float: left;
margin-left: 20px;
}
nav a {
color: #fff;
text-decoration: none;
}
nav a:hover {
color: #ffc107;
}
main {
padding: 20px;
}
.search {
text-align: center;
margin-bottom: 20px;
}
.search input[type="text"] {
padding: 10px;
font-size: 16px;
border: none;
border-radius: 5px;
}
.search button {
padding: 10px;
font-size: 16px;
background-color: #ffc107;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.slider {
margin-bottom: 20px;
}
.slider img {
display: block;
margin: 0 auto;
max-width: 100%;
height: auto;
}
.recommend {
margin-bottom: 20px;
}
.recommend h2 {
margin-bottom: 10px;
}
.recommend ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
}
.recommend li {
width: 20%;
margin-right: 2%;
margin-bottom: 20px;
}
.recommend li:last-child {
margin-right: 0;
}
.recommend a {
display: block;
padding: 10px;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 5px;
transition: all 0.5s ease-in-out;
}
.recommend a:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.recommend img {
display: block;
margin: 0 auto;
max-width: 100%;
height: auto;
margin-bottom: 10px;
}
.recommend p {
margin-bottom: 5px;
}
.recommend span {
color: #ff0000;
font-weight: bold;
}
```
以上便是一个校园二手交易网站的首页及其代码实现,主要功能包括发布二手商品、搜索商品、浏览商品详情、联系卖家、购买商品等。可以根据需要进行修改和完善。
用 php 设计一个在线商城的酒类爆款推荐配合CSS样式表,为在线商城设计酒类爆款推荐的效果。
在PHP中设计一个在线商城的酒类爆款推荐功能,我们可以结合HTML、CSS以及PHP代码来实现。首先,创建一个简单的HTML结构,包含酒类商品列表:
```html
<div class="wine-hot-recommend">
<h2>爆款酒类推荐</h2>
<div class="recommendation-container">
<?php foreach ($hotProducts as $product): ?>
<div class="product-item">
<img src="<?php echo $product['image']; ?>" alt="<?php echo $product['name']; ?>">
<h3><?php echo $product['name']; ?></h3>
<p>价格: <?php echo $product['price']; ?> 元</p>
<a href="#" class="add-to-cart">加入购物车</a>
</div>
<?php endforeach; ?>
</div>
</div>
```
然后,我们可以用CSS来美化这个推荐区域,使其看起来更具吸引力:
```css
.wine-hot-recommend {
background-color: #f8f9fa;
padding: 20px;
border-radius: 5px;
}
.product-item {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
width: 30%;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.product-item img {
width: 100%;
height: auto;
margin-right: 20px;
object-fit: cover;
}
.product-item h3 {
font-size: 18px;
color: #343a40;
}
.add-to-cart {
background-color: #007bff;
color: white;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
```
阅读全文