-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflexbox.css
More file actions
58 lines (57 loc) · 1.06 KB
/
Copy pathflexbox.css
File metadata and controls
58 lines (57 loc) · 1.06 KB
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
body{
display:flex;
border:2px solid black;
justify-content: space-evenly;
min-height: 500px;
align-items: center;
flex-direction: row-reverse;
flex-wrap: wrap;
}
.box1{
display:flex;
justify-content: center;
align-items: center;
width: 200px;
height: 200px;
background-color: coral;
}
.box2{
display:flex;
justify-content: center;
align-items: center;
width: 200px;
height: 200px;
background-color: lightblue;
}
.box3{
display:flex;
justify-content: center;
align-items: center;
width: 200px;
height: 200px;
background-color: lightgreen;
}
.box4{
display:flex;
justify-content: center;
align-items: center;
width: 200px;
height: 200px;
background-color: orange;
}
.box5{
display:flex;
justify-content: center;
align-items: center;
width: 200px;
height: 200px;
background-color: violet;
}
.box6{
display:flex;
justify-content: center;
align-items: center;
width: 200px;
height: 200px;
background-color: yellow;
}