mdn-data 2.14.0 → 2.16.0
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/css/at-rules.json +72 -37
- package/css/at-rules.schema.json +4 -2
- package/css/definitions.json +17 -13
- package/css/functions.json +115 -90
- package/css/properties.json +280 -346
- package/css/properties.schema.json +3 -1
- package/css/selectors.json +253 -74
- package/css/selectors.schema.json +2 -1
- package/css/syntaxes.json +114 -39
- package/css/types.json +1 -10
- package/css/units.json +0 -1
- package/css/units.schema.json +2 -1
- package/l10n/css.json +9 -0
- package/package.json +1 -1
package/css/functions.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"anchor()": {
|
|
21
21
|
"syntax": "anchor( <anchor-name>? && <anchor-side>, <length-percentage>? )",
|
|
22
22
|
"groups": [
|
|
23
|
-
"CSS Positioning"
|
|
23
|
+
"CSS Anchor Positioning"
|
|
24
24
|
],
|
|
25
25
|
"status": "experimental",
|
|
26
26
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/anchor"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"anchor-size()": {
|
|
29
29
|
"syntax": "anchor-size( [ <anchor-name> || <anchor-size> ]? , <length-percentage>? )",
|
|
30
30
|
"groups": [
|
|
31
|
-
"CSS Positioning"
|
|
31
|
+
"CSS Anchor Positioning"
|
|
32
32
|
],
|
|
33
33
|
"status": "experimental",
|
|
34
34
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/anchor-size"
|
|
@@ -63,13 +63,13 @@
|
|
|
63
63
|
"attr()": {
|
|
64
64
|
"syntax": "attr( <attr-name> <type-or-unit>? [, <attr-fallback> ]? )",
|
|
65
65
|
"groups": [
|
|
66
|
-
"CSS
|
|
66
|
+
"CSS Values and Units"
|
|
67
67
|
],
|
|
68
68
|
"status": "standard",
|
|
69
69
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/attr"
|
|
70
70
|
},
|
|
71
71
|
"blur()": {
|
|
72
|
-
"syntax": "blur( <length
|
|
72
|
+
"syntax": "blur( <length>? )",
|
|
73
73
|
"groups": [
|
|
74
74
|
"Filter Effects"
|
|
75
75
|
],
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/blur"
|
|
78
78
|
},
|
|
79
79
|
"brightness()": {
|
|
80
|
-
"syntax": "brightness( <number
|
|
80
|
+
"syntax": "brightness( [ <number> | <percentage> ]? )",
|
|
81
81
|
"groups": [
|
|
82
82
|
"Filter Effects"
|
|
83
83
|
],
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/calc-size"
|
|
104
104
|
},
|
|
105
105
|
"circle()": {
|
|
106
|
-
"syntax": "circle(
|
|
106
|
+
"syntax": "circle( <radial-size>? [ at <position> ]? )",
|
|
107
107
|
"groups": [
|
|
108
108
|
"CSS Shapes"
|
|
109
109
|
],
|
|
@@ -119,20 +119,34 @@
|
|
|
119
119
|
"status": "standard",
|
|
120
120
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/clamp"
|
|
121
121
|
},
|
|
122
|
+
"color()": {
|
|
123
|
+
"syntax": "color( [ from <color> ]? <colorspace-params> [ / [ <alpha-value> | none ] ]? )",
|
|
124
|
+
"groups": [
|
|
125
|
+
"CSS Color"
|
|
126
|
+
],
|
|
127
|
+
"status": "standard",
|
|
128
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/color"
|
|
129
|
+
},
|
|
130
|
+
"color-mix()": {
|
|
131
|
+
"syntax": "color-mix( <color-interpolation-method> , [ <color> && <percentage [0,100]>? ]#{2})",
|
|
132
|
+
"groups": [
|
|
133
|
+
"CSS Color"
|
|
134
|
+
],
|
|
135
|
+
"status": "standard",
|
|
136
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/color-mix"
|
|
137
|
+
},
|
|
122
138
|
"conic-gradient()": {
|
|
123
139
|
"syntax": "conic-gradient( [ from <angle> ]? [ at <position> ]?, <angular-color-stop-list> )",
|
|
124
140
|
"groups": [
|
|
125
|
-
"CSS
|
|
126
|
-
"CSS Color"
|
|
141
|
+
"CSS Images"
|
|
127
142
|
],
|
|
128
143
|
"status": "standard",
|
|
129
144
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient/conic-gradient"
|
|
130
145
|
},
|
|
131
146
|
"contrast()": {
|
|
132
|
-
"syntax": "contrast( [ <number
|
|
147
|
+
"syntax": "contrast( [ <number> | <percentage> ]? )",
|
|
133
148
|
"groups": [
|
|
134
|
-
"Filter Effects"
|
|
135
|
-
"CSS Color"
|
|
149
|
+
"Filter Effects"
|
|
136
150
|
],
|
|
137
151
|
"status": "standard",
|
|
138
152
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/contrast"
|
|
@@ -165,17 +179,15 @@
|
|
|
165
179
|
"cross-fade()": {
|
|
166
180
|
"syntax": "cross-fade( <cf-mixing-image> , <cf-final-image>? )",
|
|
167
181
|
"groups": [
|
|
168
|
-
"
|
|
169
|
-
"CSS Color"
|
|
182
|
+
"CSS Images"
|
|
170
183
|
],
|
|
171
184
|
"status": "standard",
|
|
172
185
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/cross-fade"
|
|
173
186
|
},
|
|
174
187
|
"drop-shadow()": {
|
|
175
|
-
"syntax": "drop-shadow( <length>{2,3}
|
|
188
|
+
"syntax": "drop-shadow( [ <color>? && <length>{2,3} ] )",
|
|
176
189
|
"groups": [
|
|
177
|
-
"Filter Effects"
|
|
178
|
-
"CSS Color"
|
|
190
|
+
"Filter Effects"
|
|
179
191
|
],
|
|
180
192
|
"status": "standard",
|
|
181
193
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/drop-shadow"
|
|
@@ -183,13 +195,13 @@
|
|
|
183
195
|
"element()": {
|
|
184
196
|
"syntax": "element( <id-selector> )",
|
|
185
197
|
"groups": [
|
|
186
|
-
"CSS
|
|
198
|
+
"CSS Images"
|
|
187
199
|
],
|
|
188
200
|
"status": "experimental",
|
|
189
201
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/element"
|
|
190
202
|
},
|
|
191
203
|
"ellipse()": {
|
|
192
|
-
"syntax": "ellipse(
|
|
204
|
+
"syntax": "ellipse( <radial-size>? [ at <position> ]? )",
|
|
193
205
|
"groups": [
|
|
194
206
|
"CSS Shapes"
|
|
195
207
|
],
|
|
@@ -199,7 +211,7 @@
|
|
|
199
211
|
"env()": {
|
|
200
212
|
"syntax": "env( <custom-ident> , <declaration-value>? )",
|
|
201
213
|
"groups": [
|
|
202
|
-
"CSS
|
|
214
|
+
"CSS Environment Variables"
|
|
203
215
|
],
|
|
204
216
|
"status": "standard",
|
|
205
217
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/env"
|
|
@@ -216,22 +228,22 @@
|
|
|
216
228
|
"fit-content()": {
|
|
217
229
|
"syntax": "fit-content( <length-percentage [0,∞]> )",
|
|
218
230
|
"groups": [
|
|
219
|
-
"CSS Box
|
|
231
|
+
"CSS Box Sizing",
|
|
232
|
+
"CSS Grid Layout"
|
|
220
233
|
],
|
|
221
234
|
"status": "standard",
|
|
222
235
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/fit-content_function"
|
|
223
236
|
},
|
|
224
237
|
"grayscale()": {
|
|
225
|
-
"syntax": "grayscale( <number
|
|
238
|
+
"syntax": "grayscale( [ <number> | <percentage> ]? )",
|
|
226
239
|
"groups": [
|
|
227
|
-
"Filter Effects"
|
|
228
|
-
"CSS Color"
|
|
240
|
+
"Filter Effects"
|
|
229
241
|
],
|
|
230
242
|
"status": "standard",
|
|
231
243
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/grayscale"
|
|
232
244
|
},
|
|
233
245
|
"hsl()": {
|
|
234
|
-
"syntax": "hsl( <hue
|
|
246
|
+
"syntax": "hsl( <hue>, <percentage>, <percentage>, <alpha-value>? ) | hsl( [ <hue> | none ] [ <percentage> | <number> | none ] [ <percentage> | <number> | none ] [ / [ <alpha-value> | none ] ]? )",
|
|
235
247
|
"groups": [
|
|
236
248
|
"CSS Color"
|
|
237
249
|
],
|
|
@@ -239,22 +251,29 @@
|
|
|
239
251
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/hsl"
|
|
240
252
|
},
|
|
241
253
|
"hsla()": {
|
|
242
|
-
"syntax": "hsla( <hue
|
|
254
|
+
"syntax": "hsla( <hue>, <percentage>, <percentage>, <alpha-value>? ) | hsla( [ <hue> | none ] [ <percentage> | <number> | none ] [ <percentage> | <number> | none ] [ / [ <alpha-value> | none ] ]? )",
|
|
243
255
|
"groups": [
|
|
244
256
|
"CSS Color"
|
|
245
257
|
],
|
|
246
258
|
"status": "nonstandard",
|
|
247
|
-
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/
|
|
259
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/hsl"
|
|
248
260
|
},
|
|
249
261
|
"hue-rotate()": {
|
|
250
|
-
"syntax": "hue-rotate( <angle> )",
|
|
262
|
+
"syntax": "hue-rotate( [ <angle> | <zero> ]? )",
|
|
251
263
|
"groups": [
|
|
252
|
-
"Filter Effects"
|
|
253
|
-
"CSS Color"
|
|
264
|
+
"Filter Effects"
|
|
254
265
|
],
|
|
255
266
|
"status": "standard",
|
|
256
267
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/hue-rotate"
|
|
257
268
|
},
|
|
269
|
+
"hwb()": {
|
|
270
|
+
"syntax": "hwb( [ <hue> | none ] [ <percentage> | <number> | none ] [ <percentage> | <number> | 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/hwb"
|
|
276
|
+
},
|
|
258
277
|
"hypot()": {
|
|
259
278
|
"syntax": "hypot( <calc-sum># )",
|
|
260
279
|
"groups": [
|
|
@@ -264,14 +283,6 @@
|
|
|
264
283
|
"status": "standard",
|
|
265
284
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/hypot"
|
|
266
285
|
},
|
|
267
|
-
"hwb()": {
|
|
268
|
-
"syntax": "hwb( [<hue> | none] [<percentage> | none] [<percentage> | none] [ / [<alpha-value> | none] ]? )",
|
|
269
|
-
"groups": [
|
|
270
|
-
"CSS Color"
|
|
271
|
-
],
|
|
272
|
-
"status": "standard",
|
|
273
|
-
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/hwb"
|
|
274
|
-
},
|
|
275
286
|
"image()": {
|
|
276
287
|
"syntax": "image( <image-tags>? [ <image-src>? , <color>? ]! )",
|
|
277
288
|
"groups": [
|
|
@@ -297,10 +308,9 @@
|
|
|
297
308
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/basic-shape/inset"
|
|
298
309
|
},
|
|
299
310
|
"invert()": {
|
|
300
|
-
"syntax": "invert( <number
|
|
311
|
+
"syntax": "invert( [ <number> | <percentage> ]? )",
|
|
301
312
|
"groups": [
|
|
302
|
-
"Filter Effects"
|
|
303
|
-
"CSS Color"
|
|
313
|
+
"Filter Effects"
|
|
304
314
|
],
|
|
305
315
|
"status": "standard",
|
|
306
316
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/invert"
|
|
@@ -332,9 +342,9 @@
|
|
|
332
342
|
"leader()": {
|
|
333
343
|
"syntax": "leader( <leader-type> )",
|
|
334
344
|
"groups": [
|
|
335
|
-
"CSS
|
|
345
|
+
"CSS Generated Content"
|
|
336
346
|
],
|
|
337
|
-
"status": "
|
|
347
|
+
"status": "experimental"
|
|
338
348
|
},
|
|
339
349
|
"light-dark()": {
|
|
340
350
|
"syntax": "light-dark( <color>, <color> )",
|
|
@@ -347,8 +357,7 @@
|
|
|
347
357
|
"linear-gradient()": {
|
|
348
358
|
"syntax": "linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )",
|
|
349
359
|
"groups": [
|
|
350
|
-
"CSS
|
|
351
|
-
"CSS Color"
|
|
360
|
+
"CSS Images"
|
|
352
361
|
],
|
|
353
362
|
"status": "standard",
|
|
354
363
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient/linear-gradient"
|
|
@@ -431,10 +440,9 @@
|
|
|
431
440
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/oklch"
|
|
432
441
|
},
|
|
433
442
|
"opacity()": {
|
|
434
|
-
"syntax": "opacity( [ <number
|
|
443
|
+
"syntax": "opacity( [ <number> | <percentage> ]? )",
|
|
435
444
|
"groups": [
|
|
436
|
-
"Filter Effects"
|
|
437
|
-
"CSS Color"
|
|
445
|
+
"Filter Effects"
|
|
438
446
|
],
|
|
439
447
|
"status": "standard",
|
|
440
448
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/opacity"
|
|
@@ -442,7 +450,7 @@
|
|
|
442
450
|
"paint()": {
|
|
443
451
|
"syntax": "paint( <ident>, <declaration-value>? )",
|
|
444
452
|
"groups": [
|
|
445
|
-
"CSS
|
|
453
|
+
"CSS Houdini"
|
|
446
454
|
],
|
|
447
455
|
"status": "standard",
|
|
448
456
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/image/paint"
|
|
@@ -456,10 +464,9 @@
|
|
|
456
464
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-palette/palette-mix"
|
|
457
465
|
},
|
|
458
466
|
"path()": {
|
|
459
|
-
"syntax": "path(
|
|
467
|
+
"syntax": "path( <'fill-rule'>? , <string> )",
|
|
460
468
|
"groups": [
|
|
461
|
-
"CSS Shapes"
|
|
462
|
-
"CSS Motion Path"
|
|
469
|
+
"CSS Shapes"
|
|
463
470
|
],
|
|
464
471
|
"status": "standard",
|
|
465
472
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/basic-shape/path"
|
|
@@ -473,7 +480,7 @@
|
|
|
473
480
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/perspective"
|
|
474
481
|
},
|
|
475
482
|
"polygon()": {
|
|
476
|
-
"syntax": "polygon( <fill-rule>? , [ <length-percentage> <length-percentage> ]# )",
|
|
483
|
+
"syntax": "polygon( <'fill-rule'>? , [ <length-percentage> <length-percentage> ]# )",
|
|
477
484
|
"groups": [
|
|
478
485
|
"CSS Shapes"
|
|
479
486
|
],
|
|
@@ -492,8 +499,7 @@
|
|
|
492
499
|
"radial-gradient()": {
|
|
493
500
|
"syntax": "radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )",
|
|
494
501
|
"groups": [
|
|
495
|
-
"CSS
|
|
496
|
-
"CSS Color"
|
|
502
|
+
"CSS Images"
|
|
497
503
|
],
|
|
498
504
|
"status": "standard",
|
|
499
505
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient/radial-gradient"
|
|
@@ -501,11 +507,19 @@
|
|
|
501
507
|
"ray()": {
|
|
502
508
|
"syntax": "ray( <angle> && <ray-size>? && contain? && [at <position>]? )",
|
|
503
509
|
"groups": [
|
|
504
|
-
"
|
|
510
|
+
"Motion Path"
|
|
505
511
|
],
|
|
506
512
|
"status": "standard",
|
|
507
513
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/ray"
|
|
508
514
|
},
|
|
515
|
+
"rect()": {
|
|
516
|
+
"syntax": "rect( [ <length-percentage> | auto ]{4} [ round <'border-radius'> ]? )",
|
|
517
|
+
"groups": [
|
|
518
|
+
"CSS Shapes"
|
|
519
|
+
],
|
|
520
|
+
"status": "standard",
|
|
521
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/basic-shape/rect"
|
|
522
|
+
},
|
|
509
523
|
"rem()": {
|
|
510
524
|
"syntax": "rem( <calc-sum>, <calc-sum> )",
|
|
511
525
|
"groups": [
|
|
@@ -518,8 +532,7 @@
|
|
|
518
532
|
"repeating-conic-gradient()": {
|
|
519
533
|
"syntax": "repeating-conic-gradient( [ from <angle> ]? [ at <position> ]?, <angular-color-stop-list> )",
|
|
520
534
|
"groups": [
|
|
521
|
-
"CSS
|
|
522
|
-
"CSS Color"
|
|
535
|
+
"CSS Images"
|
|
523
536
|
],
|
|
524
537
|
"status": "standard",
|
|
525
538
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient/repeating-conic-gradient"
|
|
@@ -527,23 +540,21 @@
|
|
|
527
540
|
"repeating-linear-gradient()": {
|
|
528
541
|
"syntax": "repeating-linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )",
|
|
529
542
|
"groups": [
|
|
530
|
-
"CSS
|
|
531
|
-
"CSS Color"
|
|
543
|
+
"CSS Images"
|
|
532
544
|
],
|
|
533
545
|
"status": "standard",
|
|
534
|
-
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/repeating-linear-gradient"
|
|
546
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient/repeating-linear-gradient"
|
|
535
547
|
},
|
|
536
548
|
"repeating-radial-gradient()": {
|
|
537
549
|
"syntax": "repeating-radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )",
|
|
538
550
|
"groups": [
|
|
539
|
-
"CSS
|
|
540
|
-
"CSS Color"
|
|
551
|
+
"CSS Images"
|
|
541
552
|
],
|
|
542
553
|
"status": "standard",
|
|
543
|
-
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient/repeating-
|
|
554
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient/repeating-radial-gradient"
|
|
544
555
|
},
|
|
545
556
|
"rgb()": {
|
|
546
|
-
"syntax": "rgb( <percentage
|
|
557
|
+
"syntax": "rgb( <percentage>#{3} , <alpha-value>? ) | rgb( <number>#{3} , <alpha-value>? ) | rgb( [ <number> | <percentage> | none ]{3} [ / [ <alpha-value> | none ] ]? )",
|
|
547
558
|
"groups": [
|
|
548
559
|
"CSS Color"
|
|
549
560
|
],
|
|
@@ -551,12 +562,12 @@
|
|
|
551
562
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/rgb"
|
|
552
563
|
},
|
|
553
564
|
"rgba()": {
|
|
554
|
-
"syntax": "rgba( <percentage
|
|
565
|
+
"syntax": "rgba( <percentage>#{3} , <alpha-value>? ) | rgba( <number>#{3} , <alpha-value>? ) | rgba( [ <number> | <percentage> | none ]{3} [ / [ <alpha-value> | none ] ]? )",
|
|
555
566
|
"groups": [
|
|
556
567
|
"CSS Color"
|
|
557
568
|
],
|
|
558
569
|
"status": "nonstandard",
|
|
559
|
-
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/
|
|
570
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/rgb"
|
|
560
571
|
},
|
|
561
572
|
"rotate()": {
|
|
562
573
|
"syntax": "rotate( [ <angle> | <zero> ] )",
|
|
@@ -608,10 +619,9 @@
|
|
|
608
619
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/round"
|
|
609
620
|
},
|
|
610
621
|
"saturate()": {
|
|
611
|
-
"syntax": "saturate( <number
|
|
622
|
+
"syntax": "saturate( [ <number> | <percentage> ]? )",
|
|
612
623
|
"groups": [
|
|
613
|
-
"Filter Effects"
|
|
614
|
-
"CSS Color"
|
|
624
|
+
"Filter Effects"
|
|
615
625
|
],
|
|
616
626
|
"status": "standard",
|
|
617
627
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/saturate"
|
|
@@ -659,16 +669,15 @@
|
|
|
659
669
|
"scroll()": {
|
|
660
670
|
"syntax": "scroll( [ <scroller> || <axis> ]? )",
|
|
661
671
|
"groups": [
|
|
662
|
-
"
|
|
672
|
+
"Scroll-driven Animations"
|
|
663
673
|
],
|
|
664
674
|
"status": "experimental",
|
|
665
675
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-timeline/scroll"
|
|
666
676
|
},
|
|
667
677
|
"sepia()": {
|
|
668
|
-
"syntax": "sepia( <number
|
|
678
|
+
"syntax": "sepia( [ <number> | <percentage> ]? )",
|
|
669
679
|
"groups": [
|
|
670
|
-
"Filter Effects"
|
|
671
|
-
"CSS Color"
|
|
680
|
+
"Filter Effects"
|
|
672
681
|
],
|
|
673
682
|
"status": "standard",
|
|
674
683
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/sepia"
|
|
@@ -724,35 +733,43 @@
|
|
|
724
733
|
"status": "standard",
|
|
725
734
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/sqrt"
|
|
726
735
|
},
|
|
736
|
+
"symbols()": {
|
|
737
|
+
"syntax": "symbols( <symbols-type>? [ <string> | <image> ]+ )",
|
|
738
|
+
"groups": [
|
|
739
|
+
"CSS Counter Styles"
|
|
740
|
+
],
|
|
741
|
+
"status": "standard",
|
|
742
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/symbols"
|
|
743
|
+
},
|
|
744
|
+
"tan()": {
|
|
745
|
+
"syntax": "tan( <calc-sum> )",
|
|
746
|
+
"groups": [
|
|
747
|
+
"CSS Units",
|
|
748
|
+
"CSS Lengths"
|
|
749
|
+
],
|
|
750
|
+
"status": "standard",
|
|
751
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/tan"
|
|
752
|
+
},
|
|
727
753
|
"target-counter()": {
|
|
728
754
|
"syntax": "target-counter( [ <string> | <url> ] , <custom-ident> , <counter-style>? )",
|
|
729
755
|
"groups": [
|
|
730
|
-
"CSS
|
|
756
|
+
"CSS Generated Content"
|
|
731
757
|
],
|
|
732
|
-
"status": "
|
|
758
|
+
"status": "experimental"
|
|
733
759
|
},
|
|
734
760
|
"target-counters()": {
|
|
735
761
|
"syntax": "target-counters( [ <string> | <url> ] , <custom-ident> , <string> , <counter-style>? )",
|
|
736
762
|
"groups": [
|
|
737
|
-
"CSS
|
|
763
|
+
"CSS Generated Content"
|
|
738
764
|
],
|
|
739
|
-
"status": "
|
|
765
|
+
"status": "experimental"
|
|
740
766
|
},
|
|
741
767
|
"target-text()": {
|
|
742
768
|
"syntax": "target-text( [ <string> | <url> ] , [ content | before | after | first-letter ]? )",
|
|
743
769
|
"groups": [
|
|
744
|
-
"CSS
|
|
745
|
-
],
|
|
746
|
-
"status": "nonstandard"
|
|
747
|
-
},
|
|
748
|
-
"tan()": {
|
|
749
|
-
"syntax": "tan( <calc-sum> )",
|
|
750
|
-
"groups": [
|
|
751
|
-
"CSS Units",
|
|
752
|
-
"CSS Lengths"
|
|
770
|
+
"CSS Generated Content"
|
|
753
771
|
],
|
|
754
|
-
"status": "
|
|
755
|
-
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/tan"
|
|
772
|
+
"status": "experimental"
|
|
756
773
|
},
|
|
757
774
|
"translate()": {
|
|
758
775
|
"syntax": "translate( <length-percentage> , <length-percentage>? )",
|
|
@@ -797,7 +814,7 @@
|
|
|
797
814
|
"var()": {
|
|
798
815
|
"syntax": "var( <custom-property-name> , <declaration-value>? )",
|
|
799
816
|
"groups": [
|
|
800
|
-
"CSS
|
|
817
|
+
"CSS Custom Properties for Cascading Variables"
|
|
801
818
|
],
|
|
802
819
|
"status": "standard",
|
|
803
820
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/var"
|
|
@@ -805,9 +822,17 @@
|
|
|
805
822
|
"view()": {
|
|
806
823
|
"syntax": "view([<axis> || <'view-timeline-inset'>]?)",
|
|
807
824
|
"groups": [
|
|
808
|
-
"
|
|
825
|
+
"Scroll-driven Animations"
|
|
809
826
|
],
|
|
810
827
|
"status": "experimental",
|
|
811
828
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-timeline/view"
|
|
829
|
+
},
|
|
830
|
+
"xywh()": {
|
|
831
|
+
"syntax": "xywh( <length-percentage>{2} <length-percentage [0,∞]>{2} [ round <'border-radius'> ]? )",
|
|
832
|
+
"groups": [
|
|
833
|
+
"CSS Shapes"
|
|
834
|
+
],
|
|
835
|
+
"status": "standard",
|
|
836
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/basic-shape/xywh"
|
|
812
837
|
}
|
|
813
838
|
}
|