-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflex布局.html
50 lines (49 loc) · 1.11 KB
/
flex布局.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.flex-box1{
display: flex;
background-color: gainsboro;
flex-direction: row;
justify-content: space-between;
}
.flex-box1 :nth-child(1){
width: 15%;
height: 50px;
background-color: #e85a5e;
}
.flex-box1 :nth-child(2){
width: 15%;
height: 50px;
background-color: aqua;
}
.flex-box1 :nth-child(3){
width: 15%;
height: 50px;
background-color: navajowhite;
}
.flex-box1 :nth-child(4){
width: 15%;
height: 50px;
background-color: rosybrown;
}
.flex-box1 :nth-child(5){
width: 15%;
height: 50px;
background-color: rebeccapurple;
}
</style>
</head>
<body>
<div class="flex-box1">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>