-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathflexbox.css
More file actions
103 lines (103 loc) · 1.08 KB
/
flexbox.css
File metadata and controls
103 lines (103 loc) · 1.08 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
.FBH,
.FBV {
display: flex;
}
.FBV {
flex-direction: column;
}
.FBAS {
align-items: flex-start;
}
.FBAC {
align-items: center;
}
.FBAE {
align-items: flex-end;
}
.FBAST {
align-items: stretch;
}
.FBAB {
align-items: baseline;
}
.FBJS {
justify-content: flex-start;
}
.FBJC {
justify-content: center;
}
.FBJE {
justify-content: flex-end;
}
.FBJ {
justify-content: space-between;
}
.FBJB {
justify-content: space-between;
}
.FBJA {
justify-content: space-around;
}
.FBAS-M {
align-content: flex-start;
}
.FBAC-M {
align-content: center;
}
.FBAE-M {
align-content: flex-end;
}
.FBAST-M {
align-content: stretch;
}
.FBAB {
align-content: space-between;
}
.FBAA {
align-content: space-around;
}
.FBAS-S {
align-self: flex-start;
}
.FBAC-S {
align-self: center;
}
.FBAE-S {
align-self: flex-end;
}
.FBAB-S {
align-self: baseline;
}
.FBAST-S {
align-self: stretch;
}
.FB1 {
flex: 1;
}
.FB2 {
flex: 2;
}
.FB3 {
flex: 3;
}
.FB4 {
flex: 4;
}
.FB5 {
flex: 5;
}
.FB6 {
flex: 6;
}
.FB7 {
flex: 7;
}
.FB8 {
flex: 8;
}
.FB9 {
flex: 9;
}
.FB10 {
flex: 10;
}