forked from w3c/webref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss-grid-3.json
83 lines (83 loc) · 2.67 KB
/
css-grid-3.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
{
"spec": {
"title": "CSS Grid Layout Module Level 3",
"url": "https://drafts.csswg.org/css-grid-3/"
},
"properties": {
"grid-template-columns": {
"name": "grid-template-columns",
"newValues": "masonry",
"initial": "none",
"appliesTo": "grid containers",
"inherited": "no",
"percentages": "refer to corresponding dimension of the content area",
"computedValue": "the keyword none or the keyword masonry or a computed track list",
"animationType": "see CSS Grid",
"styleDeclaration": [
"grid-template-columns",
"gridTemplateColumns"
]
},
"grid-template-rows": {
"name": "grid-template-rows",
"newValues": "masonry",
"initial": "none",
"appliesTo": "grid containers",
"inherited": "no",
"percentages": "refer to corresponding dimension of the content area",
"computedValue": "the keyword none or the keyword masonry or a computed track list",
"animationType": "see CSS Grid",
"styleDeclaration": [
"grid-template-rows",
"gridTemplateRows"
]
},
"masonry-auto-flow": {
"name": "masonry-auto-flow",
"value": "[ pack | next ] || [definite-first | ordered ]",
"initial": "pack",
"appliesTo": "grid containers with masonry layout",
"inherited": "no",
"percentages": "n/a",
"computedValue": "specified keyword(s)",
"canonicalOrder": "per grammar",
"animationType": "discrete",
"styleDeclaration": [
"masonry-auto-flow",
"masonryAutoFlow"
]
},
"align-tracks": {
"name": "align-tracks",
"value": "[normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>]#",
"initial": "normal",
"appliesTo": "grid containers with masonry layout in their block axis",
"inherited": "no",
"percentages": "n/a",
"computedValue": "specified keyword(s)",
"canonicalOrder": "per grammar",
"animationType": "discrete",
"styleDeclaration": [
"align-tracks",
"alignTracks"
]
},
"justify-tracks": {
"name": "justify-tracks",
"value": "[normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] ]#",
"initial": "normal",
"appliesTo": "grid containers with masonry layout in their inline axis",
"inherited": "no",
"percentages": "n/a",
"computedValue": "specified keyword(s)",
"canonicalOrder": "per grammar",
"animationType": "discrete",
"styleDeclaration": [
"justify-tracks",
"justifyTracks"
]
}
},
"descriptors": {},
"valuespaces": {}
}