forked from w3c/webref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss-flexbox.json
146 lines (146 loc) · 4.58 KB
/
css-flexbox.json
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"spec": {
"title": "CSS Flexible Box Layout Module Level 1",
"url": "https://www.w3.org/TR/css-flexbox-1/"
},
"properties": {
"display": {
"name": "display",
"newValues": "flex | inline-flex"
},
"flex-direction": {
"name": "flex-direction",
"value": "row | row-reverse | column | column-reverse",
"initial": "row",
"appliesTo": "flex containers",
"inherited": "no",
"percentages": "n/a",
"computedValue": "specified keyword",
"canonicalOrder": "per grammar",
"animationType": "discrete"
},
"flex-wrap": {
"name": "flex-wrap",
"value": "nowrap | wrap | wrap-reverse",
"initial": "nowrap",
"appliesTo": "flex containers",
"inherited": "no",
"percentages": "n/a",
"computedValue": "specified keyword",
"canonicalOrder": "per grammar",
"animationType": "discrete"
},
"flex-flow": {
"name": "flex-flow",
"value": "<‘flex-direction’> || <‘flex-wrap’>",
"initial": "see individual properties",
"appliesTo": "see individual properties",
"inherited": "see individual properties",
"percentages": "see individual properties",
"computedValue": "see individual properties",
"animationType": "see individual properties",
"canonicalOrder": "per grammar"
},
"order": {
"name": "order",
"value": "<integer>",
"initial": "0",
"appliesTo": "flex items",
"inherited": "no",
"percentages": "n/a",
"computedValue": "specified integer",
"canonicalOrder": "per grammar",
"animationType": "by computed value type"
},
"flex": {
"name": "flex",
"value": "none | [ <‘flex-grow’> <‘flex-shrink’>? || <‘flex-basis’> ]",
"initial": "0 1 auto",
"appliesTo": "flex items",
"inherited": "no",
"percentages": "see individual properties",
"computedValue": "see individual properties",
"animationType": "by computed value type",
"canonicalOrder": "per grammar"
},
"flex-grow": {
"name": "flex-grow",
"value": "<number>",
"initial": "0",
"appliesTo": "flex items",
"inherited": "no",
"percentages": "n/a",
"computedValue": "specified number",
"canonicalOrder": "per grammar",
"animationType": "by computed value type"
},
"flex-shrink": {
"name": "flex-shrink",
"value": "<number>",
"initial": "1",
"appliesTo": "flex items",
"inherited": "no",
"percentages": "n/a",
"computedValue": "specified value",
"canonicalOrder": "per grammar",
"animationType": "number"
},
"flex-basis": {
"name": "flex-basis",
"value": "content | <‘width’>",
"initial": "auto",
"appliesTo": "flex items",
"inherited": "no",
"percentages": "relative to the flex container’s inner main size",
"computedValue": "specified keyword or a computed <length-percentage> value",
"canonicalOrder": "per grammar",
"animationType": "by computed value type"
},
"justify-content": {
"name": "justify-content",
"value": "flex-start | flex-end | center | space-between | space-around",
"initial": "flex-start",
"appliesTo": "flex containers",
"inherited": "no",
"percentages": "n/a",
"computedValue": "specified keyword",
"canonicalOrder": "per grammar",
"animationType": "discrete"
},
"align-items": {
"name": "align-items",
"value": "flex-start | flex-end | center | baseline | stretch",
"initial": "stretch",
"appliesTo": "flex containers",
"inherited": "no",
"percentages": "n/a",
"computedValue": "specified keyword",
"canonicalOrder": "per grammar",
"animationType": "discrete"
},
"align-self": {
"name": "align-self",
"value": "auto | flex-start | flex-end | center | baseline | stretch",
"initial": "auto",
"appliesTo": "flex items",
"inherited": "no",
"percentages": "n/a",
"computedValue": "specified keyword",
"canonicalOrder": "per grammar",
"animationType": "discrete"
},
"align-content": {
"name": "align-content",
"value": "flex-start | flex-end | center | space-between | space-around | stretch",
"initial": "stretch",
"appliesTo": "multi-line flex containers",
"inherited": "no",
"percentages": "n/a",
"computedValue": "specified keyword",
"canonicalOrder": "per grammar",
"animationType": "discrete"
}
},
"descriptors": {},
"valuespaces": {}
}