Fork me on GitHub

页面整体布局(一列固定宽度且居中、上下通栏)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
/*清除内外边距*/
* {
margin: 0;
padding: 0;
color: #fff;
}

.top, .bottom {
width: 100%;
height: 80px;
line-height: 80px; /*行高 文字垂直居中*/
margin-bottom: 10px;
background-color: #ADB9BE;
text-align: center; /*文字水平居中*/
}

/*1.一列 宽度固定 且垂直居中 */
.head, .banner, .main, .footer {
width: 960px;
margin: 10px auto; /*让盒子左右垂直居中对齐*/
text-align: center; /*文字水平居中*/
}

.head, .footer {
height: 50px;
line-height: 50px;
background-color: #A7A7DB;
}

.banner {
height: 80px;
line-height: 80px;
background-color: #D6BCFF;
}

.main {
height: 300px;
line-height: 300px;
background-color: #E5DEEB;
}
</style>
</head>
<body>
<!--顶部通栏-->
<div class="top">顶部通栏</div>

<!-- 一列 宽度固定 且垂直居中 -->
<div class="head">head</div>
<div class="banner">banner</div>
<div class="main">main</div>
<div class="footer">footer</div>

<!--底部通栏-->
<div class="bottom">底部通栏</div>
</body>
</html>
------------- The End -------------

本文标题:页面整体布局(一列固定宽度且居中、上下通栏)

文章作者:White

发布时间:2018年09月01日 - 22:09

最后更新:2018年11月01日 - 10:11

原始链接:http://yoursite.com/2018/09/01/Page-Layout1/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。