-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathflexbox.css
More file actions
48 lines (46 loc) · 861 Bytes
/
flexbox.css
File metadata and controls
48 lines (46 loc) · 861 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
36
37
38
39
40
41
42
43
44
45
46
47
48
.countries {
display: flex;
}
/* Add your own CSS code below */
.countries--first {
width: 62%;
}
.countries--first .country--ethiopia {
align-self: flex-end;
}
.countries--second {
width: 62%;
}
.countries--second .country--brazil {
align-self: center ;
}
.countries--second .country--croatia {
align-self: center;
}
.countries--second .country--ethiopia {
align-self: flex-end;
}
.countries--second .country--laos {
align-self: center;
}
.countries--second .country--uganda {
align-self: center;
}
.countries--third {
width: 62%;
align-items:flex-end;
}
.countries--third .country--brazil {
align-self: flex-start;
}
.countries--third .country--uganda {
align-self: flex-start;
}
.countries--fourth {
width: 62%;
flex-direction: column;
align-items: flex-start;
}
.countries--fourth .country--uganda {
align-self: center;
}