HTML做四个盒子 盒子宽度都是1800 第一个盒子高度200,背景色为淡蓝色,第二个盒子高度50,背景色为绿色,第三个盒子高500,背景色为白色,第四个盒子高度100,背景色为黄色,第一个盒子内容为头部,第二个为导航,第三个为内容,第四个为页尾,四个盒子全部居中,要用到css
时间: 2024-09-09 17:08:51 浏览: 74
要在HTML中创建四个并列的盒子,每个都有特定的高度、背景颜色和内容,你可以使用HTML的`<div>`元素配合CSS的布局属性来实现。下面是一个示例代码:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<style>
.container {
display: flex;
justify-content: center; /* 使所有盒子水平居中 */
}
.box {
width: 1800px;
margin: 1rem; /* 添加一些间距,可根据需要调整 */
}
.box1 {
height: 200px;
background-color: lightblue;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
padding: 1rem; /* 内容区域边距 */
}
.box1 p {
text-align: center; /* 确保头部内容居中 */
color: black;
font-size: 16px;
}
.box2 {
height: 50px;
background-color: green;
}
.box3 {
height: 500px;
background-color: white;
}
.box4 {
height: 100px;
background-color: yellow;
display: flex;
align-items: center;
justify-content: center;
}
.box4 p {
text-align: center;
color: black;
font-size: 16px;
}
</style>
</head>
<body>
<div class="container">
<div class="box box1">
<p>头部</p>
</div>
<div class="box box2"></div>
<div class="box box3">
<!-- 你可以在这里放具体内容 -->
</div>
<div class="box box4">
<p>页尾</p>
</div>
</div>
</body>
</html>
```
上述代码会创建四个宽度均为1800像素的盒子,分别对应头部、导航、主要内容和页脚,它们各自有指定的高度和背景色。每个盒子的内容都已通过`<p>`标签包含,并设置了居中对齐。
阅读全文