-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathcss-grid-3.json
More file actions
91 lines (91 loc) · 3.28 KB
/
css-grid-3.json
File metadata and controls
91 lines (91 loc) · 3.28 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
{
"spec": {
"title": "CSS Grid Layout Module Level 3",
"url": "https://drafts.csswg.org/css-grid-3/"
},
"properties": [
{
"name": "display",
"newValues": "grid-lanes | inline-grid-lanes",
"values": [
{
"name": "grid-lanes",
"prose": "This value causes an element to generate a block-level grid lanes container box.",
"href": "https://drafts.csswg.org/css-grid-3/#valdef-display-grid-lanes",
"type": "value",
"value": "grid-lanes"
},
{
"name": "inline-grid-lanes",
"prose": "This value causes an element to generate an inline-level grid lanes container box.",
"href": "https://drafts.csswg.org/css-grid-3/#valdef-display-inline-grid-lanes",
"type": "value",
"value": "inline-grid-lanes"
}
],
"styleDeclaration": [
"display"
]
},
{
"name": "flow-tolerance",
"href": "https://drafts.csswg.org/css-grid-3/#propdef-flow-tolerance",
"value": "normal | <length-percentage> | infinite",
"initial": "normal",
"appliesTo": "grid lanes containers",
"inherited": "no",
"percentages": "relative to the grid-axis content box size of the grid lanes container",
"computedValue": "a computed <length-percentage> value",
"canonicalOrder": "per grammar",
"animationType": "as length",
"values": [
{
"name": "<length-percentage>",
"prose": "Specifies the tie threshold for the grid lanes container. Placement positions are considered to be equally good (“tied”) if they are within the specified distance from the shortest position.",
"href": "https://drafts.csswg.org/css-grid-3/#valdef-flow-tolerance-length-percentage",
"type": "value",
"value": "<length-percentage>"
},
{
"name": "normal",
"prose": "Resolves to a used value of 1em in grid lanes layout and a used value of 0 in all other layout modes.",
"href": "https://drafts.csswg.org/css-grid-3/#valdef-flow-tolerance-normal",
"type": "value",
"value": "normal"
},
{
"name": "infinite",
"prose": "Specifies an infinite tie threshold. This makes items distribute themselves strictly in order, without considering the length of the tracks at all.",
"href": "https://drafts.csswg.org/css-grid-3/#valdef-flow-tolerance-infinite",
"type": "value",
"value": "infinite"
}
],
"styleDeclaration": [
"flow-tolerance",
"flowTolerance"
]
}
],
"atrules": [],
"selectors": [],
"values": [
{
"name": "<auto-repeat>",
"href": "https://drafts.csswg.org/css-grid-3/#typedef-auto-repeat",
"type": "type",
"value": "repeat( [ auto-fill | auto-fit ] , [ <line-names>? <track-size> ]+ <line-names>? )"
}
],
"warnings": [
{
"msg": "Dangling value",
"name": "normal",
"prose": "The initial value of this property is normal, which determines the orientation from the grid-template-* properties:",
"href": "https://drafts.csswg.org/css-grid-3/#valdef-grid-auto-flow-normal",
"type": "value",
"value": "normal",
"for": "grid-auto-flow"
}
]
}