forked from w3c/webref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss-lists.json
108 lines (108 loc) · 3.46 KB
/
css-lists.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
{
"spec": {
"title": "CSS Lists and Counters Module Level 3",
"url": "https://www.w3.org/TR/css-lists-3/"
},
"properties": {
"list-style-image": {
"name": "list-style-image",
"value": "<image> | none",
"initial": "none",
"appliesTo": "list items",
"inherited": "yes",
"percentages": "n/a",
"computedValue": "the keyword noneor the computed <image>",
"canonicalOrder": "per grammar",
"animationType": "discrete"
},
"list-style-type": {
"name": "list-style-type",
"value": "<counter-style> | <string> | none",
"initial": "disc",
"appliesTo": "list items",
"inherited": "yes",
"percentages": "n/a",
"computedValue": "specified value",
"canonicalOrder": "per grammar",
"animationType": "discrete"
},
"list-style-position": {
"name": "list-style-position",
"value": "inside | outside",
"initial": "outside",
"appliesTo": "list items",
"inherited": "yes",
"percentages": "n/a",
"computedValue": "keyword, but see prose",
"canonicalOrder": "per grammar",
"animationType": "discrete"
},
"list-style": {
"name": "list-style",
"value": "<'list-style-position'> || <'list-style-image'> || <'list-style-type'>",
"initial": "see individual properties",
"appliesTo": "list items",
"inherited": "see individual properties",
"percentages": "see individual properties",
"computedValue": "see individual properties",
"animationType": "see individual properties",
"canonicalOrder": "per grammar"
},
"marker-side": {
"name": "marker-side",
"value": "match-self | match-parent",
"initial": "match-self",
"appliesTo": "list items",
"inherited": "yes",
"percentages": "n/a",
"computedValue": "specified keyword",
"canonicalOrder": "per grammar",
"animationType": "discrete"
},
"counter-reset": {
"name": "counter-reset",
"value": "[ <counter-name> <integer>? ]+ | none",
"initial": "none",
"appliesTo": "all elements",
"inherited": "no",
"percentages": "n/a",
"computedValue": "the keyword none or a list, each item an identifier paired with an integer",
"canonicalOrder": "per grammar",
"animationType": "by computed value type"
},
"counter-increment": {
"name": "counter-increment",
"value": "[ <counter-name> <integer>? ]+ | none",
"initial": "none",
"appliesTo": "all elements",
"inherited": "no",
"percentages": "n/a",
"computedValue": "the keyword none or a list, each item an identifier paired with an integer",
"canonicalOrder": "per grammar",
"animationType": "by computed value type"
},
"counter-set": {
"name": "counter-set",
"value": "[ <counter-name> <integer>? ]+ | none",
"initial": "none",
"appliesTo": "all elements",
"inherited": "no",
"percentages": "n/a",
"computedValue": "the keyword none or a list, each item an identifier paired with an integer",
"canonicalOrder": "per grammar",
"animationType": "by computed value type"
}
},
"descriptors": {},
"valuespaces": {
"<counter>": {
"value": "<counter()> | <counters()>"
},
"<counter()>": {
"value": "counter( <counter-name>, <counter-style>? )"
},
"<counters()>": {
"value": "counters( <counter-name>, <string>, <counter-style>? )"
}
}
}