写出css: <div class="box3"> <div class="box3-item"> <img src="image.jpg"> <h3>Subtitle</h3> <h2>Title</h2> <p>Text</p> <button>Button</button> </div> <div class="box3-item"> <img src="image.jpg"> <h3>Subtitle</h3> <h2>Title</h2> <p>Text</p> <button>Button</button> </div> <div class="box3-item"> <img src="image.jpg"> <h3>Subtitle</h3> <h2>Title</h2> <p>Text</p> <button>Button</button> </div> </div>使三个小盒子在大盒子里面水平居中,在同一水平线上
时间: 2024-02-14 18:11:28 浏览: 66
可以使用以下 CSS 代码实现:
```
.box3 {
display: flex;
justify-content: center;
}
.box3-item {
margin: 0 10px;
}
```
这里使用了 Flexbox 布局,将大盒子 `.box3` 设置为 Flex 容器,并使用 `justify-content: center` 让其中的子元素水平居中对齐。而每个小盒子 `.box3-item` 的外边距设置为 `0 10px`,用于让它们之间留有一定的间隔。
相关问题
帮我做一个css+div的关于汽车的网页
好的,我可以给你提供一个简单的示例代码,但由于汽车网页的复杂性和多样性,具体的设计和内容需要根据你的需求和想法进行调整和扩展。请注意,以下代码仅供参考。
HTML 代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>汽车网页</title>
<link rel="stylesheet" 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>
<section id="intro">
<h2>品牌介绍</h2>
<p>这是一段品牌介绍的文字内容,可以随意修改。</p>
<a href="#" class="btn">了解更多</a>
</section>
<section id="models">
<h2>车型展示</h2>
<div id="model-list">
<div class="model-item">
<img src="image/model1.jpg" alt="车型1">
<h3>车型1</h3>
<p>这是车型1的描述信息,可以随意修改。</p>
</div>
<div class="model-item">
<img src="image/model2.jpg" alt="车型2">
<h3>车型2</h3>
<p>这是车型2的描述信息,可以随意修改。</p>
</div>
<div class="model-item">
<img src="image/model3.jpg" alt="车型3">
<h3>车型3</h3>
<p>这是车型3的描述信息,可以随意修改。</p>
</div>
</div>
</section>
<section id="buy">
<h2>购车指南</h2>
<p>这是一段购车指南的文字内容,可以随意修改。</p>
<a href="#" class="btn">查看详情</a>
</section>
</main>
<footer>
<p>版权信息 © 2021 汽车品牌. All Rights Reserved.</p>
</footer>
</body>
</html>
```
CSS 代码:
```css
body {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
background-color: #fff;
}
header {
background-color: #c00;
color: #fff;
padding: 20px;
}
h1 {
margin: 0;
font-size: 32px;
font-weight: 700;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
}
nav li {
display: inline-block;
margin-right: 20px;
}
nav a {
display: block;
padding: 10px;
color: #fff;
text-decoration: none;
}
nav a:hover {
background-color: #fff;
color: #c00;
}
main {
margin: 20px;
}
#intro {
text-align: center;
}
#intro h2 {
font-size: 28px;
font-weight: 700;
margin-bottom: 20px;
}
#intro p {
margin-bottom: 30px;
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #c00;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
.btn:hover {
background-color: #fff;
color: #c00;
}
#models {
margin-top: 50px;
}
#models h2 {
font-size: 28px;
font-weight: 700;
margin-bottom: 20px;
}
#model-list {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.model-item {
flex-basis: 30%;
margin-bottom: 30px;
padding: 20px;
background-color: #f5f5f5;
border-radius: 5px;
box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}
.model-item img {
display: block;
width: 100%;
margin-bottom: 20px;
border-radius: 5px;
}
.model-item h3 {
font-size: 24px;
font-weight: 700;
margin-bottom: 10px;
}
#buy {
margin-top: 50px;
text-align: center;
}
#buy h2 {
font-size: 28px;
font-weight: 700;
margin-bottom: 20px;
}
#buy p {
margin-bottom: 30px;
}
footer {
background-color: #f5f5f5;
padding: 20px;
text-align: center;
}
footer p {
margin: 0;
font-size: 14px;
color: #999;
}
```
上面的代码实现了一个简单的汽车品牌网页,包括导航栏、品牌介绍、车型展示、购车指南和页脚等基本元素。你可以根据自己的需求和想法来修改和扩展这些元素,例如增加更多的页面区块、优化样式和布局、添加交互效果等等。
请参考好客山东网(https://www.sdta.cn/)的布局、样式、动态效果、排版风格、色彩风格,写一个华丽、丰富的html页面,要求包含足够多种类的布局、样式、动态效果,并把代码按照js,html,css分别给出
HTML代码:
```html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>好客山东</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<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>
<div class="banner">
<h1>好客山东</h1>
<p>发现最真实的山东</p>
</div>
</header>
<section class="container">
<div class="card">
<img src="https://cdn.pixabay.com/photo/2016/02/05/19/51/mountains-1188555_960_720.jpg" alt="">
<h2>泰山</h2>
<p>泰山,位于山东省泰安市泰山区境内,五岳之首,海拔1,545米,是国家AAAAA级旅游景区,全国文明风景旅游区,全国文物保护单位。</p>
<a href="#">查看详情</a>
</div>
<div class="card">
<img src="https://cdn.pixabay.com/photo/2016/02/05/19/51/mountains-1188555_960_720.jpg" alt="">
<h2>崂山</h2>
<p>崂山位于中国山东省青岛市东部,胶东半岛南麓,是中国道教文化发祥地,也是不可多得的自然风景区。</p>
<a href="#">查看详情</a>
</div>
<div class="card">
<img src="https://cdn.pixabay.com/photo/2016/02/05/19/51/mountains-1188555_960_720.jpg" alt="">
<h2>蓬莱阁</h2>
<p>蓬莱阁位于山东省烟台市蓬莱市城区,是中国历史文化名城之一,也是中国神话传说中的海上仙山。</p>
<a href="#">查看详情</a>
</div>
</section>
<footer>
<p>版权所有 © 好客山东</p>
</footer>
<script src="script.js"></script>
</body>
</html>
```
CSS代码:
```css
/* reset.css */
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
nav,
ul,
li,
header,
section,
footer {
margin: 0;
padding: 0;
border: 0;
}
/* 公共样式 */
body {
font-family: 'Arial', sans-serif;
background-color: #fff;
color: #222;
}
a {
color: #222;
text-decoration: none;
transition: color 0.3s;
}
a:hover {
color: #9b7dde;
}
.container {
display: flex;
justify-content: space-between;
margin: 50px auto;
max-width: 1200px;
}
.card {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
transition: box-shadow 0.3s;
}
.card:hover {
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
.card img {
max-width: 100%;
margin-bottom: 20px;
}
.card h2 {
margin-bottom: 10px;
}
.banner {
width: 100%;
height: 400px;
background-image: url('https://cdn.pixabay.com/photo/2013/11/15/10/05/hong-kong-210943_960_720.jpg');
background-size: cover;
background-position: center center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.banner h1 {
font-size: 60px;
color: #fff;
text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
margin-bottom: 20px;
}
.banner p {
font-size: 24px;
color: #fff;
text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}
nav {
background-color: #9b7dde;
}
nav ul {
display: flex;
justify-content: space-around;
list-style: none;
height: 50px;
line-height: 50px;
}
nav ul li a {
font-size: 20px;
font-weight: bold;
color: #fff;
transition: color 0.3s;
}
nav ul li a:hover {
color: #fff;
}
footer {
text-align: center;
background-color: #222;
color: #fff;
height: 50px;
line-height: 50px;
}
```
JavaScript代码(空白):
```javascript
// 暂无JavaScript代码
```
效果预览:https://codepen.io/pen/?template=JjRWgpy
注意:由于站点中的图片链接可能会失效,所以请自行替换成自己的图片链接。
阅读全文