forked from w3c/webref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
css-display.json
43 lines (43 loc) · 1.34 KB
/
css-display.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
{
"spec": {
"title": "CSS Display Module Level 3",
"url": "https://www.w3.org/TR/css-display-3/"
},
"properties": {
"display": {
"name": "display",
"value": "[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy>",
"initial": "inline",
"appliesTo": "all elements",
"inherited": "no",
"percentages": "n/a",
"computedValue": "see prose in a variety of specs",
"canonicalOrder": "per grammar",
"animationType": "not animatable",
"styleDeclaration": [
"display"
]
}
},
"descriptors": {},
"valuespaces": {
"<display-outside>": {
"value": "block | inline | run-in"
},
"<display-inside>": {
"value": "flow | flow-root | table | flex | grid | ruby"
},
"<display-listitem>": {
"value": "<display-outside>? && [ flow | flow-root ]? && list-item"
},
"<display-internal>": {
"value": "table-row-group | table-header-group | table-footer-group | table-row | table-cell | table-column-group | table-column | table-caption | ruby-base | ruby-text | ruby-base-container | ruby-text-container"
},
"<display-box>": {
"value": "contents | none"
},
"<display-legacy>": {
"value": "inline-block | inline-table | inline-flex | inline-grid"
}
}
}