mdn-data 2.0.30 → 2.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -20
- package/css/README.md +40 -0
- package/css/at-rules.json +49 -0
- package/css/definitions.json +1 -0
- package/css/functions.json +561 -0
- package/css/functions.schema.json +45 -0
- package/css/index.js +1 -0
- package/css/properties.json +281 -97
- package/css/properties.schema.json +6 -4
- package/css/selectors.json +45 -0
- package/css/syntaxes.json +3 -0
- package/css/types.json +14 -0
- package/l10n/css.json +80 -69
- package/package.json +1 -1
- package/CHANGELOG.md +0 -66
- package/css/readme.md +0 -32
|
@@ -0,0 +1,561 @@
|
|
|
1
|
+
{
|
|
2
|
+
"attr()": {
|
|
3
|
+
"syntax": "attr( <attr-name> <type-or-unit>? [, <attr-fallback> ]? )",
|
|
4
|
+
"groups": [
|
|
5
|
+
"CSS Generated Content"
|
|
6
|
+
],
|
|
7
|
+
"status": "standard",
|
|
8
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/attr"
|
|
9
|
+
},
|
|
10
|
+
"blur()": {
|
|
11
|
+
"syntax": "blur( <length> )",
|
|
12
|
+
"groups": [
|
|
13
|
+
"Filter Effects"
|
|
14
|
+
],
|
|
15
|
+
"status": "standard",
|
|
16
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/blur"
|
|
17
|
+
},
|
|
18
|
+
"brightness()": {
|
|
19
|
+
"syntax": "brightness( <number-percentage> )",
|
|
20
|
+
"groups": [
|
|
21
|
+
"Filter Effects"
|
|
22
|
+
],
|
|
23
|
+
"status": "standard",
|
|
24
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/brightness"
|
|
25
|
+
},
|
|
26
|
+
"calc()": {
|
|
27
|
+
"syntax": "calc( <calc-sum> )",
|
|
28
|
+
"groups": [
|
|
29
|
+
"CSS Units",
|
|
30
|
+
"CSS Lengths"
|
|
31
|
+
],
|
|
32
|
+
"status": "standard",
|
|
33
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/calc"
|
|
34
|
+
},
|
|
35
|
+
"circle()": {
|
|
36
|
+
"syntax": "circle( [ <shape-radius> ]? [ at <position> ]? )",
|
|
37
|
+
"groups": [
|
|
38
|
+
"CSS Shapes"
|
|
39
|
+
],
|
|
40
|
+
"status": "standard",
|
|
41
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/basic-shape/circle"
|
|
42
|
+
},
|
|
43
|
+
"clamp()": {
|
|
44
|
+
"syntax": "clamp( <calc-sum>#{3} )",
|
|
45
|
+
"groups": [
|
|
46
|
+
"CSS Fonts"
|
|
47
|
+
],
|
|
48
|
+
"status": "standard",
|
|
49
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/clamp"
|
|
50
|
+
},
|
|
51
|
+
"conic-gradient()": {
|
|
52
|
+
"syntax": "conic-gradient( [ from <angle> ]? [ at <position> ]?, <angular-color-stop-list> )",
|
|
53
|
+
"groups": [
|
|
54
|
+
"CSS Backgrounds and Borders",
|
|
55
|
+
"CSS Color"
|
|
56
|
+
],
|
|
57
|
+
"status": "standard",
|
|
58
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient/conic-gradient"
|
|
59
|
+
},
|
|
60
|
+
"contrast()": {
|
|
61
|
+
"syntax": "contrast( [ <number-percentage> ] )",
|
|
62
|
+
"groups": [
|
|
63
|
+
"Filter Effects",
|
|
64
|
+
"CSS Color"
|
|
65
|
+
],
|
|
66
|
+
"status": "standard",
|
|
67
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/contrast"
|
|
68
|
+
},
|
|
69
|
+
"counter()": {
|
|
70
|
+
"syntax": "counter( <custom-ident>, <counter-style>? )",
|
|
71
|
+
"groups": [
|
|
72
|
+
"CSS Lists and Counters"
|
|
73
|
+
],
|
|
74
|
+
"status": "standard",
|
|
75
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/counter"
|
|
76
|
+
},
|
|
77
|
+
"counters()": {
|
|
78
|
+
"syntax": "counters( <custom-ident>, <string>, <counter-style>? )",
|
|
79
|
+
"groups": [
|
|
80
|
+
"CSS Lists and Counters"
|
|
81
|
+
],
|
|
82
|
+
"status": "standard",
|
|
83
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/counters"
|
|
84
|
+
},
|
|
85
|
+
"cross-fade()": {
|
|
86
|
+
"syntax": "cross-fade( <cf-mixing-image> , <cf-final-image>? )",
|
|
87
|
+
"groups": [
|
|
88
|
+
"Filter Effects",
|
|
89
|
+
"CSS Color"
|
|
90
|
+
],
|
|
91
|
+
"status": "standard",
|
|
92
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/cross-fade"
|
|
93
|
+
},
|
|
94
|
+
"drop-shadow()": {
|
|
95
|
+
"syntax": "drop-shadow( <length>{2,3} <color>? )",
|
|
96
|
+
"groups": [
|
|
97
|
+
"Filter Effects",
|
|
98
|
+
"CSS Color"
|
|
99
|
+
],
|
|
100
|
+
"status": "standard",
|
|
101
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/drop-shadow"
|
|
102
|
+
},
|
|
103
|
+
"element()": {
|
|
104
|
+
"syntax": "element( <id-selector> )",
|
|
105
|
+
"groups": [
|
|
106
|
+
"CSS Miscellaneous"
|
|
107
|
+
],
|
|
108
|
+
"status": "standard",
|
|
109
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/element"
|
|
110
|
+
},
|
|
111
|
+
"ellipse()": {
|
|
112
|
+
"syntax": "ellipse( [ <shape-radius>{2} ]? [ at <position> ]? )",
|
|
113
|
+
"groups": [
|
|
114
|
+
"CSS Shapes"
|
|
115
|
+
],
|
|
116
|
+
"status": "standard",
|
|
117
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/basic-shape/ellipse"
|
|
118
|
+
},
|
|
119
|
+
"env()": {
|
|
120
|
+
"syntax": "env( <custom-ident> , <declaration-value>? )",
|
|
121
|
+
"groups": [
|
|
122
|
+
"CSS Box Model"
|
|
123
|
+
],
|
|
124
|
+
"status": "standard",
|
|
125
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/env"
|
|
126
|
+
},
|
|
127
|
+
"fit-content()": {
|
|
128
|
+
"syntax": "fit-content( [ <length> | <percentage> ] )",
|
|
129
|
+
"groups": [
|
|
130
|
+
"CSS Box Model"
|
|
131
|
+
],
|
|
132
|
+
"status": "standard",
|
|
133
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/fit-content"
|
|
134
|
+
},
|
|
135
|
+
"grayscale()": {
|
|
136
|
+
"syntax": "grayscale( <number-percentage> )",
|
|
137
|
+
"groups": [
|
|
138
|
+
"Filter Effects",
|
|
139
|
+
"CSS Color"
|
|
140
|
+
],
|
|
141
|
+
"status": "standard",
|
|
142
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/grayscale"
|
|
143
|
+
},
|
|
144
|
+
"hsl()": {
|
|
145
|
+
"syntax": "hsl( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsl( <hue>, <percentage>, <percentage>, <alpha-value>? )",
|
|
146
|
+
"groups": [
|
|
147
|
+
"CSS Color"
|
|
148
|
+
],
|
|
149
|
+
"status": "standard",
|
|
150
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/hsl"
|
|
151
|
+
},
|
|
152
|
+
"hsla()": {
|
|
153
|
+
"syntax": "hsla( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsla( <hue>, <percentage>, <percentage>, <alpha-value>? )",
|
|
154
|
+
"groups": [
|
|
155
|
+
"CSS Color"
|
|
156
|
+
],
|
|
157
|
+
"status": "nonstandard",
|
|
158
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/hsla"
|
|
159
|
+
},
|
|
160
|
+
"hue-rotate()": {
|
|
161
|
+
"syntax": "hue-rotate( <angle> )",
|
|
162
|
+
"groups": [
|
|
163
|
+
"Filter Effects",
|
|
164
|
+
"CSS Color"
|
|
165
|
+
],
|
|
166
|
+
"status": "standard",
|
|
167
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/hue-rotate"
|
|
168
|
+
},
|
|
169
|
+
"image()": {
|
|
170
|
+
"syntax": "image( <image-tags>? [ <image-src>? , <color>? ]! )",
|
|
171
|
+
"groups": [
|
|
172
|
+
"CSS Images"
|
|
173
|
+
],
|
|
174
|
+
"status": "standard",
|
|
175
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/image/image"
|
|
176
|
+
},
|
|
177
|
+
"image-set()": {
|
|
178
|
+
"syntax": "image-set( <image-set-option># )",
|
|
179
|
+
"groups": [
|
|
180
|
+
"CSS Images"
|
|
181
|
+
],
|
|
182
|
+
"status": "standard",
|
|
183
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/image/image-set"
|
|
184
|
+
},
|
|
185
|
+
"inset()": {
|
|
186
|
+
"syntax": "inset( <length-percentage>{1,4} [ round <'border-radius'> ]? )",
|
|
187
|
+
"groups": [
|
|
188
|
+
"CSS Shapes"
|
|
189
|
+
],
|
|
190
|
+
"status": "standard",
|
|
191
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/basic-shape/inset"
|
|
192
|
+
},
|
|
193
|
+
"invert()": {
|
|
194
|
+
"syntax": "invert( <number-percentage> )",
|
|
195
|
+
"groups": [
|
|
196
|
+
"Filter Effects",
|
|
197
|
+
"CSS Color"
|
|
198
|
+
],
|
|
199
|
+
"status": "standard",
|
|
200
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/invert"
|
|
201
|
+
},
|
|
202
|
+
"leader()": {
|
|
203
|
+
"syntax": "leader( <leader-type> )",
|
|
204
|
+
"groups": [
|
|
205
|
+
"CSS Miscellaneous"
|
|
206
|
+
],
|
|
207
|
+
"status": "nonstandard"
|
|
208
|
+
},
|
|
209
|
+
"linear-gradient()": {
|
|
210
|
+
"syntax": "linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )",
|
|
211
|
+
"groups": [
|
|
212
|
+
"CSS Backgrounds and Borders",
|
|
213
|
+
"CSS Color"
|
|
214
|
+
],
|
|
215
|
+
"status": "standard",
|
|
216
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient/linear-gradient"
|
|
217
|
+
},
|
|
218
|
+
"matrix()": {
|
|
219
|
+
"syntax": "matrix( <number>#{6} )",
|
|
220
|
+
"groups": [
|
|
221
|
+
"CSS Transforms"
|
|
222
|
+
],
|
|
223
|
+
"status": "standard",
|
|
224
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/matrix"
|
|
225
|
+
},
|
|
226
|
+
"matrix3d()": {
|
|
227
|
+
"syntax": "matrix3d( <number>#{16} )",
|
|
228
|
+
"groups": [
|
|
229
|
+
"CSS Transforms"
|
|
230
|
+
],
|
|
231
|
+
"status": "standard",
|
|
232
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/matrix3d"
|
|
233
|
+
},
|
|
234
|
+
"max()": {
|
|
235
|
+
"syntax": "max( <calc-sum># )",
|
|
236
|
+
"groups": [
|
|
237
|
+
"CSS Units",
|
|
238
|
+
"CSS Lengths"
|
|
239
|
+
],
|
|
240
|
+
"status": "standard",
|
|
241
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/max"
|
|
242
|
+
},
|
|
243
|
+
"min()": {
|
|
244
|
+
"syntax": "min( <calc-sum># )",
|
|
245
|
+
"groups": [
|
|
246
|
+
"CSS Units",
|
|
247
|
+
"CSS Lengths"
|
|
248
|
+
],
|
|
249
|
+
"status": "standard",
|
|
250
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/min"
|
|
251
|
+
},
|
|
252
|
+
"minmax()": {
|
|
253
|
+
"syntax": "minmax( [ <length> | <percentage> | min-content | max-content | auto ] , [ <length> | <percentage> | <flex> | min-content | max-content | auto ] )",
|
|
254
|
+
"groups": [
|
|
255
|
+
"CSS Units",
|
|
256
|
+
"CSS Lengths"
|
|
257
|
+
],
|
|
258
|
+
"status": "standard",
|
|
259
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/minmax"
|
|
260
|
+
},
|
|
261
|
+
"oklab()": {
|
|
262
|
+
"syntax": "oklab( [ <percentage> | <number> | none] [ <percentage> | <number> | none] [ <percentage> | <number> | none] [ / [<alpha-value> | none] ]? )",
|
|
263
|
+
"groups": [
|
|
264
|
+
"CSS Color"
|
|
265
|
+
],
|
|
266
|
+
"status": "standard",
|
|
267
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/oklab"
|
|
268
|
+
},
|
|
269
|
+
"oklch()": {
|
|
270
|
+
"syntax": "oklch( [ <percentage> | <number> | none] [ <percentage> | <number> | none] [ <hue> | none] [ / [<alpha-value> | none] ]? )",
|
|
271
|
+
"groups": [
|
|
272
|
+
"CSS Color"
|
|
273
|
+
],
|
|
274
|
+
"status": "standard",
|
|
275
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/oklch"
|
|
276
|
+
},
|
|
277
|
+
"opacity()": {
|
|
278
|
+
"syntax": "opacity( [ <number-percentage> ] )",
|
|
279
|
+
"groups": [
|
|
280
|
+
"Filter Effects",
|
|
281
|
+
"CSS Color"
|
|
282
|
+
],
|
|
283
|
+
"status": "standard",
|
|
284
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/opacity"
|
|
285
|
+
},
|
|
286
|
+
"path()": {
|
|
287
|
+
"syntax": "path( [ <fill-rule>, ]? <string> )",
|
|
288
|
+
"groups": [
|
|
289
|
+
"CSS Shapes",
|
|
290
|
+
"CSS Motion Path"
|
|
291
|
+
],
|
|
292
|
+
"status": "standard",
|
|
293
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/path"
|
|
294
|
+
},
|
|
295
|
+
"paint()": {
|
|
296
|
+
"syntax": "paint( <ident>, <declaration-value>? )",
|
|
297
|
+
"groups": [
|
|
298
|
+
"CSS Backgrounds and Borders"
|
|
299
|
+
],
|
|
300
|
+
"status": "standard",
|
|
301
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/image/paint"
|
|
302
|
+
},
|
|
303
|
+
"perspective()": {
|
|
304
|
+
"syntax": "perspective( <length> )",
|
|
305
|
+
"groups": [
|
|
306
|
+
"CSS Transforms"
|
|
307
|
+
],
|
|
308
|
+
"status": "standard",
|
|
309
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/perspective"
|
|
310
|
+
},
|
|
311
|
+
"polygon()": {
|
|
312
|
+
"syntax": "polygon( <fill-rule>? , [ <length-percentage> <length-percentage> ]# )",
|
|
313
|
+
"groups": [
|
|
314
|
+
"CSS Shapes"
|
|
315
|
+
],
|
|
316
|
+
"status": "standard",
|
|
317
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/basic-shape/polygon"
|
|
318
|
+
},
|
|
319
|
+
"radial-gradient()": {
|
|
320
|
+
"syntax": "radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )",
|
|
321
|
+
"groups": [
|
|
322
|
+
"CSS Backgrounds and Borders",
|
|
323
|
+
"CSS Color"
|
|
324
|
+
],
|
|
325
|
+
"status": "standard",
|
|
326
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient/radial-gradient"
|
|
327
|
+
},
|
|
328
|
+
"ray()": {
|
|
329
|
+
"syntax": "ray( <angle> && <ray-size>? && contain? )",
|
|
330
|
+
"groups": [
|
|
331
|
+
"CSS Motion Path"
|
|
332
|
+
],
|
|
333
|
+
"status": "experimental",
|
|
334
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/ray"
|
|
335
|
+
},
|
|
336
|
+
"repeating-linear-gradient()": {
|
|
337
|
+
"syntax": "repeating-linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )",
|
|
338
|
+
"groups": [
|
|
339
|
+
"CSS Backgrounds and Borders",
|
|
340
|
+
"CSS Color"
|
|
341
|
+
],
|
|
342
|
+
"status": "standard",
|
|
343
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/repeating-linear-gradient"
|
|
344
|
+
},
|
|
345
|
+
"repeating-radial-gradient()": {
|
|
346
|
+
"syntax": "repeating-radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )",
|
|
347
|
+
"groups": [
|
|
348
|
+
"CSS Backgrounds and Borders",
|
|
349
|
+
"CSS Color"
|
|
350
|
+
],
|
|
351
|
+
"status": "standard",
|
|
352
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient/repeating-linear-gradient"
|
|
353
|
+
},
|
|
354
|
+
"rgb()": {
|
|
355
|
+
"syntax": "rgb( <percentage>{3} [ / <alpha-value> ]? ) | rgb( <number>{3} [ / <alpha-value> ]? ) | rgb( <percentage>#{3} , <alpha-value>? ) | rgb( <number>#{3} , <alpha-value>? )",
|
|
356
|
+
"groups": [
|
|
357
|
+
"CSS Color"
|
|
358
|
+
],
|
|
359
|
+
"status": "standard",
|
|
360
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/rgb"
|
|
361
|
+
},
|
|
362
|
+
"rgba()": {
|
|
363
|
+
"syntax": "rgba( <percentage>{3} [ / <alpha-value> ]? ) | rgba( <number>{3} [ / <alpha-value> ]? ) | rgba( <percentage>#{3} , <alpha-value>? ) | rgba( <number>#{3} , <alpha-value>? )",
|
|
364
|
+
"groups": [
|
|
365
|
+
"CSS Color"
|
|
366
|
+
],
|
|
367
|
+
"status": "nonstandard",
|
|
368
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/rgba"
|
|
369
|
+
},
|
|
370
|
+
"rotate()": {
|
|
371
|
+
"syntax": "rotate( [ <angle> | <zero> ] )",
|
|
372
|
+
"groups": [
|
|
373
|
+
"CSS Transforms"
|
|
374
|
+
],
|
|
375
|
+
"status": "standard",
|
|
376
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/rotate"
|
|
377
|
+
},
|
|
378
|
+
"rotate3d()": {
|
|
379
|
+
"syntax": "rotate3d( <number> , <number> , <number> , [ <angle> | <zero> ] )",
|
|
380
|
+
"groups": [
|
|
381
|
+
"CSS Transforms"
|
|
382
|
+
],
|
|
383
|
+
"status": "standard",
|
|
384
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/rotate3d"
|
|
385
|
+
},
|
|
386
|
+
"rotateX()": {
|
|
387
|
+
"syntax": "rotateX( [ <angle> | <zero> ] )",
|
|
388
|
+
"groups": [
|
|
389
|
+
"CSS Transforms"
|
|
390
|
+
],
|
|
391
|
+
"status": "standard",
|
|
392
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/rotateX"
|
|
393
|
+
},
|
|
394
|
+
"rotateY()": {
|
|
395
|
+
"syntax": "rotateY( [ <angle> | <zero> ] )",
|
|
396
|
+
"groups": [
|
|
397
|
+
"CSS Transforms"
|
|
398
|
+
],
|
|
399
|
+
"status": "standard",
|
|
400
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/rotateY"
|
|
401
|
+
},
|
|
402
|
+
"rotateZ()": {
|
|
403
|
+
"syntax": "rotateZ( [ <angle> | <zero> ] )",
|
|
404
|
+
"groups": [
|
|
405
|
+
"CSS Transforms"
|
|
406
|
+
],
|
|
407
|
+
"status": "standard",
|
|
408
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/rotateZ"
|
|
409
|
+
},
|
|
410
|
+
"saturate()": {
|
|
411
|
+
"syntax": "saturate( <number-percentage> )",
|
|
412
|
+
"groups": [
|
|
413
|
+
"Filter Effects",
|
|
414
|
+
"CSS Color"
|
|
415
|
+
],
|
|
416
|
+
"status": "standard",
|
|
417
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/saturate"
|
|
418
|
+
},
|
|
419
|
+
"scale()": {
|
|
420
|
+
"syntax": "scale( <number> , <number>? )",
|
|
421
|
+
"groups": [
|
|
422
|
+
"CSS Transforms"
|
|
423
|
+
],
|
|
424
|
+
"status": "standard",
|
|
425
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/scale"
|
|
426
|
+
},
|
|
427
|
+
"scale3d()": {
|
|
428
|
+
"syntax": "scale3d( <number> , <number> , <number> )",
|
|
429
|
+
"groups": [
|
|
430
|
+
"CSS Transforms"
|
|
431
|
+
],
|
|
432
|
+
"status": "standard",
|
|
433
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/scale3d"
|
|
434
|
+
},
|
|
435
|
+
"scaleX()": {
|
|
436
|
+
"syntax": "scaleX( <number> )",
|
|
437
|
+
"groups": [
|
|
438
|
+
"CSS Transforms"
|
|
439
|
+
],
|
|
440
|
+
"status": "standard",
|
|
441
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/scaleX"
|
|
442
|
+
},
|
|
443
|
+
"scaleY()": {
|
|
444
|
+
"syntax": "scaleY( <number> )",
|
|
445
|
+
"groups": [
|
|
446
|
+
"CSS Transforms"
|
|
447
|
+
],
|
|
448
|
+
"status": "standard",
|
|
449
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/scaleY"
|
|
450
|
+
},
|
|
451
|
+
"scaleZ()": {
|
|
452
|
+
"syntax": "scaleZ( <number> )",
|
|
453
|
+
"groups": [
|
|
454
|
+
"CSS Transforms"
|
|
455
|
+
],
|
|
456
|
+
"status": "standard",
|
|
457
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/scaleZ"
|
|
458
|
+
},
|
|
459
|
+
"skew()": {
|
|
460
|
+
"syntax": "skew( [ <angle> | <zero> ] , [ <angle> | <zero> ]? )",
|
|
461
|
+
"groups": [
|
|
462
|
+
"CSS Transforms"
|
|
463
|
+
],
|
|
464
|
+
"status": "standard",
|
|
465
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/skew"
|
|
466
|
+
},
|
|
467
|
+
"skewX()": {
|
|
468
|
+
"syntax": "skewX( [ <angle> | <zero> ] )",
|
|
469
|
+
"groups": [
|
|
470
|
+
"CSS Transforms"
|
|
471
|
+
],
|
|
472
|
+
"status": "standard",
|
|
473
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/skewX"
|
|
474
|
+
},
|
|
475
|
+
"skewY()": {
|
|
476
|
+
"syntax": "skewY( [ <angle> | <zero> ] )",
|
|
477
|
+
"groups": [
|
|
478
|
+
"CSS Transforms"
|
|
479
|
+
],
|
|
480
|
+
"status": "standard",
|
|
481
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/skewY"
|
|
482
|
+
},
|
|
483
|
+
"sepia()": {
|
|
484
|
+
"syntax": "sepia( <number-percentage> )",
|
|
485
|
+
"groups": [
|
|
486
|
+
"Filter Effects",
|
|
487
|
+
"CSS Color"
|
|
488
|
+
],
|
|
489
|
+
"status": "standard",
|
|
490
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/sepia"
|
|
491
|
+
},
|
|
492
|
+
"target-counter()": {
|
|
493
|
+
"syntax": "target-counter( [ <string> | <url> ] , <custom-ident> , <counter-style>? )",
|
|
494
|
+
"groups": [
|
|
495
|
+
"CSS Lists and Counters"
|
|
496
|
+
],
|
|
497
|
+
"status": "nonstandard"
|
|
498
|
+
},
|
|
499
|
+
"target-counters()": {
|
|
500
|
+
"syntax": "target-counters( [ <string> | <url> ] , <custom-ident> , <string> , <counter-style>? )",
|
|
501
|
+
"groups": [
|
|
502
|
+
"CSS Lists and Counters"
|
|
503
|
+
],
|
|
504
|
+
"status": "nonstandard"
|
|
505
|
+
},
|
|
506
|
+
"target-text()": {
|
|
507
|
+
"syntax": "target-text( [ <string> | <url> ] , [ content | before | after | first-letter ]? )",
|
|
508
|
+
"groups": [
|
|
509
|
+
"CSS Miscellaneous"
|
|
510
|
+
],
|
|
511
|
+
"status": "nonstandard"
|
|
512
|
+
},
|
|
513
|
+
"translate()": {
|
|
514
|
+
"syntax": "translate( <length-percentage> , <length-percentage>? )",
|
|
515
|
+
"groups": [
|
|
516
|
+
"CSS Transforms"
|
|
517
|
+
],
|
|
518
|
+
"status": "standard",
|
|
519
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/translate"
|
|
520
|
+
},
|
|
521
|
+
"translate3d()": {
|
|
522
|
+
"syntax": "translate3d( <length-percentage> , <length-percentage> , <length> )",
|
|
523
|
+
"groups": [
|
|
524
|
+
"CSS Transforms"
|
|
525
|
+
],
|
|
526
|
+
"status": "standard",
|
|
527
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/translate3d"
|
|
528
|
+
},
|
|
529
|
+
"translateX()": {
|
|
530
|
+
"syntax": "translateX( <length-percentage> )",
|
|
531
|
+
"groups": [
|
|
532
|
+
"CSS Transforms"
|
|
533
|
+
],
|
|
534
|
+
"status": "standard",
|
|
535
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/translateX"
|
|
536
|
+
},
|
|
537
|
+
"translateY()": {
|
|
538
|
+
"syntax": "translateY( <length-percentage> )",
|
|
539
|
+
"groups": [
|
|
540
|
+
"CSS Transforms"
|
|
541
|
+
],
|
|
542
|
+
"status": "standard",
|
|
543
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/translateY"
|
|
544
|
+
},
|
|
545
|
+
"translateZ()": {
|
|
546
|
+
"syntax": "translateZ( <length> )",
|
|
547
|
+
"groups": [
|
|
548
|
+
"CSS Transforms"
|
|
549
|
+
],
|
|
550
|
+
"status": "standard",
|
|
551
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/translateZ"
|
|
552
|
+
},
|
|
553
|
+
"var()": {
|
|
554
|
+
"syntax": "var( <custom-property-name> , <declaration-value>? )",
|
|
555
|
+
"groups": [
|
|
556
|
+
"CSS Miscellaneous"
|
|
557
|
+
],
|
|
558
|
+
"status": "standard",
|
|
559
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/var"
|
|
560
|
+
}
|
|
561
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"definitions": {
|
|
3
|
+
"status": {
|
|
4
|
+
"enum": [
|
|
5
|
+
"standard",
|
|
6
|
+
"nonstandard",
|
|
7
|
+
"experimental",
|
|
8
|
+
"obsolete"
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
"mdn_url": {
|
|
12
|
+
"type": "string",
|
|
13
|
+
"pattern": "^https://developer.mozilla.org/docs/"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"type": "object",
|
|
17
|
+
"additionalProperties": {
|
|
18
|
+
"type": "object",
|
|
19
|
+
"additionalProperties": false,
|
|
20
|
+
"required": [
|
|
21
|
+
"syntax",
|
|
22
|
+
"groups",
|
|
23
|
+
"status"
|
|
24
|
+
],
|
|
25
|
+
"properties": {
|
|
26
|
+
"syntax": {
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"groups": {
|
|
30
|
+
"type": "array",
|
|
31
|
+
"minitems": 1,
|
|
32
|
+
"uniqueItems": true,
|
|
33
|
+
"items": {
|
|
34
|
+
"$ref": "definitions.json#/groupList"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"status": {
|
|
38
|
+
"$ref": "#/definitions/status"
|
|
39
|
+
},
|
|
40
|
+
"mdn_url": {
|
|
41
|
+
"$ref": "#/definitions/mdn_url"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|