-
Notifications
You must be signed in to change notification settings - Fork 11
/
css-center-element.html
136 lines (130 loc) · 3.64 KB
/
css-center-element.html
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
* {
padding: 0;
margin: 0;
}
.container {
width: 100%;
height: 40px;
border: 1px solid salmon;
}
/* margin auto 只能水平居中 */
.method-1 {
width: 50px;
height: 30px;
background-color: red;
margin: auto auto;
}
/* 相对定位 + 负边距 */
.method-2 {
width: 50px;
height: 30px;
background-color: blue;
/* div 左上角位于父元素中心 */
position: relative;
left: 50%;
top: 50%;
/* 通过负边距向上移动 height/2、向左移动 width/2,使得 div 中心位于父元素中心 */
margin: -15px 0 0 -25px;
}
/* 相对定位 + 负 transform */
.method-3 {
width: 50px;
height: 30px;
background-color: pink;
/* div 左上角位于父元素中心 */
position: relative;
left: 50%;
top: 50%;
/* 通过 translate 向上移动 height/2、向左移动 width/2,使得 div 中心位于父元素中心 */
transform: translate(-50%, -50%);
}
/* 绝对定位 + margin auto */
.container-4 {
position: relative;
}
.method-4 {
width: 50px;
height: 30px;
background-color: yellow;
/* div 左上角位于父元素中心 */
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
/* 元素居中,margin 自动填充外围区域 */
margin: auto auto;
}
/* 文本设置行高等于高度即可在内部垂直居中 */
.method-5 {
height: 30px;
background-color: aqua;
font-size: 10px;
line-height: 30px;
}
/* 使用 transform 水平居中的同时,使用 vertical-align 居中 */
/* 参考 https://alexzhong22c.github.io/2019/02/05/vertical-align-middle/#%E5%AE%8C%E7%BE%8E%E5%B1%85%E4%B8%AD-%E6%B7%BB%E5%8A%A0%E8%BE%85%E5%8A%A9%E5%85%83%E7%B4%A0 */
.method-6 {
width: 50px;
height: 30px;
position: relative;
transform: translateX(-50%);
left: 50%;
background-color: blueviolet;
display: inline-block;
vertical-align: middle;
}
/* 添加辅助元素从而实现完美居中 */
.method-6-extra {
display: inline-block;
vertical-align: middle;
height: 100%;
}
.container-7 {
display: flex;
justify-content: center; /*子元素水平居中*/
align-items: center; /*子元素垂直居中*/
}
.method-7 {
width: 50px;
height: 30px;
background-color: brown;
}
</style>
</head>
<body>
<h1>Hello world!</h1>
<div class="container">
<div class="method-1"></div>
</div>
<div class="container">
<div class="method-2"></div>
</div>
<div class="container">
<div class="method-3"></div>
</div>
<div class="container container-4">
<div class="method-4"></div>
</div>
<div class="container">
<p class="method-5">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo, at.
</p>
</div>
<div class="container container-6">
<div class="method-6"></div>
<i class="method-6-extra"></i>
</div>
<div class="container container-7">
<div class="method-7"></div>
</div>
</body>
</html>