-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfive.html
More file actions
35 lines (35 loc) · 827 Bytes
/
five.html
File metadata and controls
35 lines (35 loc) · 827 Bytes
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
<!--Created by rongzhx on 2017/5/15 0015.-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="common.css">
<style>
.column:nth-child(2){
justify-content: center;
}
.column:nth-child(2) .item{
align-self:center;
}
.column:nth-child(3){
align-items: flex-end;
}
</style>
</head>
<body>
<div class="box">
<div class="column">
<span class="item"></span>
<span class="item"></span>
</div>
<div class="column">
<span class="item"></span>
</div>
<div class="column">
<span class="item"></span>
<span class="item"></span>
</div>
</div>
</body>
</html>