-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflexboxfroggy.txt
63 lines (63 loc) · 1.72 KB
/
flexboxfroggy.txt
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
/*FLEXBOX FROGGY*/
/*=========================================================================================*/
1)justify-content:flex-end;
---------------------------
2)justify-content:center;
---------------------------
3)justify-content:space-around;
---------------------------
4)justify-content:space-between;
---------------------------
5)align-items:flex-end;
---------------------------
6)align-items:center;
justify-content:center;
---------------------------
7)align-items:flex-end;
justify-content:space-around;
---------------------------
8)flex-direction:row-reverse;
---------------------------
9)flex-direction:column;
---------------------------
10)flex-direction:row-reverse;
justify-content:flex-end;
---------------------------
11)flex-direction:column;
justify-content:flex-end;
---------------------------
12)flex-direction:column-reverse;
justify-content:space-between;
---------------------------
13)justify-content:center;
align-items:flex-end;
flex-direction:row-reverse;
---------------------------
14)order:1;
---------------------------
15)order:-1;
---------------------------
16)align-self:flex-end;
---------------------------
17)order:1;
align-self:flex-end;
---------------------------
18)flex-wrap:wrap;
---------------------------
19)flex-direction:column;
flex-wrap:wrap;
---------------------------
20)flex-flow:column;
---------------------------
21)align-content:flex-start;
---------------------------
22)align-content:flex-end;
---------------------------
23)flex-direction:column-reverse;
align-content:center;
---------------------------
24)flex-direction:column-reverse;
flex-wrap:wrap-reverse;
justify-content:center;
align-content:space-between;
---------------------------