# Flex布局复习-骰子
参考:[阮一峰:Flex 布局教程:实例篇]: http://www.ruanyifeng.com/blog/2015/07/flex-examples.html
# 单项目
.box {
display: flex;
justify-content: flex-end;
}
1
2
3
4
2
3
4
.box {
display: flex;
justify-content: center;
align-items: flex-end;
}
1
2
3
4
5
2
3
4
5
.box {
display: flex;
justify-content: flex-end;
align-items: flex-end;
}
1
2
3
4
5
2
3
4
5
# 双项目
.box {
display: flex;
flex-direction: column;
justify-content: space-between;
}
1
2
3
4
5
2
3
4
5
.box {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
1
2
3
4
5
6
2
3
4
5
6
.box {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-end;
}
1
2
3
4
5
6
2
3
4
5
6
.box {
display: flex;
}
.item:nth-child(2) {
align-self: center;
}
1
2
3
4
5
6
7
2
3
4
5
6
7
.box {
display: flex;
justify-content: space-between;
}
.item:nth-child(2) {
align-self: flex-end;
}
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
# 三项目
.box {
display: flex;
}
.item:nth-child(2) {
align-self: center;
}
.item:nth-child(3) {
align-self: flex-end;
}
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
# 四项目
.box {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
align-content: space-between;
}
1
2
3
4
5
6
2
3
4
5
6
<div class="box">
<div class="column">
<span class="item"></span>
<span class="item"></span>
</div>
<div class="column">
<span class="item"></span>
<span class="item"></span>
</div>
</div>
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
.box {
display: flex;
flex-wrap: wrap;
align-content: space-between;
}
.column {
flex-basis: 100%;
display: flex;
justify-content: space-between;
}
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
# 六项目
.box {
display: flex;
flex-wrap: wrap;
align-content: space-between;
}
1
2
3
4
5
2
3
4
5
.box {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-content: space-between;
}
1
2
3
4
5
6
2
3
4
5
6
<div class="box">
<div class="row">
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
</div>
<div class="row">
<span class="item"></span>
</div>
<div class="row">
<span class="item"></span>
<span class="item"></span>
</div>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
.box {
display: flex;
flex-wrap: wrap;
}
.row{
flex-basis: 100%;
display:flex;
}
.row:nth-child(2){
justify-content: center;
}
.row:nth-child(3){
justify-content: space-between;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 九项目
.box {
display: flex;
flex-wrap: wrap;
}
1
2
3
4
2
3
4
# 预览
<!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>
</head>
<style>
body {
background-color: #232323;
}
h2 {
color: #e7e7e7;
}
.box {
margin: 16px;
padding: 4px;
width: 104px;
height: 104px;
object-fit: contain;
background-color: #e7e7e7;
border-radius: 10px;
box-shadow:
inset 0 5px white,
inset 0 -5px #bbb,
inset 5px 0 #d7d7d7,
inset -5px 0 #d7d7d7;
}
.item {
display: block;
width: 26px;
height: 26px;
border-radius: 50%;
margin: 4px;
background-color: #333;
box-shadow: inset 0 3px #111, inset 0 -3px #555;
}
.box2 {
display: flex;
justify-content: center;
}
.box3 {
display: flex;
justify-content: flex-end;
}
.box4 {
display: flex;
align-items: center;
}
.box5 {
display: flex;
justify-content: center;
align-items: center;
}
.box6 {
display: flex;
justify-content: center;
align-items: flex-end;
}
.box7 {
display: flex;
justify-content: space-between;
}
.box8 {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.box9 {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.box10 {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-end;
}
/* 二项目 */
.box11 {
display: flex;
}
.box11 .item:nth-child(2) {
align-self: center;
}
.box12 {
display: flex;
justify-content: space-between;
}
.box12 .item:nth-child(2) {
align-self: flex-end;
}
/* 三项目 */
.box13 {
display: flex;
}
.box13 .item:nth-child(2) {
align-self: center;
}
.box13 .item:nth-child(3) {
align-self: flex-end;
}
/* 四项目 */
.box14 {
display: flex;
flex-wrap: wrap;
align-content: space-between;
justify-content: flex-end;
}
.box15 {
display: flex;
flex-wrap: wrap;
align-content: space-between;
}
.box15 .column {
flex-basis: 100%;
display: flex;
justify-content: space-between;
}
.box16 {
display: flex;
flex-wrap: wrap;
align-content: space-between;
}
.box17 {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-content: space-between;
}
.box18 {
display: flex;
flex-wrap: wrap;
}
.box18 .row {
flex-basis: 100%;
display: flex;
}
.box18 .row:nth-child(2) {
justify-content: center;
}
.box18 .row:nth-child(3) {
justify-content: space-between;
}
/* 九项目 */
.box19 {
display: flex;
flex-wrap: wrap;
}
</style>
<body>
<div class="box">
<span class="item"></span>
</div>
<div class="box box2">
<span class="item"></span>
</div>
<div class="box box3">
<span class="item"></span>
</div>
<div class="box box4">
<span class="item"></span>
</div>
<div class="box box5">
<span class="item"></span>
</div>
<div class="box box6">
<span class="item"></span>
</div>
<h2>双项目</h2>
<div class="box box7">
<span class="item"></span>
<span class="item"></span>
</div>
<div class="box box8">
<span class="item"></span>
<span class="item"></span>
</div>
<div class="box box9">
<span class="item"></span>
<span class="item"></span>
</div>
<div class="box box10">
<span class="item"></span>
<span class="item"></span>
</div>
<div class="box box11">
<span class="item"></span>
<span class="item"></span>
</div>
<div class="box box12">
<span class="item"></span>
<span class="item"></span>
</div>
<h2>三项目</h2>
<div class="box box13">
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
</div>
<h2>四项目</h2>
<div class="box box14">
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
</div>
<div class="box box15">
<div class="column">
<span class="item"></span>
<span class="item"></span>
</div>
<div class="column">
<span class="item"></span>
<span class="item"></span>
</div>
</div>
<h2>六项目</h2>
<div class="box box16">
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
</div>
<div class="box box17">
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
</div>
<div class="box box18">
<div class="row">
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
</div>
<div class="row">
<span class="item"></span>
</div>
<div class="row">
<span class="item"></span>
<span class="item"></span>
</div>
</div>
<h2>九项目</h2>
<div class="box box19">
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
</div>
</body>
</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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297