vscode-css-languageservice 6.2.6 → 6.2.8
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 +1 -1
- package/lib/esm/beautify/beautify-css.js +53 -31
- package/lib/esm/cssLanguageTypes.d.ts +1 -0
- package/lib/esm/data/webCustomData.js +849 -339
- package/lib/esm/parser/cssParser.js +40 -5
- package/lib/esm/services/lessCompletion.js +1 -2
- package/lib/esm/services/lint.js +1 -2
- package/lib/esm/services/scssCompletion.js +1 -2
- package/lib/esm/services/selectorPrinting.js +56 -32
- package/lib/umd/beautify/beautify-css.js +53 -31
- package/lib/umd/cssLanguageTypes.d.ts +1 -0
- package/lib/umd/cssLanguageTypes.js +2 -2
- package/lib/umd/data/webCustomData.js +849 -339
- package/lib/umd/parser/cssNodes.js +3 -3
- package/lib/umd/parser/cssParser.js +40 -5
- package/lib/umd/parser/cssScanner.js +1 -1
- package/lib/umd/services/lessCompletion.js +1 -1
- package/lib/umd/services/lint.js +1 -1
- package/lib/umd/services/scssCompletion.js +1 -1
- package/lib/umd/services/selectorPrinting.js +56 -32
- package/package.json +9 -9
|
@@ -11,6 +11,7 @@ export const cssData = {
|
|
|
11
11
|
"browsers": [
|
|
12
12
|
"FF33"
|
|
13
13
|
],
|
|
14
|
+
"atRule": "@counter-style",
|
|
14
15
|
"syntax": "[ <integer> && <symbol> ]#",
|
|
15
16
|
"relevance": 50,
|
|
16
17
|
"description": "@counter-style descriptor. Specifies the symbols used by the marker-construction algorithm specified by the system descriptor. Needs to be specified if the counter system is 'additive'.",
|
|
@@ -336,7 +337,7 @@ export const cssData = {
|
|
|
336
337
|
}
|
|
337
338
|
],
|
|
338
339
|
"syntax": "auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]",
|
|
339
|
-
"relevance":
|
|
340
|
+
"relevance": 56,
|
|
340
341
|
"references": [
|
|
341
342
|
{
|
|
342
343
|
"name": "MDN Reference",
|
|
@@ -580,7 +581,7 @@ export const cssData = {
|
|
|
580
581
|
}
|
|
581
582
|
],
|
|
582
583
|
"syntax": "<single-animation-direction>#",
|
|
583
|
-
"relevance":
|
|
584
|
+
"relevance": 59,
|
|
584
585
|
"references": [
|
|
585
586
|
{
|
|
586
587
|
"name": "MDN Reference",
|
|
@@ -603,7 +604,7 @@ export const cssData = {
|
|
|
603
604
|
"O30"
|
|
604
605
|
],
|
|
605
606
|
"syntax": "<time>#",
|
|
606
|
-
"relevance":
|
|
607
|
+
"relevance": 72,
|
|
607
608
|
"references": [
|
|
608
609
|
{
|
|
609
610
|
"name": "MDN Reference",
|
|
@@ -673,7 +674,7 @@ export const cssData = {
|
|
|
673
674
|
}
|
|
674
675
|
],
|
|
675
676
|
"syntax": "<single-animation-iteration-count>#",
|
|
676
|
-
"relevance":
|
|
677
|
+
"relevance": 64,
|
|
677
678
|
"references": [
|
|
678
679
|
{
|
|
679
680
|
"name": "MDN Reference",
|
|
@@ -1002,7 +1003,7 @@ export const cssData = {
|
|
|
1002
1003
|
}
|
|
1003
1004
|
],
|
|
1004
1005
|
"syntax": "<blend-mode>#",
|
|
1005
|
-
"relevance":
|
|
1006
|
+
"relevance": 54,
|
|
1006
1007
|
"references": [
|
|
1007
1008
|
{
|
|
1008
1009
|
"name": "MDN Reference",
|
|
@@ -1019,7 +1020,7 @@ export const cssData = {
|
|
|
1019
1020
|
"browsers": [
|
|
1020
1021
|
"E12",
|
|
1021
1022
|
"FF4",
|
|
1022
|
-
"
|
|
1023
|
+
"S5",
|
|
1023
1024
|
"C1",
|
|
1024
1025
|
"IE9",
|
|
1025
1026
|
"O10.5"
|
|
@@ -1226,7 +1227,7 @@ export const cssData = {
|
|
|
1226
1227
|
],
|
|
1227
1228
|
"values": [],
|
|
1228
1229
|
"syntax": "<repeat-style>#",
|
|
1229
|
-
"relevance":
|
|
1230
|
+
"relevance": 84,
|
|
1230
1231
|
"references": [
|
|
1231
1232
|
{
|
|
1232
1233
|
"name": "MDN Reference",
|
|
@@ -1263,7 +1264,7 @@ export const cssData = {
|
|
|
1263
1264
|
}
|
|
1264
1265
|
],
|
|
1265
1266
|
"syntax": "<bg-size>#",
|
|
1266
|
-
"relevance":
|
|
1267
|
+
"relevance": 84,
|
|
1267
1268
|
"references": [
|
|
1268
1269
|
{
|
|
1269
1270
|
"name": "MDN Reference",
|
|
@@ -1303,7 +1304,7 @@ export const cssData = {
|
|
|
1303
1304
|
}
|
|
1304
1305
|
],
|
|
1305
1306
|
"syntax": "<'width'>",
|
|
1306
|
-
"relevance":
|
|
1307
|
+
"relevance": 53,
|
|
1307
1308
|
"references": [
|
|
1308
1309
|
{
|
|
1309
1310
|
"name": "MDN Reference",
|
|
@@ -1563,7 +1564,7 @@ export const cssData = {
|
|
|
1563
1564
|
"O3.5"
|
|
1564
1565
|
],
|
|
1565
1566
|
"syntax": "<'border-top-color'>",
|
|
1566
|
-
"relevance":
|
|
1567
|
+
"relevance": 71,
|
|
1567
1568
|
"references": [
|
|
1568
1569
|
{
|
|
1569
1570
|
"name": "MDN Reference",
|
|
@@ -1657,7 +1658,7 @@ export const cssData = {
|
|
|
1657
1658
|
"O3.5"
|
|
1658
1659
|
],
|
|
1659
1660
|
"syntax": "<line-width>",
|
|
1660
|
-
"relevance":
|
|
1661
|
+
"relevance": 63,
|
|
1661
1662
|
"references": [
|
|
1662
1663
|
{
|
|
1663
1664
|
"name": "MDN Reference",
|
|
@@ -1691,7 +1692,7 @@ export const cssData = {
|
|
|
1691
1692
|
}
|
|
1692
1693
|
],
|
|
1693
1694
|
"syntax": "collapse | separate",
|
|
1694
|
-
"relevance":
|
|
1695
|
+
"relevance": 73,
|
|
1695
1696
|
"references": [
|
|
1696
1697
|
{
|
|
1697
1698
|
"name": "MDN Reference",
|
|
@@ -2137,7 +2138,7 @@ export const cssData = {
|
|
|
2137
2138
|
"O3.5"
|
|
2138
2139
|
],
|
|
2139
2140
|
"syntax": "<line-width> || <line-style> || <color>",
|
|
2140
|
-
"relevance":
|
|
2141
|
+
"relevance": 82,
|
|
2141
2142
|
"references": [
|
|
2142
2143
|
{
|
|
2143
2144
|
"name": "MDN Reference",
|
|
@@ -2163,7 +2164,7 @@ export const cssData = {
|
|
|
2163
2164
|
"O3.5"
|
|
2164
2165
|
],
|
|
2165
2166
|
"syntax": "<color>",
|
|
2166
|
-
"relevance":
|
|
2167
|
+
"relevance": 68,
|
|
2167
2168
|
"references": [
|
|
2168
2169
|
{
|
|
2169
2170
|
"name": "MDN Reference",
|
|
@@ -2209,7 +2210,7 @@ export const cssData = {
|
|
|
2209
2210
|
"O3.5"
|
|
2210
2211
|
],
|
|
2211
2212
|
"syntax": "<line-width>",
|
|
2212
|
-
"relevance":
|
|
2213
|
+
"relevance": 63,
|
|
2213
2214
|
"references": [
|
|
2214
2215
|
{
|
|
2215
2216
|
"name": "MDN Reference",
|
|
@@ -2257,7 +2258,7 @@ export const cssData = {
|
|
|
2257
2258
|
"O9.2"
|
|
2258
2259
|
],
|
|
2259
2260
|
"syntax": "<line-width> || <line-style> || <color>",
|
|
2260
|
-
"relevance":
|
|
2261
|
+
"relevance": 81,
|
|
2261
2262
|
"references": [
|
|
2262
2263
|
{
|
|
2263
2264
|
"name": "MDN Reference",
|
|
@@ -2283,7 +2284,7 @@ export const cssData = {
|
|
|
2283
2284
|
"O3.5"
|
|
2284
2285
|
],
|
|
2285
2286
|
"syntax": "<color>",
|
|
2286
|
-
"relevance":
|
|
2287
|
+
"relevance": 67,
|
|
2287
2288
|
"references": [
|
|
2288
2289
|
{
|
|
2289
2290
|
"name": "MDN Reference",
|
|
@@ -2329,7 +2330,7 @@ export const cssData = {
|
|
|
2329
2330
|
"O3.5"
|
|
2330
2331
|
],
|
|
2331
2332
|
"syntax": "<line-width>",
|
|
2332
|
-
"relevance":
|
|
2333
|
+
"relevance": 63,
|
|
2333
2334
|
"references": [
|
|
2334
2335
|
{
|
|
2335
2336
|
"name": "MDN Reference",
|
|
@@ -2353,7 +2354,7 @@ export const cssData = {
|
|
|
2353
2354
|
"O4"
|
|
2354
2355
|
],
|
|
2355
2356
|
"syntax": "<length> <length>?",
|
|
2356
|
-
"relevance":
|
|
2357
|
+
"relevance": 67,
|
|
2357
2358
|
"references": [
|
|
2358
2359
|
{
|
|
2359
2360
|
"name": "MDN Reference",
|
|
@@ -2377,7 +2378,7 @@ export const cssData = {
|
|
|
2377
2378
|
],
|
|
2378
2379
|
"values": [],
|
|
2379
2380
|
"syntax": "<line-style>{1,4}",
|
|
2380
|
-
"relevance":
|
|
2381
|
+
"relevance": 80,
|
|
2381
2382
|
"references": [
|
|
2382
2383
|
{
|
|
2383
2384
|
"name": "MDN Reference",
|
|
@@ -2426,7 +2427,7 @@ export const cssData = {
|
|
|
2426
2427
|
"O3.5"
|
|
2427
2428
|
],
|
|
2428
2429
|
"syntax": "<color>",
|
|
2429
|
-
"relevance":
|
|
2430
|
+
"relevance": 71,
|
|
2430
2431
|
"references": [
|
|
2431
2432
|
{
|
|
2432
2433
|
"name": "MDN Reference",
|
|
@@ -2449,7 +2450,7 @@ export const cssData = {
|
|
|
2449
2450
|
"O10.5"
|
|
2450
2451
|
],
|
|
2451
2452
|
"syntax": "<length-percentage>{1,2}",
|
|
2452
|
-
"relevance":
|
|
2453
|
+
"relevance": 75,
|
|
2453
2454
|
"references": [
|
|
2454
2455
|
{
|
|
2455
2456
|
"name": "MDN Reference",
|
|
@@ -2545,7 +2546,7 @@ export const cssData = {
|
|
|
2545
2546
|
],
|
|
2546
2547
|
"values": [],
|
|
2547
2548
|
"syntax": "<line-width>{1,4}",
|
|
2548
|
-
"relevance":
|
|
2549
|
+
"relevance": 82,
|
|
2549
2550
|
"references": [
|
|
2550
2551
|
{
|
|
2551
2552
|
"name": "MDN Reference",
|
|
@@ -2641,7 +2642,7 @@ export const cssData = {
|
|
|
2641
2642
|
}
|
|
2642
2643
|
],
|
|
2643
2644
|
"syntax": "none | <shadow>#",
|
|
2644
|
-
"relevance":
|
|
2645
|
+
"relevance": 89,
|
|
2645
2646
|
"references": [
|
|
2646
2647
|
{
|
|
2647
2648
|
"name": "MDN Reference",
|
|
@@ -3008,7 +3009,7 @@ export const cssData = {
|
|
|
3008
3009
|
}
|
|
3009
3010
|
],
|
|
3010
3011
|
"syntax": "<clip-source> | [ <basic-shape> || <geometry-box> ] | none",
|
|
3011
|
-
"relevance":
|
|
3012
|
+
"relevance": 63,
|
|
3012
3013
|
"references": [
|
|
3013
3014
|
{
|
|
3014
3015
|
"name": "MDN Reference",
|
|
@@ -3060,7 +3061,7 @@ export const cssData = {
|
|
|
3060
3061
|
"O3.5"
|
|
3061
3062
|
],
|
|
3062
3063
|
"syntax": "<color>",
|
|
3063
|
-
"relevance":
|
|
3064
|
+
"relevance": 94,
|
|
3064
3065
|
"references": [
|
|
3065
3066
|
{
|
|
3066
3067
|
"name": "MDN Reference",
|
|
@@ -3182,7 +3183,7 @@ export const cssData = {
|
|
|
3182
3183
|
}
|
|
3183
3184
|
],
|
|
3184
3185
|
"syntax": "normal | <length-percentage>",
|
|
3185
|
-
"relevance":
|
|
3186
|
+
"relevance": 60,
|
|
3186
3187
|
"references": [
|
|
3187
3188
|
{
|
|
3188
3189
|
"name": "MDN Reference",
|
|
@@ -3425,7 +3426,7 @@ export const cssData = {
|
|
|
3425
3426
|
}
|
|
3426
3427
|
],
|
|
3427
3428
|
"syntax": "none | strict | content | [ [ size || inline-size ] || layout || style || paint ]",
|
|
3428
|
-
"relevance":
|
|
3429
|
+
"relevance": 59,
|
|
3429
3430
|
"references": [
|
|
3430
3431
|
{
|
|
3431
3432
|
"name": "MDN Reference",
|
|
@@ -3473,7 +3474,7 @@ export const cssData = {
|
|
|
3473
3474
|
}
|
|
3474
3475
|
],
|
|
3475
3476
|
"syntax": "normal | none | [ <content-replacement> | <content-list> ] [/ [ <string> | <counter> ]+ ]?",
|
|
3476
|
-
"relevance":
|
|
3477
|
+
"relevance": 89,
|
|
3477
3478
|
"references": [
|
|
3478
3479
|
{
|
|
3479
3480
|
"name": "MDN Reference",
|
|
@@ -4367,6 +4368,7 @@ export const cssData = {
|
|
|
4367
4368
|
"browsers": [
|
|
4368
4369
|
"FF33"
|
|
4369
4370
|
],
|
|
4371
|
+
"atRule": "@counter-style",
|
|
4370
4372
|
"syntax": "<counter-style-name>",
|
|
4371
4373
|
"relevance": 50,
|
|
4372
4374
|
"description": "@counter-style descriptor. Specifies a fallback counter style to be used when the current counter style can't create a representation for a given counter value.",
|
|
@@ -4487,7 +4489,7 @@ export const cssData = {
|
|
|
4487
4489
|
}
|
|
4488
4490
|
],
|
|
4489
4491
|
"syntax": "none | <filter-function-list>",
|
|
4490
|
-
"relevance":
|
|
4492
|
+
"relevance": 69,
|
|
4491
4493
|
"references": [
|
|
4492
4494
|
{
|
|
4493
4495
|
"name": "MDN Reference",
|
|
@@ -4619,7 +4621,7 @@ export const cssData = {
|
|
|
4619
4621
|
}
|
|
4620
4622
|
],
|
|
4621
4623
|
"syntax": "row | row-reverse | column | column-reverse",
|
|
4622
|
-
"relevance":
|
|
4624
|
+
"relevance": 84,
|
|
4623
4625
|
"references": [
|
|
4624
4626
|
{
|
|
4625
4627
|
"name": "MDN Reference",
|
|
@@ -4672,7 +4674,7 @@ export const cssData = {
|
|
|
4672
4674
|
}
|
|
4673
4675
|
],
|
|
4674
4676
|
"syntax": "<'flex-direction'> || <'flex-wrap'>",
|
|
4675
|
-
"relevance":
|
|
4677
|
+
"relevance": 64,
|
|
4676
4678
|
"references": [
|
|
4677
4679
|
{
|
|
4678
4680
|
"name": "MDN Reference",
|
|
@@ -4755,7 +4757,7 @@ export const cssData = {
|
|
|
4755
4757
|
}
|
|
4756
4758
|
],
|
|
4757
4759
|
"syntax": "nowrap | wrap | wrap-reverse",
|
|
4758
|
-
"relevance":
|
|
4760
|
+
"relevance": 81,
|
|
4759
4761
|
"references": [
|
|
4760
4762
|
{
|
|
4761
4763
|
"name": "MDN Reference",
|
|
@@ -5067,6 +5069,7 @@ export const cssData = {
|
|
|
5067
5069
|
"name": "Verdana, Geneva, Tahoma, sans-serif"
|
|
5068
5070
|
}
|
|
5069
5071
|
],
|
|
5072
|
+
"atRule": "@font-face",
|
|
5070
5073
|
"syntax": "<family-name>",
|
|
5071
5074
|
"relevance": 93,
|
|
5072
5075
|
"references": [
|
|
@@ -5572,8 +5575,9 @@ export const cssData = {
|
|
|
5572
5575
|
"description": "Enable feature."
|
|
5573
5576
|
}
|
|
5574
5577
|
],
|
|
5578
|
+
"atRule": "@font-face",
|
|
5575
5579
|
"syntax": "normal | <feature-tag-value>#",
|
|
5576
|
-
"relevance":
|
|
5580
|
+
"relevance": 57,
|
|
5577
5581
|
"references": [
|
|
5578
5582
|
{
|
|
5579
5583
|
"name": "MDN Reference",
|
|
@@ -5787,6 +5791,7 @@ export const cssData = {
|
|
|
5787
5791
|
"description": "Indicates a wider value relative to the width of the parent element."
|
|
5788
5792
|
}
|
|
5789
5793
|
],
|
|
5794
|
+
"atRule": "@font-face",
|
|
5790
5795
|
"syntax": "<font-stretch-absolute>{1,2}",
|
|
5791
5796
|
"relevance": 56,
|
|
5792
5797
|
"references": [
|
|
@@ -5824,6 +5829,7 @@ export const cssData = {
|
|
|
5824
5829
|
"description": "Selects a font that is labeled as an 'oblique' face, or an 'italic' face if one is not."
|
|
5825
5830
|
}
|
|
5826
5831
|
],
|
|
5832
|
+
"atRule": "@font-face",
|
|
5827
5833
|
"syntax": "normal | italic | oblique <angle>{0,2}",
|
|
5828
5834
|
"relevance": 89,
|
|
5829
5835
|
"references": [
|
|
@@ -5893,6 +5899,7 @@ export const cssData = {
|
|
|
5893
5899
|
"description": "Specifies a font that is labeled as a small-caps font. If a genuine small-caps font is not available, user agents should simulate a small-caps font."
|
|
5894
5900
|
}
|
|
5895
5901
|
],
|
|
5902
|
+
"atRule": "@font-face",
|
|
5896
5903
|
"syntax": "normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic(<feature-value-name>) || historical-forms || styleset(<feature-value-name>#) || character-variant(<feature-value-name>#) || swash(<feature-value-name>) || ornaments(<feature-value-name>) || annotation(<feature-value-name>) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]",
|
|
5897
5904
|
"relevance": 64,
|
|
5898
5905
|
"references": [
|
|
@@ -5909,8 +5916,11 @@ export const cssData = {
|
|
|
5909
5916
|
{
|
|
5910
5917
|
"name": "font-variant-alternates",
|
|
5911
5918
|
"browsers": [
|
|
5919
|
+
"E111",
|
|
5912
5920
|
"FF34",
|
|
5913
|
-
"S9.1"
|
|
5921
|
+
"S9.1",
|
|
5922
|
+
"C111",
|
|
5923
|
+
"O97"
|
|
5914
5924
|
],
|
|
5915
5925
|
"values": [
|
|
5916
5926
|
{
|
|
@@ -6325,6 +6335,7 @@ export const cssData = {
|
|
|
6325
6335
|
"description": "Same as 400"
|
|
6326
6336
|
}
|
|
6327
6337
|
],
|
|
6338
|
+
"atRule": "@font-face",
|
|
6328
6339
|
"syntax": "<font-weight-absolute>{1,2}",
|
|
6329
6340
|
"relevance": 93,
|
|
6330
6341
|
"references": [
|
|
@@ -6383,7 +6394,7 @@ export const cssData = {
|
|
|
6383
6394
|
}
|
|
6384
6395
|
],
|
|
6385
6396
|
"syntax": "<grid-line> [ / <grid-line> ]{0,3}",
|
|
6386
|
-
"relevance":
|
|
6397
|
+
"relevance": 57,
|
|
6387
6398
|
"references": [
|
|
6388
6399
|
{
|
|
6389
6400
|
"name": "MDN Reference",
|
|
@@ -6451,7 +6462,7 @@ export const cssData = {
|
|
|
6451
6462
|
}
|
|
6452
6463
|
],
|
|
6453
6464
|
"syntax": "<track-size>+",
|
|
6454
|
-
"relevance":
|
|
6465
|
+
"relevance": 51,
|
|
6455
6466
|
"references": [
|
|
6456
6467
|
{
|
|
6457
6468
|
"name": "MDN Reference",
|
|
@@ -6562,7 +6573,7 @@ export const cssData = {
|
|
|
6562
6573
|
}
|
|
6563
6574
|
],
|
|
6564
6575
|
"syntax": "<grid-line> [ / <grid-line> ]?",
|
|
6565
|
-
"relevance":
|
|
6576
|
+
"relevance": 55,
|
|
6566
6577
|
"references": [
|
|
6567
6578
|
{
|
|
6568
6579
|
"name": "MDN Reference",
|
|
@@ -6670,7 +6681,7 @@ export const cssData = {
|
|
|
6670
6681
|
],
|
|
6671
6682
|
"status": "obsolete",
|
|
6672
6683
|
"syntax": "<'grid-row-gap'> <'grid-column-gap'>?",
|
|
6673
|
-
"relevance":
|
|
6684
|
+
"relevance": 4,
|
|
6674
6685
|
"description": "Shorthand that specifies the gutters between grid columns and grid rows in one declaration. Replaced by 'gap' property.",
|
|
6675
6686
|
"restrictions": [
|
|
6676
6687
|
"length"
|
|
@@ -6780,7 +6791,7 @@ export const cssData = {
|
|
|
6780
6791
|
}
|
|
6781
6792
|
],
|
|
6782
6793
|
"syntax": "<grid-line>",
|
|
6783
|
-
"relevance":
|
|
6794
|
+
"relevance": 51,
|
|
6784
6795
|
"references": [
|
|
6785
6796
|
{
|
|
6786
6797
|
"name": "MDN Reference",
|
|
@@ -6866,7 +6877,7 @@ export const cssData = {
|
|
|
6866
6877
|
}
|
|
6867
6878
|
],
|
|
6868
6879
|
"syntax": "none | <string>+",
|
|
6869
|
-
"relevance":
|
|
6880
|
+
"relevance": 55,
|
|
6870
6881
|
"references": [
|
|
6871
6882
|
{
|
|
6872
6883
|
"name": "MDN Reference",
|
|
@@ -6919,7 +6930,7 @@ export const cssData = {
|
|
|
6919
6930
|
}
|
|
6920
6931
|
],
|
|
6921
6932
|
"syntax": "none | <track-list> | <auto-track-list> | subgrid <line-name-list>?",
|
|
6922
|
-
"relevance":
|
|
6933
|
+
"relevance": 63,
|
|
6923
6934
|
"references": [
|
|
6924
6935
|
{
|
|
6925
6936
|
"name": "MDN Reference",
|
|
@@ -6975,7 +6986,7 @@ export const cssData = {
|
|
|
6975
6986
|
}
|
|
6976
6987
|
],
|
|
6977
6988
|
"syntax": "none | <track-list> | <auto-track-list> | subgrid <line-name-list>?",
|
|
6978
|
-
"relevance":
|
|
6989
|
+
"relevance": 56,
|
|
6979
6990
|
"references": [
|
|
6980
6991
|
{
|
|
6981
6992
|
"name": "MDN Reference",
|
|
@@ -7043,6 +7054,7 @@ export const cssData = {
|
|
|
7043
7054
|
"description": "Use the min-content inline size or min-content block size, as appropriate to the writing mode."
|
|
7044
7055
|
}
|
|
7045
7056
|
],
|
|
7057
|
+
"atRule": "@viewport",
|
|
7046
7058
|
"syntax": "<viewport-length>{1,2}",
|
|
7047
7059
|
"relevance": 96,
|
|
7048
7060
|
"references": [
|
|
@@ -7082,7 +7094,7 @@ export const cssData = {
|
|
|
7082
7094
|
}
|
|
7083
7095
|
],
|
|
7084
7096
|
"syntax": "none | manual | auto",
|
|
7085
|
-
"relevance":
|
|
7097
|
+
"relevance": 56,
|
|
7086
7098
|
"references": [
|
|
7087
7099
|
{
|
|
7088
7100
|
"name": "MDN Reference",
|
|
@@ -7239,7 +7251,7 @@ export const cssData = {
|
|
|
7239
7251
|
}
|
|
7240
7252
|
],
|
|
7241
7253
|
"syntax": "<'width'>",
|
|
7242
|
-
"relevance":
|
|
7254
|
+
"relevance": 53,
|
|
7243
7255
|
"references": [
|
|
7244
7256
|
{
|
|
7245
7257
|
"name": "MDN Reference",
|
|
@@ -7272,7 +7284,7 @@ export const cssData = {
|
|
|
7272
7284
|
}
|
|
7273
7285
|
],
|
|
7274
7286
|
"syntax": "auto | isolate",
|
|
7275
|
-
"relevance":
|
|
7287
|
+
"relevance": 53,
|
|
7276
7288
|
"references": [
|
|
7277
7289
|
{
|
|
7278
7290
|
"name": "MDN Reference",
|
|
@@ -7687,7 +7699,7 @@ export const cssData = {
|
|
|
7687
7699
|
}
|
|
7688
7700
|
],
|
|
7689
7701
|
"syntax": "inside | outside",
|
|
7690
|
-
"relevance":
|
|
7702
|
+
"relevance": 54,
|
|
7691
7703
|
"references": [
|
|
7692
7704
|
{
|
|
7693
7705
|
"name": "MDN Reference",
|
|
@@ -7784,7 +7796,7 @@ export const cssData = {
|
|
|
7784
7796
|
}
|
|
7785
7797
|
],
|
|
7786
7798
|
"syntax": "<counter-style> | <string> | none",
|
|
7787
|
-
"relevance":
|
|
7799
|
+
"relevance": 74,
|
|
7788
7800
|
"references": [
|
|
7789
7801
|
{
|
|
7790
7802
|
"name": "MDN Reference",
|
|
@@ -7829,11 +7841,11 @@ export const cssData = {
|
|
|
7829
7841
|
{
|
|
7830
7842
|
"name": "margin-block-end",
|
|
7831
7843
|
"browsers": [
|
|
7832
|
-
"
|
|
7844
|
+
"E79",
|
|
7833
7845
|
"FF41",
|
|
7834
7846
|
"S12.1",
|
|
7835
|
-
"
|
|
7836
|
-
"
|
|
7847
|
+
"C69",
|
|
7848
|
+
"O56"
|
|
7837
7849
|
],
|
|
7838
7850
|
"values": [
|
|
7839
7851
|
{
|
|
@@ -7841,7 +7853,7 @@ export const cssData = {
|
|
|
7841
7853
|
}
|
|
7842
7854
|
],
|
|
7843
7855
|
"syntax": "<'margin-left'>",
|
|
7844
|
-
"relevance":
|
|
7856
|
+
"relevance": 55,
|
|
7845
7857
|
"references": [
|
|
7846
7858
|
{
|
|
7847
7859
|
"name": "MDN Reference",
|
|
@@ -7857,11 +7869,11 @@ export const cssData = {
|
|
|
7857
7869
|
{
|
|
7858
7870
|
"name": "margin-block-start",
|
|
7859
7871
|
"browsers": [
|
|
7860
|
-
"
|
|
7872
|
+
"E79",
|
|
7861
7873
|
"FF41",
|
|
7862
7874
|
"S12.1",
|
|
7863
|
-
"
|
|
7864
|
-
"
|
|
7875
|
+
"C69",
|
|
7876
|
+
"O56"
|
|
7865
7877
|
],
|
|
7866
7878
|
"values": [
|
|
7867
7879
|
{
|
|
@@ -7869,7 +7881,7 @@ export const cssData = {
|
|
|
7869
7881
|
}
|
|
7870
7882
|
],
|
|
7871
7883
|
"syntax": "<'margin-left'>",
|
|
7872
|
-
"relevance":
|
|
7884
|
+
"relevance": 55,
|
|
7873
7885
|
"references": [
|
|
7874
7886
|
{
|
|
7875
7887
|
"name": "MDN Reference",
|
|
@@ -7914,11 +7926,11 @@ export const cssData = {
|
|
|
7914
7926
|
{
|
|
7915
7927
|
"name": "margin-inline-end",
|
|
7916
7928
|
"browsers": [
|
|
7917
|
-
"
|
|
7929
|
+
"E79",
|
|
7918
7930
|
"FF41",
|
|
7919
7931
|
"S12.1",
|
|
7920
|
-
"
|
|
7921
|
-
"
|
|
7932
|
+
"C69",
|
|
7933
|
+
"O56"
|
|
7922
7934
|
],
|
|
7923
7935
|
"values": [
|
|
7924
7936
|
{
|
|
@@ -7926,7 +7938,7 @@ export const cssData = {
|
|
|
7926
7938
|
}
|
|
7927
7939
|
],
|
|
7928
7940
|
"syntax": "<'margin-left'>",
|
|
7929
|
-
"relevance":
|
|
7941
|
+
"relevance": 57,
|
|
7930
7942
|
"references": [
|
|
7931
7943
|
{
|
|
7932
7944
|
"name": "MDN Reference",
|
|
@@ -7942,11 +7954,11 @@ export const cssData = {
|
|
|
7942
7954
|
{
|
|
7943
7955
|
"name": "margin-inline-start",
|
|
7944
7956
|
"browsers": [
|
|
7945
|
-
"
|
|
7957
|
+
"E79",
|
|
7946
7958
|
"FF41",
|
|
7947
7959
|
"S12.1",
|
|
7948
|
-
"
|
|
7949
|
-
"
|
|
7960
|
+
"C69",
|
|
7961
|
+
"O56"
|
|
7950
7962
|
],
|
|
7951
7963
|
"values": [
|
|
7952
7964
|
{
|
|
@@ -7954,7 +7966,7 @@ export const cssData = {
|
|
|
7954
7966
|
}
|
|
7955
7967
|
],
|
|
7956
7968
|
"syntax": "<'margin-left'>",
|
|
7957
|
-
"relevance":
|
|
7969
|
+
"relevance": 58,
|
|
7958
7970
|
"references": [
|
|
7959
7971
|
{
|
|
7960
7972
|
"name": "MDN Reference",
|
|
@@ -8415,6 +8427,7 @@ export const cssData = {
|
|
|
8415
8427
|
"description": "Use the min-content inline size or min-content block size, as appropriate to the writing mode."
|
|
8416
8428
|
}
|
|
8417
8429
|
],
|
|
8430
|
+
"atRule": "@viewport",
|
|
8418
8431
|
"syntax": "<viewport-length>",
|
|
8419
8432
|
"relevance": 85,
|
|
8420
8433
|
"references": [
|
|
@@ -8510,6 +8523,7 @@ export const cssData = {
|
|
|
8510
8523
|
"description": "Use the min-content inline size or min-content block size, as appropriate to the writing mode."
|
|
8511
8524
|
}
|
|
8512
8525
|
],
|
|
8526
|
+
"atRule": "@viewport",
|
|
8513
8527
|
"syntax": "<viewport-length>",
|
|
8514
8528
|
"relevance": 90,
|
|
8515
8529
|
"references": [
|
|
@@ -8606,6 +8620,7 @@ export const cssData = {
|
|
|
8606
8620
|
"description": "Use the min-content inline size or min-content block size, as appropriate to the writing mode."
|
|
8607
8621
|
}
|
|
8608
8622
|
],
|
|
8623
|
+
"atRule": "@viewport",
|
|
8609
8624
|
"syntax": "<viewport-length>",
|
|
8610
8625
|
"relevance": 89,
|
|
8611
8626
|
"references": [
|
|
@@ -8630,7 +8645,7 @@ export const cssData = {
|
|
|
8630
8645
|
"O44"
|
|
8631
8646
|
],
|
|
8632
8647
|
"syntax": "<'min-width'>",
|
|
8633
|
-
"relevance":
|
|
8648
|
+
"relevance": 53,
|
|
8634
8649
|
"references": [
|
|
8635
8650
|
{
|
|
8636
8651
|
"name": "MDN Reference",
|
|
@@ -8702,6 +8717,7 @@ export const cssData = {
|
|
|
8702
8717
|
"description": "Use the min-content inline size or min-content block size, as appropriate to the writing mode."
|
|
8703
8718
|
}
|
|
8704
8719
|
],
|
|
8720
|
+
"atRule": "@viewport",
|
|
8705
8721
|
"syntax": "<viewport-length>",
|
|
8706
8722
|
"relevance": 88,
|
|
8707
8723
|
"references": [
|
|
@@ -12601,6 +12617,7 @@ export const cssData = {
|
|
|
12601
12617
|
"browsers": [
|
|
12602
12618
|
"FF33"
|
|
12603
12619
|
],
|
|
12620
|
+
"atRule": "@counter-style",
|
|
12604
12621
|
"syntax": "<symbol> <symbol>?",
|
|
12605
12622
|
"relevance": 50,
|
|
12606
12623
|
"description": "@counter-style descriptor. Defines how to alter the representation when the counter value is negative.",
|
|
@@ -12843,7 +12860,7 @@ export const cssData = {
|
|
|
12843
12860
|
}
|
|
12844
12861
|
],
|
|
12845
12862
|
"syntax": "fill | contain | cover | none | scale-down",
|
|
12846
|
-
"relevance":
|
|
12863
|
+
"relevance": 71,
|
|
12847
12864
|
"references": [
|
|
12848
12865
|
{
|
|
12849
12866
|
"name": "MDN Reference",
|
|
@@ -12865,7 +12882,7 @@ export const cssData = {
|
|
|
12865
12882
|
"O19"
|
|
12866
12883
|
],
|
|
12867
12884
|
"syntax": "<position>",
|
|
12868
|
-
"relevance":
|
|
12885
|
+
"relevance": 57,
|
|
12869
12886
|
"references": [
|
|
12870
12887
|
{
|
|
12871
12888
|
"name": "MDN Reference",
|
|
@@ -13345,7 +13362,7 @@ export const cssData = {
|
|
|
13345
13362
|
"browsers": [
|
|
13346
13363
|
"E94",
|
|
13347
13364
|
"FF88",
|
|
13348
|
-
"
|
|
13365
|
+
"S16.4",
|
|
13349
13366
|
"C94",
|
|
13350
13367
|
"IE8",
|
|
13351
13368
|
"O80"
|
|
@@ -13360,7 +13377,7 @@ export const cssData = {
|
|
|
13360
13377
|
"browsers": [
|
|
13361
13378
|
"E94",
|
|
13362
13379
|
"FF88",
|
|
13363
|
-
"
|
|
13380
|
+
"S16.4",
|
|
13364
13381
|
"C94",
|
|
13365
13382
|
"IE8",
|
|
13366
13383
|
"O80"
|
|
@@ -13410,7 +13427,7 @@ export const cssData = {
|
|
|
13410
13427
|
}
|
|
13411
13428
|
],
|
|
13412
13429
|
"syntax": "<color> | invert",
|
|
13413
|
-
"relevance":
|
|
13430
|
+
"relevance": 62,
|
|
13414
13431
|
"references": [
|
|
13415
13432
|
{
|
|
13416
13433
|
"name": "MDN Reference",
|
|
@@ -13433,7 +13450,7 @@ export const cssData = {
|
|
|
13433
13450
|
"O9.5"
|
|
13434
13451
|
],
|
|
13435
13452
|
"syntax": "<length>",
|
|
13436
|
-
"relevance":
|
|
13453
|
+
"relevance": 69,
|
|
13437
13454
|
"references": [
|
|
13438
13455
|
{
|
|
13439
13456
|
"name": "MDN Reference",
|
|
@@ -13462,7 +13479,7 @@ export const cssData = {
|
|
|
13462
13479
|
}
|
|
13463
13480
|
],
|
|
13464
13481
|
"syntax": "auto | <'border-style'>",
|
|
13465
|
-
"relevance":
|
|
13482
|
+
"relevance": 61,
|
|
13466
13483
|
"references": [
|
|
13467
13484
|
{
|
|
13468
13485
|
"name": "MDN Reference",
|
|
@@ -13486,7 +13503,7 @@ export const cssData = {
|
|
|
13486
13503
|
"O7"
|
|
13487
13504
|
],
|
|
13488
13505
|
"syntax": "<line-width>",
|
|
13489
|
-
"relevance":
|
|
13506
|
+
"relevance": 61,
|
|
13490
13507
|
"references": [
|
|
13491
13508
|
{
|
|
13492
13509
|
"name": "MDN Reference",
|
|
@@ -13573,7 +13590,7 @@ export const cssData = {
|
|
|
13573
13590
|
}
|
|
13574
13591
|
],
|
|
13575
13592
|
"syntax": "normal | break-word | anywhere",
|
|
13576
|
-
"relevance":
|
|
13593
|
+
"relevance": 65,
|
|
13577
13594
|
"references": [
|
|
13578
13595
|
{
|
|
13579
13596
|
"name": "MDN Reference",
|
|
@@ -13655,7 +13672,7 @@ export const cssData = {
|
|
|
13655
13672
|
}
|
|
13656
13673
|
],
|
|
13657
13674
|
"syntax": "visible | hidden | clip | scroll | auto",
|
|
13658
|
-
"relevance":
|
|
13675
|
+
"relevance": 82,
|
|
13659
13676
|
"references": [
|
|
13660
13677
|
{
|
|
13661
13678
|
"name": "MDN Reference",
|
|
@@ -13672,6 +13689,7 @@ export const cssData = {
|
|
|
13672
13689
|
"browsers": [
|
|
13673
13690
|
"FF33"
|
|
13674
13691
|
],
|
|
13692
|
+
"atRule": "@counter-style",
|
|
13675
13693
|
"syntax": "<integer> && <symbol>",
|
|
13676
13694
|
"relevance": 50,
|
|
13677
13695
|
"description": "@counter-style descriptor. Specifies a \"fixed-width\" counter style, where representations shorter than the pad value are padded with a particular <symbol>",
|
|
@@ -13694,7 +13712,7 @@ export const cssData = {
|
|
|
13694
13712
|
],
|
|
13695
13713
|
"values": [],
|
|
13696
13714
|
"syntax": "[ <length> | <percentage> ]{1,4}",
|
|
13697
|
-
"relevance":
|
|
13715
|
+
"relevance": 95,
|
|
13698
13716
|
"references": [
|
|
13699
13717
|
{
|
|
13700
13718
|
"name": "MDN Reference",
|
|
@@ -13734,11 +13752,11 @@ export const cssData = {
|
|
|
13734
13752
|
{
|
|
13735
13753
|
"name": "padding-block-end",
|
|
13736
13754
|
"browsers": [
|
|
13737
|
-
"
|
|
13755
|
+
"E79",
|
|
13738
13756
|
"FF41",
|
|
13739
13757
|
"S12.1",
|
|
13740
|
-
"
|
|
13741
|
-
"
|
|
13758
|
+
"C69",
|
|
13759
|
+
"O56"
|
|
13742
13760
|
],
|
|
13743
13761
|
"syntax": "<'padding-left'>",
|
|
13744
13762
|
"relevance": 50,
|
|
@@ -13757,11 +13775,11 @@ export const cssData = {
|
|
|
13757
13775
|
{
|
|
13758
13776
|
"name": "padding-block-start",
|
|
13759
13777
|
"browsers": [
|
|
13760
|
-
"
|
|
13778
|
+
"E79",
|
|
13761
13779
|
"FF41",
|
|
13762
13780
|
"S12.1",
|
|
13763
|
-
"
|
|
13764
|
-
"
|
|
13781
|
+
"C69",
|
|
13782
|
+
"O56"
|
|
13765
13783
|
],
|
|
13766
13784
|
"syntax": "<'padding-left'>",
|
|
13767
13785
|
"relevance": 50,
|
|
@@ -13780,14 +13798,14 @@ export const cssData = {
|
|
|
13780
13798
|
{
|
|
13781
13799
|
"name": "padding-inline-end",
|
|
13782
13800
|
"browsers": [
|
|
13783
|
-
"
|
|
13801
|
+
"E79",
|
|
13784
13802
|
"FF41",
|
|
13785
13803
|
"S12.1",
|
|
13786
|
-
"
|
|
13787
|
-
"
|
|
13804
|
+
"C69",
|
|
13805
|
+
"O56"
|
|
13788
13806
|
],
|
|
13789
13807
|
"syntax": "<'padding-left'>",
|
|
13790
|
-
"relevance":
|
|
13808
|
+
"relevance": 55,
|
|
13791
13809
|
"references": [
|
|
13792
13810
|
{
|
|
13793
13811
|
"name": "MDN Reference",
|
|
@@ -13803,14 +13821,14 @@ export const cssData = {
|
|
|
13803
13821
|
{
|
|
13804
13822
|
"name": "padding-inline-start",
|
|
13805
13823
|
"browsers": [
|
|
13806
|
-
"
|
|
13824
|
+
"E79",
|
|
13807
13825
|
"FF41",
|
|
13808
13826
|
"S12.1",
|
|
13809
|
-
"
|
|
13810
|
-
"
|
|
13827
|
+
"C69",
|
|
13828
|
+
"O56"
|
|
13811
13829
|
],
|
|
13812
13830
|
"syntax": "<'padding-left'>",
|
|
13813
|
-
"relevance":
|
|
13831
|
+
"relevance": 56,
|
|
13814
13832
|
"references": [
|
|
13815
13833
|
{
|
|
13816
13834
|
"name": "MDN Reference",
|
|
@@ -14236,7 +14254,7 @@ export const cssData = {
|
|
|
14236
14254
|
}
|
|
14237
14255
|
],
|
|
14238
14256
|
"syntax": "static | relative | absolute | sticky | fixed",
|
|
14239
|
-
"relevance":
|
|
14257
|
+
"relevance": 95,
|
|
14240
14258
|
"references": [
|
|
14241
14259
|
{
|
|
14242
14260
|
"name": "MDN Reference",
|
|
@@ -14253,6 +14271,7 @@ export const cssData = {
|
|
|
14253
14271
|
"browsers": [
|
|
14254
14272
|
"FF33"
|
|
14255
14273
|
],
|
|
14274
|
+
"atRule": "@counter-style",
|
|
14256
14275
|
"syntax": "<symbol>",
|
|
14257
14276
|
"relevance": 50,
|
|
14258
14277
|
"description": "@counter-style descriptor. Specifies a <symbol> that is prepended to the marker representation.",
|
|
@@ -14306,6 +14325,7 @@ export const cssData = {
|
|
|
14306
14325
|
"description": "If used as the first value in a range, it represents negative infinity; if used as the second value, it represents positive infinity."
|
|
14307
14326
|
}
|
|
14308
14327
|
],
|
|
14328
|
+
"atRule": "@counter-style",
|
|
14309
14329
|
"syntax": "[ [ <integer> | infinite ]{2} ]# | auto",
|
|
14310
14330
|
"relevance": 50,
|
|
14311
14331
|
"description": "@counter-style descriptor. Defines the ranges over which the counter style is defined.",
|
|
@@ -14342,7 +14362,7 @@ export const cssData = {
|
|
|
14342
14362
|
}
|
|
14343
14363
|
],
|
|
14344
14364
|
"syntax": "none | both | horizontal | vertical | block | inline",
|
|
14345
|
-
"relevance":
|
|
14365
|
+
"relevance": 64,
|
|
14346
14366
|
"references": [
|
|
14347
14367
|
{
|
|
14348
14368
|
"name": "MDN Reference",
|
|
@@ -14709,7 +14729,7 @@ export const cssData = {
|
|
|
14709
14729
|
}
|
|
14710
14730
|
],
|
|
14711
14731
|
"syntax": "auto | smooth",
|
|
14712
|
-
"relevance":
|
|
14732
|
+
"relevance": 55,
|
|
14713
14733
|
"references": [
|
|
14714
14734
|
{
|
|
14715
14735
|
"name": "MDN Reference",
|
|
@@ -14735,12 +14755,6 @@ export const cssData = {
|
|
|
14735
14755
|
"status": "obsolete",
|
|
14736
14756
|
"syntax": "none | <position>#",
|
|
14737
14757
|
"relevance": 0,
|
|
14738
|
-
"references": [
|
|
14739
|
-
{
|
|
14740
|
-
"name": "MDN Reference",
|
|
14741
|
-
"url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-coordinate"
|
|
14742
|
-
}
|
|
14743
|
-
],
|
|
14744
14758
|
"description": "Defines the x and y coordinate within the element which will align with the nearest ancestor scroll container's snap-destination for the respective axis.",
|
|
14745
14759
|
"restrictions": [
|
|
14746
14760
|
"position",
|
|
@@ -14757,12 +14771,6 @@ export const cssData = {
|
|
|
14757
14771
|
"status": "obsolete",
|
|
14758
14772
|
"syntax": "<position>",
|
|
14759
14773
|
"relevance": 0,
|
|
14760
|
-
"references": [
|
|
14761
|
-
{
|
|
14762
|
-
"name": "MDN Reference",
|
|
14763
|
-
"url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-destination"
|
|
14764
|
-
}
|
|
14765
|
-
],
|
|
14766
14774
|
"description": "Define the x and y coordinate within the scroll container's visual viewport which element snap points will align with.",
|
|
14767
14775
|
"restrictions": [
|
|
14768
14776
|
"position",
|
|
@@ -14773,8 +14781,7 @@ export const cssData = {
|
|
|
14773
14781
|
{
|
|
14774
14782
|
"name": "scroll-snap-points-x",
|
|
14775
14783
|
"browsers": [
|
|
14776
|
-
"FF39"
|
|
14777
|
-
"S9"
|
|
14784
|
+
"FF39"
|
|
14778
14785
|
],
|
|
14779
14786
|
"values": [
|
|
14780
14787
|
{
|
|
@@ -14789,12 +14796,6 @@ export const cssData = {
|
|
|
14789
14796
|
"status": "obsolete",
|
|
14790
14797
|
"syntax": "none | repeat( <length-percentage> )",
|
|
14791
14798
|
"relevance": 0,
|
|
14792
|
-
"references": [
|
|
14793
|
-
{
|
|
14794
|
-
"name": "MDN Reference",
|
|
14795
|
-
"url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-points-x"
|
|
14796
|
-
}
|
|
14797
|
-
],
|
|
14798
14799
|
"description": "Defines the positioning of snap points along the x axis of the scroll container it is applied to.",
|
|
14799
14800
|
"restrictions": [
|
|
14800
14801
|
"enum"
|
|
@@ -14803,8 +14804,7 @@ export const cssData = {
|
|
|
14803
14804
|
{
|
|
14804
14805
|
"name": "scroll-snap-points-y",
|
|
14805
14806
|
"browsers": [
|
|
14806
|
-
"FF39"
|
|
14807
|
-
"S9"
|
|
14807
|
+
"FF39"
|
|
14808
14808
|
],
|
|
14809
14809
|
"values": [
|
|
14810
14810
|
{
|
|
@@ -14819,12 +14819,6 @@ export const cssData = {
|
|
|
14819
14819
|
"status": "obsolete",
|
|
14820
14820
|
"syntax": "none | repeat( <length-percentage> )",
|
|
14821
14821
|
"relevance": 0,
|
|
14822
|
-
"references": [
|
|
14823
|
-
{
|
|
14824
|
-
"name": "MDN Reference",
|
|
14825
|
-
"url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-points-y"
|
|
14826
|
-
}
|
|
14827
|
-
],
|
|
14828
14822
|
"description": "Defines the positioning of snap points along the y axis of the scroll container it is applied to.",
|
|
14829
14823
|
"restrictions": [
|
|
14830
14824
|
"enum"
|
|
@@ -14855,7 +14849,7 @@ export const cssData = {
|
|
|
14855
14849
|
}
|
|
14856
14850
|
],
|
|
14857
14851
|
"syntax": "none | [ x | y | block | inline | both ] [ mandatory | proximity ]?",
|
|
14858
|
-
"relevance":
|
|
14852
|
+
"relevance": 54,
|
|
14859
14853
|
"references": [
|
|
14860
14854
|
{
|
|
14861
14855
|
"name": "MDN Reference",
|
|
@@ -14980,6 +14974,7 @@ export const cssData = {
|
|
|
14980
14974
|
"C",
|
|
14981
14975
|
"O8"
|
|
14982
14976
|
],
|
|
14977
|
+
"atRule": "@page",
|
|
14983
14978
|
"syntax": "<length>{1,2} | auto | [ <page-size> || [ portrait | landscape ] ]",
|
|
14984
14979
|
"relevance": 53,
|
|
14985
14980
|
"description": "The size CSS at-rule descriptor, used with the @page at-rule, defines the size and orientation of the box which is used to represent a page. Most of the time, this size corresponds to the target size of the printed page if applicable.",
|
|
@@ -15003,8 +14998,9 @@ export const cssData = {
|
|
|
15003
14998
|
"description": "Format-specific string that identifies a locally available copy of a given font."
|
|
15004
14999
|
}
|
|
15005
15000
|
],
|
|
15001
|
+
"atRule": "@font-face",
|
|
15006
15002
|
"syntax": "[ <url> [ format( <string># ) ]? | local( <family-name> ) ]#",
|
|
15007
|
-
"relevance":
|
|
15003
|
+
"relevance": 86,
|
|
15008
15004
|
"description": "@font-face descriptor. Specifies the resource containing font data. It is required, whether the font is downloadable or locally installed.",
|
|
15009
15005
|
"restrictions": [
|
|
15010
15006
|
"enum",
|
|
@@ -15014,7 +15010,7 @@ export const cssData = {
|
|
|
15014
15010
|
},
|
|
15015
15011
|
{
|
|
15016
15012
|
"name": "stop-color",
|
|
15017
|
-
"relevance":
|
|
15013
|
+
"relevance": 50,
|
|
15018
15014
|
"description": "Indicates what color to use at that gradient stop.",
|
|
15019
15015
|
"restrictions": [
|
|
15020
15016
|
"color"
|
|
@@ -15040,7 +15036,7 @@ export const cssData = {
|
|
|
15040
15036
|
"description": "No paint is applied in this layer."
|
|
15041
15037
|
}
|
|
15042
15038
|
],
|
|
15043
|
-
"relevance":
|
|
15039
|
+
"relevance": 66,
|
|
15044
15040
|
"description": "Paints along the outline of the given graphical element.",
|
|
15045
15041
|
"restrictions": [
|
|
15046
15042
|
"color",
|
|
@@ -15056,7 +15052,7 @@ export const cssData = {
|
|
|
15056
15052
|
"description": "Indicates that no dashing is used."
|
|
15057
15053
|
}
|
|
15058
15054
|
],
|
|
15059
|
-
"relevance":
|
|
15055
|
+
"relevance": 61,
|
|
15060
15056
|
"description": "Controls the pattern of dashes and gaps used to stroke paths.",
|
|
15061
15057
|
"restrictions": [
|
|
15062
15058
|
"length",
|
|
@@ -15128,7 +15124,7 @@ export const cssData = {
|
|
|
15128
15124
|
},
|
|
15129
15125
|
{
|
|
15130
15126
|
"name": "stroke-opacity",
|
|
15131
|
-
"relevance":
|
|
15127
|
+
"relevance": 52,
|
|
15132
15128
|
"description": "Specifies the opacity of the painting operation used to stroke the current object.",
|
|
15133
15129
|
"restrictions": [
|
|
15134
15130
|
"number(0-1)"
|
|
@@ -15148,6 +15144,7 @@ export const cssData = {
|
|
|
15148
15144
|
"browsers": [
|
|
15149
15145
|
"FF33"
|
|
15150
15146
|
],
|
|
15147
|
+
"atRule": "@counter-style",
|
|
15151
15148
|
"syntax": "<symbol>",
|
|
15152
15149
|
"relevance": 50,
|
|
15153
15150
|
"description": "@counter-style descriptor. Specifies a <symbol> that is appended to the marker representation.",
|
|
@@ -15192,6 +15189,7 @@ export const cssData = {
|
|
|
15192
15189
|
"description": "Cycles repeatedly through its provided symbols, doubling, tripling, etc. the symbols on each successive pass through the list."
|
|
15193
15190
|
}
|
|
15194
15191
|
],
|
|
15192
|
+
"atRule": "@counter-style",
|
|
15195
15193
|
"syntax": "cyclic | numeric | alphabetic | symbolic | additive | [ fixed <integer>? ] | [ extends <counter-style-name> ]",
|
|
15196
15194
|
"relevance": 50,
|
|
15197
15195
|
"description": "@counter-style descriptor. Specifies which algorithm will be used to construct the counter's representation based on the counter value.",
|
|
@@ -15205,6 +15203,7 @@ export const cssData = {
|
|
|
15205
15203
|
"browsers": [
|
|
15206
15204
|
"FF33"
|
|
15207
15205
|
],
|
|
15206
|
+
"atRule": "@counter-style",
|
|
15208
15207
|
"syntax": "<symbol>+",
|
|
15209
15208
|
"relevance": 50,
|
|
15210
15209
|
"description": "@counter-style descriptor. Specifies the symbols used by the marker-construction algorithm specified by the system descriptor.",
|
|
@@ -15257,7 +15256,7 @@ export const cssData = {
|
|
|
15257
15256
|
"O15"
|
|
15258
15257
|
],
|
|
15259
15258
|
"syntax": "<integer> | <length>",
|
|
15260
|
-
"relevance":
|
|
15259
|
+
"relevance": 53,
|
|
15261
15260
|
"references": [
|
|
15262
15261
|
{
|
|
15263
15262
|
"name": "MDN Reference",
|
|
@@ -15586,7 +15585,7 @@ export const cssData = {
|
|
|
15586
15585
|
],
|
|
15587
15586
|
"values": [],
|
|
15588
15587
|
"syntax": "<length-percentage> && hanging? && each-line?",
|
|
15589
|
-
"relevance":
|
|
15588
|
+
"relevance": 68,
|
|
15590
15589
|
"references": [
|
|
15591
15590
|
{
|
|
15592
15591
|
"name": "MDN Reference",
|
|
@@ -15602,7 +15601,7 @@ export const cssData = {
|
|
|
15602
15601
|
{
|
|
15603
15602
|
"name": "text-justify",
|
|
15604
15603
|
"browsers": [
|
|
15605
|
-
"
|
|
15604
|
+
"E79",
|
|
15606
15605
|
"FF55",
|
|
15607
15606
|
"C32",
|
|
15608
15607
|
"IE11",
|
|
@@ -15724,7 +15723,7 @@ export const cssData = {
|
|
|
15724
15723
|
}
|
|
15725
15724
|
],
|
|
15726
15725
|
"syntax": "[ clip | ellipsis | <string> ]{1,2}",
|
|
15727
|
-
"relevance":
|
|
15726
|
+
"relevance": 81,
|
|
15728
15727
|
"references": [
|
|
15729
15728
|
{
|
|
15730
15729
|
"name": "MDN Reference",
|
|
@@ -15764,7 +15763,7 @@ export const cssData = {
|
|
|
15764
15763
|
}
|
|
15765
15764
|
],
|
|
15766
15765
|
"syntax": "auto | optimizeSpeed | optimizeLegibility | geometricPrecision",
|
|
15767
|
-
"relevance":
|
|
15766
|
+
"relevance": 69,
|
|
15768
15767
|
"references": [
|
|
15769
15768
|
{
|
|
15770
15769
|
"name": "MDN Reference",
|
|
@@ -15793,7 +15792,7 @@ export const cssData = {
|
|
|
15793
15792
|
}
|
|
15794
15793
|
],
|
|
15795
15794
|
"syntax": "none | <shadow-t>#",
|
|
15796
|
-
"relevance":
|
|
15795
|
+
"relevance": 72,
|
|
15797
15796
|
"references": [
|
|
15798
15797
|
{
|
|
15799
15798
|
"name": "MDN Reference",
|
|
@@ -15990,7 +15989,7 @@ export const cssData = {
|
|
|
15990
15989
|
}
|
|
15991
15990
|
],
|
|
15992
15991
|
"syntax": "auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation",
|
|
15993
|
-
"relevance":
|
|
15992
|
+
"relevance": 69,
|
|
15994
15993
|
"references": [
|
|
15995
15994
|
{
|
|
15996
15995
|
"name": "MDN Reference",
|
|
@@ -16225,7 +16224,7 @@ export const cssData = {
|
|
|
16225
16224
|
"O12.1"
|
|
16226
16225
|
],
|
|
16227
16226
|
"syntax": "<time>#",
|
|
16228
|
-
"relevance":
|
|
16227
|
+
"relevance": 63,
|
|
16229
16228
|
"references": [
|
|
16230
16229
|
{
|
|
16231
16230
|
"name": "MDN Reference",
|
|
@@ -16248,7 +16247,7 @@ export const cssData = {
|
|
|
16248
16247
|
"O12.1"
|
|
16249
16248
|
],
|
|
16250
16249
|
"syntax": "<time>#",
|
|
16251
|
-
"relevance":
|
|
16250
|
+
"relevance": 67,
|
|
16252
16251
|
"references": [
|
|
16253
16252
|
{
|
|
16254
16253
|
"name": "MDN Reference",
|
|
@@ -16281,7 +16280,7 @@ export const cssData = {
|
|
|
16281
16280
|
}
|
|
16282
16281
|
],
|
|
16283
16282
|
"syntax": "none | <single-transition-property>#",
|
|
16284
|
-
"relevance":
|
|
16283
|
+
"relevance": 67,
|
|
16285
16284
|
"references": [
|
|
16286
16285
|
{
|
|
16287
16286
|
"name": "MDN Reference",
|
|
@@ -16377,7 +16376,7 @@ export const cssData = {
|
|
|
16377
16376
|
}
|
|
16378
16377
|
],
|
|
16379
16378
|
"syntax": "normal | embed | isolate | bidi-override | isolate-override | plaintext",
|
|
16380
|
-
"relevance":
|
|
16379
|
+
"relevance": 56,
|
|
16381
16380
|
"references": [
|
|
16382
16381
|
{
|
|
16383
16382
|
"name": "MDN Reference",
|
|
@@ -16701,6 +16700,7 @@ export const cssData = {
|
|
|
16701
16700
|
"description": "Emoji: Transport and Map Symbols."
|
|
16702
16701
|
}
|
|
16703
16702
|
],
|
|
16703
|
+
"atRule": "@font-face",
|
|
16704
16704
|
"syntax": "<unicode-range>#",
|
|
16705
16705
|
"relevance": 72,
|
|
16706
16706
|
"description": "@font-face descriptor. Defines the set of Unicode codepoints that may be supported by the font face for which it is declared.",
|
|
@@ -16740,7 +16740,7 @@ export const cssData = {
|
|
|
16740
16740
|
}
|
|
16741
16741
|
],
|
|
16742
16742
|
"syntax": "auto | text | none | contain | all",
|
|
16743
|
-
"relevance":
|
|
16743
|
+
"relevance": 82,
|
|
16744
16744
|
"references": [
|
|
16745
16745
|
{
|
|
16746
16746
|
"name": "MDN Reference",
|
|
@@ -16850,7 +16850,7 @@ export const cssData = {
|
|
|
16850
16850
|
}
|
|
16851
16851
|
],
|
|
16852
16852
|
"syntax": "visible | hidden | collapse",
|
|
16853
|
-
"relevance":
|
|
16853
|
+
"relevance": 87,
|
|
16854
16854
|
"references": [
|
|
16855
16855
|
{
|
|
16856
16856
|
"name": "MDN Reference",
|
|
@@ -19082,6 +19082,7 @@ export const cssData = {
|
|
|
19082
19082
|
"description": "Use the min-content inline size or min-content block size, as appropriate to the writing mode."
|
|
19083
19083
|
}
|
|
19084
19084
|
],
|
|
19085
|
+
"atRule": "@viewport",
|
|
19085
19086
|
"syntax": "<viewport-length>{1,2}",
|
|
19086
19087
|
"relevance": 96,
|
|
19087
19088
|
"references": [
|
|
@@ -19120,7 +19121,7 @@ export const cssData = {
|
|
|
19120
19121
|
}
|
|
19121
19122
|
],
|
|
19122
19123
|
"syntax": "auto | <animateable-feature>#",
|
|
19123
|
-
"relevance":
|
|
19124
|
+
"relevance": 65,
|
|
19124
19125
|
"references": [
|
|
19125
19126
|
{
|
|
19126
19127
|
"name": "MDN Reference",
|
|
@@ -19213,7 +19214,7 @@ export const cssData = {
|
|
|
19213
19214
|
}
|
|
19214
19215
|
],
|
|
19215
19216
|
"syntax": "normal | break-word",
|
|
19216
|
-
"relevance":
|
|
19217
|
+
"relevance": 77,
|
|
19217
19218
|
"description": "Specifies whether the UA may break within a word to prevent overflow when an otherwise-unbreakable string is too long to fit.",
|
|
19218
19219
|
"restrictions": [
|
|
19219
19220
|
"enum"
|
|
@@ -19323,8 +19324,9 @@ export const cssData = {
|
|
|
19323
19324
|
"name": "normal"
|
|
19324
19325
|
}
|
|
19325
19326
|
],
|
|
19327
|
+
"atRule": "@viewport",
|
|
19326
19328
|
"syntax": "auto | <number> | <percentage>",
|
|
19327
|
-
"relevance":
|
|
19329
|
+
"relevance": 65,
|
|
19328
19330
|
"references": [
|
|
19329
19331
|
{
|
|
19330
19332
|
"name": "MDN Reference",
|
|
@@ -19470,82 +19472,37 @@ export const cssData = {
|
|
|
19470
19472
|
},
|
|
19471
19473
|
{
|
|
19472
19474
|
"name": "-moz-outline-radius",
|
|
19473
|
-
"status": "
|
|
19475
|
+
"status": "nonstandard",
|
|
19474
19476
|
"syntax": "<outline-radius>{1,4} [ / <outline-radius>{1,4} ]?",
|
|
19475
19477
|
"relevance": 0,
|
|
19476
|
-
"browsers": [
|
|
19477
|
-
"FF1"
|
|
19478
|
-
],
|
|
19479
|
-
"references": [
|
|
19480
|
-
{
|
|
19481
|
-
"name": "MDN Reference",
|
|
19482
|
-
"url": "https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius"
|
|
19483
|
-
}
|
|
19484
|
-
],
|
|
19485
19478
|
"description": "In Mozilla applications like Firefox, the -moz-outline-radius CSS property can be used to give an element's outline rounded corners."
|
|
19486
19479
|
},
|
|
19487
19480
|
{
|
|
19488
19481
|
"name": "-moz-outline-radius-bottomleft",
|
|
19489
|
-
"status": "
|
|
19482
|
+
"status": "nonstandard",
|
|
19490
19483
|
"syntax": "<outline-radius>",
|
|
19491
19484
|
"relevance": 0,
|
|
19492
|
-
"browsers": [
|
|
19493
|
-
"FF1"
|
|
19494
|
-
],
|
|
19495
|
-
"references": [
|
|
19496
|
-
{
|
|
19497
|
-
"name": "MDN Reference",
|
|
19498
|
-
"url": "https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-bottomleft"
|
|
19499
|
-
}
|
|
19500
|
-
],
|
|
19501
19485
|
"description": "In Mozilla applications, the -moz-outline-radius-bottomleft CSS property can be used to round the bottom-left corner of an element's outline."
|
|
19502
19486
|
},
|
|
19503
19487
|
{
|
|
19504
19488
|
"name": "-moz-outline-radius-bottomright",
|
|
19505
|
-
"status": "
|
|
19489
|
+
"status": "nonstandard",
|
|
19506
19490
|
"syntax": "<outline-radius>",
|
|
19507
19491
|
"relevance": 0,
|
|
19508
|
-
"browsers": [
|
|
19509
|
-
"FF1"
|
|
19510
|
-
],
|
|
19511
|
-
"references": [
|
|
19512
|
-
{
|
|
19513
|
-
"name": "MDN Reference",
|
|
19514
|
-
"url": "https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-bottomright"
|
|
19515
|
-
}
|
|
19516
|
-
],
|
|
19517
19492
|
"description": "In Mozilla applications, the -moz-outline-radius-bottomright CSS property can be used to round the bottom-right corner of an element's outline."
|
|
19518
19493
|
},
|
|
19519
19494
|
{
|
|
19520
19495
|
"name": "-moz-outline-radius-topleft",
|
|
19521
|
-
"status": "
|
|
19496
|
+
"status": "nonstandard",
|
|
19522
19497
|
"syntax": "<outline-radius>",
|
|
19523
19498
|
"relevance": 0,
|
|
19524
|
-
"browsers": [
|
|
19525
|
-
"FF1"
|
|
19526
|
-
],
|
|
19527
|
-
"references": [
|
|
19528
|
-
{
|
|
19529
|
-
"name": "MDN Reference",
|
|
19530
|
-
"url": "https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-topleft"
|
|
19531
|
-
}
|
|
19532
|
-
],
|
|
19533
19499
|
"description": "In Mozilla applications, the -moz-outline-radius-topleft CSS property can be used to round the top-left corner of an element's outline."
|
|
19534
19500
|
},
|
|
19535
19501
|
{
|
|
19536
19502
|
"name": "-moz-outline-radius-topright",
|
|
19537
|
-
"status": "
|
|
19503
|
+
"status": "nonstandard",
|
|
19538
19504
|
"syntax": "<outline-radius>",
|
|
19539
19505
|
"relevance": 0,
|
|
19540
|
-
"browsers": [
|
|
19541
|
-
"FF1"
|
|
19542
|
-
],
|
|
19543
|
-
"references": [
|
|
19544
|
-
{
|
|
19545
|
-
"name": "MDN Reference",
|
|
19546
|
-
"url": "https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-topright"
|
|
19547
|
-
}
|
|
19548
|
-
],
|
|
19549
19506
|
"description": "In Mozilla applications, the -moz-outline-radius-topright CSS property can be used to round the top-right corner of an element's outline."
|
|
19550
19507
|
},
|
|
19551
19508
|
{
|
|
@@ -19918,12 +19875,14 @@ export const cssData = {
|
|
|
19918
19875
|
},
|
|
19919
19876
|
{
|
|
19920
19877
|
"name": "animation-composition",
|
|
19921
|
-
"status": "experimental",
|
|
19922
19878
|
"syntax": "<single-animation-composition>#",
|
|
19923
19879
|
"relevance": 50,
|
|
19924
19880
|
"browsers": [
|
|
19925
|
-
"
|
|
19926
|
-
"
|
|
19881
|
+
"E112",
|
|
19882
|
+
"FF115",
|
|
19883
|
+
"S16",
|
|
19884
|
+
"C112",
|
|
19885
|
+
"O98"
|
|
19927
19886
|
],
|
|
19928
19887
|
"references": [
|
|
19929
19888
|
{
|
|
@@ -19933,13 +19892,67 @@ export const cssData = {
|
|
|
19933
19892
|
],
|
|
19934
19893
|
"description": "The composite operation to use when multiple animations affect the same property."
|
|
19935
19894
|
},
|
|
19895
|
+
{
|
|
19896
|
+
"name": "animation-range",
|
|
19897
|
+
"status": "experimental",
|
|
19898
|
+
"syntax": "[ <'animation-range-start'> <'animation-range-end'>? ]#",
|
|
19899
|
+
"relevance": 50,
|
|
19900
|
+
"browsers": [
|
|
19901
|
+
"E115",
|
|
19902
|
+
"C115"
|
|
19903
|
+
],
|
|
19904
|
+
"references": [
|
|
19905
|
+
{
|
|
19906
|
+
"name": "MDN Reference",
|
|
19907
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/animation-range"
|
|
19908
|
+
}
|
|
19909
|
+
],
|
|
19910
|
+
"description": "The animation-range CSS shorthand property is used to set the start and end of an animation's attachment range along its timeline, i.e. where along the timeline an animation will start and end."
|
|
19911
|
+
},
|
|
19912
|
+
{
|
|
19913
|
+
"name": "animation-range-end",
|
|
19914
|
+
"status": "experimental",
|
|
19915
|
+
"syntax": "[ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]#",
|
|
19916
|
+
"relevance": 50,
|
|
19917
|
+
"browsers": [
|
|
19918
|
+
"E115",
|
|
19919
|
+
"C115"
|
|
19920
|
+
],
|
|
19921
|
+
"references": [
|
|
19922
|
+
{
|
|
19923
|
+
"name": "MDN Reference",
|
|
19924
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/animation-range-end"
|
|
19925
|
+
}
|
|
19926
|
+
],
|
|
19927
|
+
"description": "The animation-range-end CSS property is used to set the end of an animation's attachment range along its timeline, i.e. where along the timeline an animation will end."
|
|
19928
|
+
},
|
|
19929
|
+
{
|
|
19930
|
+
"name": "animation-range-start",
|
|
19931
|
+
"status": "experimental",
|
|
19932
|
+
"syntax": "[ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]#",
|
|
19933
|
+
"relevance": 50,
|
|
19934
|
+
"browsers": [
|
|
19935
|
+
"E115",
|
|
19936
|
+
"C115"
|
|
19937
|
+
],
|
|
19938
|
+
"references": [
|
|
19939
|
+
{
|
|
19940
|
+
"name": "MDN Reference",
|
|
19941
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/animation-range-start"
|
|
19942
|
+
}
|
|
19943
|
+
],
|
|
19944
|
+
"description": "The animation-range-start CSS property is used to set the start of an animation's attachment range along its timeline, i.e. where along the timeline an animation will start."
|
|
19945
|
+
},
|
|
19936
19946
|
{
|
|
19937
19947
|
"name": "animation-timeline",
|
|
19938
19948
|
"status": "experimental",
|
|
19939
19949
|
"syntax": "<single-animation-timeline>#",
|
|
19940
19950
|
"relevance": 50,
|
|
19941
19951
|
"browsers": [
|
|
19942
|
-
"
|
|
19952
|
+
"E115",
|
|
19953
|
+
"FF110",
|
|
19954
|
+
"C115",
|
|
19955
|
+
"O71"
|
|
19943
19956
|
],
|
|
19944
19957
|
"references": [
|
|
19945
19958
|
{
|
|
@@ -19952,7 +19965,7 @@ export const cssData = {
|
|
|
19952
19965
|
{
|
|
19953
19966
|
"name": "appearance",
|
|
19954
19967
|
"syntax": "none | auto | textfield | menulist-button | <compat-auto>",
|
|
19955
|
-
"relevance":
|
|
19968
|
+
"relevance": 69,
|
|
19956
19969
|
"browsers": [
|
|
19957
19970
|
"E84",
|
|
19958
19971
|
"FF80",
|
|
@@ -19971,7 +19984,7 @@ export const cssData = {
|
|
|
19971
19984
|
{
|
|
19972
19985
|
"name": "aspect-ratio",
|
|
19973
19986
|
"syntax": "auto | <ratio>",
|
|
19974
|
-
"relevance":
|
|
19987
|
+
"relevance": 58,
|
|
19975
19988
|
"browsers": [
|
|
19976
19989
|
"E88",
|
|
19977
19990
|
"FF89",
|
|
@@ -19997,7 +20010,7 @@ export const cssData = {
|
|
|
19997
20010
|
{
|
|
19998
20011
|
"name": "backdrop-filter",
|
|
19999
20012
|
"syntax": "none | <filter-function-list>",
|
|
20000
|
-
"relevance":
|
|
20013
|
+
"relevance": 56,
|
|
20001
20014
|
"browsers": [
|
|
20002
20015
|
"E17",
|
|
20003
20016
|
"FF103",
|
|
@@ -20092,7 +20105,7 @@ export const cssData = {
|
|
|
20092
20105
|
{
|
|
20093
20106
|
"name": "border-end-end-radius",
|
|
20094
20107
|
"syntax": "<length-percentage>{1,2}",
|
|
20095
|
-
"relevance":
|
|
20108
|
+
"relevance": 53,
|
|
20096
20109
|
"browsers": [
|
|
20097
20110
|
"E89",
|
|
20098
20111
|
"FF66",
|
|
@@ -20111,7 +20124,7 @@ export const cssData = {
|
|
|
20111
20124
|
{
|
|
20112
20125
|
"name": "border-end-start-radius",
|
|
20113
20126
|
"syntax": "<length-percentage>{1,2}",
|
|
20114
|
-
"relevance":
|
|
20127
|
+
"relevance": 53,
|
|
20115
20128
|
"browsers": [
|
|
20116
20129
|
"E89",
|
|
20117
20130
|
"FF66",
|
|
@@ -20206,7 +20219,7 @@ export const cssData = {
|
|
|
20206
20219
|
{
|
|
20207
20220
|
"name": "border-start-end-radius",
|
|
20208
20221
|
"syntax": "<length-percentage>{1,2}",
|
|
20209
|
-
"relevance":
|
|
20222
|
+
"relevance": 53,
|
|
20210
20223
|
"browsers": [
|
|
20211
20224
|
"E89",
|
|
20212
20225
|
"FF66",
|
|
@@ -20225,7 +20238,7 @@ export const cssData = {
|
|
|
20225
20238
|
{
|
|
20226
20239
|
"name": "border-start-start-radius",
|
|
20227
20240
|
"syntax": "<length-percentage>{1,2}",
|
|
20228
|
-
"relevance":
|
|
20241
|
+
"relevance": 53,
|
|
20229
20242
|
"browsers": [
|
|
20230
20243
|
"E89",
|
|
20231
20244
|
"FF66",
|
|
@@ -20490,37 +20503,10 @@ export const cssData = {
|
|
|
20490
20503
|
"relevance": 50,
|
|
20491
20504
|
"description": "Specifies the desired shape of the text insertion caret."
|
|
20492
20505
|
},
|
|
20493
|
-
{
|
|
20494
|
-
"name": "print-color-adjust",
|
|
20495
|
-
"syntax": "economy | exact",
|
|
20496
|
-
"values": [
|
|
20497
|
-
{
|
|
20498
|
-
"name": "economy"
|
|
20499
|
-
},
|
|
20500
|
-
{
|
|
20501
|
-
"name": "exact"
|
|
20502
|
-
}
|
|
20503
|
-
],
|
|
20504
|
-
"relevance": 50,
|
|
20505
|
-
"browsers": [
|
|
20506
|
-
"E79",
|
|
20507
|
-
"FF97",
|
|
20508
|
-
"S15.4",
|
|
20509
|
-
"C17",
|
|
20510
|
-
"O15"
|
|
20511
|
-
],
|
|
20512
|
-
"references": [
|
|
20513
|
-
{
|
|
20514
|
-
"name": "MDN Reference",
|
|
20515
|
-
"url": "https://developer.mozilla.org/docs/Web/CSS/print-color-adjust"
|
|
20516
|
-
}
|
|
20517
|
-
],
|
|
20518
|
-
"description": "Defines what optimization the user agent is allowed to do when adjusting the appearance for an output device."
|
|
20519
|
-
},
|
|
20520
20506
|
{
|
|
20521
20507
|
"name": "color-scheme",
|
|
20522
20508
|
"syntax": "normal | [ light | dark | <custom-ident> ]+ && only?",
|
|
20523
|
-
"relevance":
|
|
20509
|
+
"relevance": 57,
|
|
20524
20510
|
"browsers": [
|
|
20525
20511
|
"E81",
|
|
20526
20512
|
"FF96",
|
|
@@ -20538,11 +20524,12 @@ export const cssData = {
|
|
|
20538
20524
|
},
|
|
20539
20525
|
{
|
|
20540
20526
|
"name": "contain-intrinsic-size",
|
|
20541
|
-
"syntax": "[
|
|
20527
|
+
"syntax": "[ auto? [ none | <length> ] ]{1,2}",
|
|
20542
20528
|
"relevance": 50,
|
|
20543
20529
|
"browsers": [
|
|
20544
20530
|
"E83",
|
|
20545
20531
|
"FF107",
|
|
20532
|
+
"S17",
|
|
20546
20533
|
"C83",
|
|
20547
20534
|
"O69"
|
|
20548
20535
|
],
|
|
@@ -20556,11 +20543,12 @@ export const cssData = {
|
|
|
20556
20543
|
},
|
|
20557
20544
|
{
|
|
20558
20545
|
"name": "contain-intrinsic-block-size",
|
|
20559
|
-
"syntax": "none | <length>
|
|
20546
|
+
"syntax": "auto? [ none | <length> ]",
|
|
20560
20547
|
"relevance": 50,
|
|
20561
20548
|
"browsers": [
|
|
20562
20549
|
"E95",
|
|
20563
20550
|
"FF107",
|
|
20551
|
+
"S17",
|
|
20564
20552
|
"C95",
|
|
20565
20553
|
"O81"
|
|
20566
20554
|
],
|
|
@@ -20574,13 +20562,14 @@ export const cssData = {
|
|
|
20574
20562
|
},
|
|
20575
20563
|
{
|
|
20576
20564
|
"name": "contain-intrinsic-height",
|
|
20577
|
-
"syntax": "none | <length>
|
|
20565
|
+
"syntax": "auto? [ none | <length> ]",
|
|
20578
20566
|
"relevance": 50,
|
|
20579
20567
|
"browsers": [
|
|
20580
|
-
"
|
|
20568
|
+
"E95",
|
|
20581
20569
|
"FF107",
|
|
20582
|
-
"
|
|
20583
|
-
"
|
|
20570
|
+
"S17",
|
|
20571
|
+
"C95",
|
|
20572
|
+
"O81"
|
|
20584
20573
|
],
|
|
20585
20574
|
"references": [
|
|
20586
20575
|
{
|
|
@@ -20592,11 +20581,12 @@ export const cssData = {
|
|
|
20592
20581
|
},
|
|
20593
20582
|
{
|
|
20594
20583
|
"name": "contain-intrinsic-inline-size",
|
|
20595
|
-
"syntax": "none | <length>
|
|
20584
|
+
"syntax": "auto? [ none | <length> ]",
|
|
20596
20585
|
"relevance": 50,
|
|
20597
20586
|
"browsers": [
|
|
20598
20587
|
"E95",
|
|
20599
20588
|
"FF107",
|
|
20589
|
+
"S17",
|
|
20600
20590
|
"C95",
|
|
20601
20591
|
"O81"
|
|
20602
20592
|
],
|
|
@@ -20610,13 +20600,14 @@ export const cssData = {
|
|
|
20610
20600
|
},
|
|
20611
20601
|
{
|
|
20612
20602
|
"name": "contain-intrinsic-width",
|
|
20613
|
-
"syntax": "none | <length>
|
|
20603
|
+
"syntax": "auto? [ none | <length> ]",
|
|
20614
20604
|
"relevance": 50,
|
|
20615
20605
|
"browsers": [
|
|
20616
|
-
"
|
|
20606
|
+
"E95",
|
|
20617
20607
|
"FF107",
|
|
20618
|
-
"
|
|
20619
|
-
"
|
|
20608
|
+
"S17",
|
|
20609
|
+
"C95",
|
|
20610
|
+
"O81"
|
|
20620
20611
|
],
|
|
20621
20612
|
"references": [
|
|
20622
20613
|
{
|
|
@@ -20626,6 +20617,74 @@ export const cssData = {
|
|
|
20626
20617
|
],
|
|
20627
20618
|
"description": "Width of an element when the element is subject to size containment."
|
|
20628
20619
|
},
|
|
20620
|
+
{
|
|
20621
|
+
"name": "container",
|
|
20622
|
+
"syntax": "<'container-name'> [ / <'container-type'> ]?",
|
|
20623
|
+
"relevance": 53,
|
|
20624
|
+
"browsers": [
|
|
20625
|
+
"E105",
|
|
20626
|
+
"FF110",
|
|
20627
|
+
"S16",
|
|
20628
|
+
"C105",
|
|
20629
|
+
"O91"
|
|
20630
|
+
],
|
|
20631
|
+
"references": [
|
|
20632
|
+
{
|
|
20633
|
+
"name": "MDN Reference",
|
|
20634
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/container"
|
|
20635
|
+
}
|
|
20636
|
+
],
|
|
20637
|
+
"description": "The container shorthand CSS property establishes the element as a query container and specifies the name or name for the containment context used in a container query."
|
|
20638
|
+
},
|
|
20639
|
+
{
|
|
20640
|
+
"name": "container-name",
|
|
20641
|
+
"syntax": "none | <custom-ident>+",
|
|
20642
|
+
"relevance": 50,
|
|
20643
|
+
"browsers": [
|
|
20644
|
+
"E105",
|
|
20645
|
+
"FF110",
|
|
20646
|
+
"S16",
|
|
20647
|
+
"C105",
|
|
20648
|
+
"O91"
|
|
20649
|
+
],
|
|
20650
|
+
"references": [
|
|
20651
|
+
{
|
|
20652
|
+
"name": "MDN Reference",
|
|
20653
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/container-name"
|
|
20654
|
+
}
|
|
20655
|
+
],
|
|
20656
|
+
"description": "The container-name CSS property specifies a list of query container names used by the @container at-rule in a container query."
|
|
20657
|
+
},
|
|
20658
|
+
{
|
|
20659
|
+
"name": "container-type",
|
|
20660
|
+
"syntax": "normal | size | inline-size",
|
|
20661
|
+
"values": [
|
|
20662
|
+
{
|
|
20663
|
+
"name": "normal"
|
|
20664
|
+
},
|
|
20665
|
+
{
|
|
20666
|
+
"name": "size"
|
|
20667
|
+
},
|
|
20668
|
+
{
|
|
20669
|
+
"name": "inline-size"
|
|
20670
|
+
}
|
|
20671
|
+
],
|
|
20672
|
+
"relevance": 50,
|
|
20673
|
+
"browsers": [
|
|
20674
|
+
"E105",
|
|
20675
|
+
"FF110",
|
|
20676
|
+
"S16",
|
|
20677
|
+
"C105",
|
|
20678
|
+
"O91"
|
|
20679
|
+
],
|
|
20680
|
+
"references": [
|
|
20681
|
+
{
|
|
20682
|
+
"name": "MDN Reference",
|
|
20683
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/container-type"
|
|
20684
|
+
}
|
|
20685
|
+
],
|
|
20686
|
+
"description": "The container-type CSS property is used to define the type of containment used in a container query."
|
|
20687
|
+
},
|
|
20629
20688
|
{
|
|
20630
20689
|
"name": "content-visibility",
|
|
20631
20690
|
"syntax": "visible | auto | hidden",
|
|
@@ -20640,10 +20699,10 @@ export const cssData = {
|
|
|
20640
20699
|
"name": "hidden"
|
|
20641
20700
|
}
|
|
20642
20701
|
],
|
|
20643
|
-
"relevance":
|
|
20702
|
+
"relevance": 52,
|
|
20644
20703
|
"browsers": [
|
|
20645
20704
|
"E85",
|
|
20646
|
-
"
|
|
20705
|
+
"FFpreview",
|
|
20647
20706
|
"C85",
|
|
20648
20707
|
"O71"
|
|
20649
20708
|
],
|
|
@@ -20700,10 +20759,30 @@ export const cssData = {
|
|
|
20700
20759
|
],
|
|
20701
20760
|
"description": "The font-optical-sizing CSS property allows developers to control whether browsers render text with slightly differing visual representations to optimize viewing at different sizes, or not. This only works for fonts that have an optical size variation axis."
|
|
20702
20761
|
},
|
|
20762
|
+
{
|
|
20763
|
+
"name": "font-palette",
|
|
20764
|
+
"syntax": "normal | light | dark | <palette-identifier>",
|
|
20765
|
+
"relevance": 50,
|
|
20766
|
+
"browsers": [
|
|
20767
|
+
"E101",
|
|
20768
|
+
"FF107",
|
|
20769
|
+
"S15.4",
|
|
20770
|
+
"C101",
|
|
20771
|
+
"O87"
|
|
20772
|
+
],
|
|
20773
|
+
"references": [
|
|
20774
|
+
{
|
|
20775
|
+
"name": "MDN Reference",
|
|
20776
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/font-palette"
|
|
20777
|
+
}
|
|
20778
|
+
],
|
|
20779
|
+
"description": "The font-palette CSS property allows specifying one of the many palettes contained in a font that a user agent should use for the font. Users can also override the values in a palette or create a new palette by using the @font-palette-values at-rule."
|
|
20780
|
+
},
|
|
20703
20781
|
{
|
|
20704
20782
|
"name": "font-variation-settings",
|
|
20783
|
+
"atRule": "@font-face",
|
|
20705
20784
|
"syntax": "normal | [ <string> <number> ]#",
|
|
20706
|
-
"relevance":
|
|
20785
|
+
"relevance": 51,
|
|
20707
20786
|
"browsers": [
|
|
20708
20787
|
"E17",
|
|
20709
20788
|
"FF62",
|
|
@@ -20739,6 +20818,116 @@ export const cssData = {
|
|
|
20739
20818
|
],
|
|
20740
20819
|
"description": "The font-smooth CSS property controls the application of anti-aliasing when fonts are rendered."
|
|
20741
20820
|
},
|
|
20821
|
+
{
|
|
20822
|
+
"name": "font-synthesis-small-caps",
|
|
20823
|
+
"syntax": "auto | none",
|
|
20824
|
+
"values": [
|
|
20825
|
+
{
|
|
20826
|
+
"name": "auto"
|
|
20827
|
+
},
|
|
20828
|
+
{
|
|
20829
|
+
"name": "none"
|
|
20830
|
+
}
|
|
20831
|
+
],
|
|
20832
|
+
"relevance": 50,
|
|
20833
|
+
"browsers": [
|
|
20834
|
+
"E97",
|
|
20835
|
+
"FF111",
|
|
20836
|
+
"S16.4",
|
|
20837
|
+
"C97",
|
|
20838
|
+
"O83"
|
|
20839
|
+
],
|
|
20840
|
+
"references": [
|
|
20841
|
+
{
|
|
20842
|
+
"name": "MDN Reference",
|
|
20843
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/font-synthesis-small-caps"
|
|
20844
|
+
}
|
|
20845
|
+
],
|
|
20846
|
+
"description": "The font-synthesis-small-caps CSS property lets you specify whether or not the browser may synthesize small-caps typeface when it is missing in a font family. Small-caps glyphs typically use the form of uppercase letters but are reduced to the size of lowercase letters."
|
|
20847
|
+
},
|
|
20848
|
+
{
|
|
20849
|
+
"name": "font-synthesis-style",
|
|
20850
|
+
"syntax": "auto | none",
|
|
20851
|
+
"values": [
|
|
20852
|
+
{
|
|
20853
|
+
"name": "auto"
|
|
20854
|
+
},
|
|
20855
|
+
{
|
|
20856
|
+
"name": "none"
|
|
20857
|
+
}
|
|
20858
|
+
],
|
|
20859
|
+
"relevance": 50,
|
|
20860
|
+
"browsers": [
|
|
20861
|
+
"E97",
|
|
20862
|
+
"FF111",
|
|
20863
|
+
"S16.4",
|
|
20864
|
+
"C97",
|
|
20865
|
+
"O83"
|
|
20866
|
+
],
|
|
20867
|
+
"references": [
|
|
20868
|
+
{
|
|
20869
|
+
"name": "MDN Reference",
|
|
20870
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/font-synthesis-style"
|
|
20871
|
+
}
|
|
20872
|
+
],
|
|
20873
|
+
"description": "The font-synthesis-style CSS property lets you specify whether or not the browser may synthesize the oblique typeface when it is missing in a font family."
|
|
20874
|
+
},
|
|
20875
|
+
{
|
|
20876
|
+
"name": "font-synthesis-weight",
|
|
20877
|
+
"syntax": "auto | none",
|
|
20878
|
+
"values": [
|
|
20879
|
+
{
|
|
20880
|
+
"name": "auto"
|
|
20881
|
+
},
|
|
20882
|
+
{
|
|
20883
|
+
"name": "none"
|
|
20884
|
+
}
|
|
20885
|
+
],
|
|
20886
|
+
"relevance": 50,
|
|
20887
|
+
"browsers": [
|
|
20888
|
+
"E97",
|
|
20889
|
+
"FF111",
|
|
20890
|
+
"S16.4",
|
|
20891
|
+
"C97",
|
|
20892
|
+
"O83"
|
|
20893
|
+
],
|
|
20894
|
+
"references": [
|
|
20895
|
+
{
|
|
20896
|
+
"name": "MDN Reference",
|
|
20897
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/font-synthesis-weight"
|
|
20898
|
+
}
|
|
20899
|
+
],
|
|
20900
|
+
"description": "The font-synthesis-weight CSS property lets you specify whether or not the browser may synthesize the bold typeface when it is missing in a font family."
|
|
20901
|
+
},
|
|
20902
|
+
{
|
|
20903
|
+
"name": "font-variant-emoji",
|
|
20904
|
+
"syntax": "normal | text | emoji | unicode",
|
|
20905
|
+
"values": [
|
|
20906
|
+
{
|
|
20907
|
+
"name": "normal"
|
|
20908
|
+
},
|
|
20909
|
+
{
|
|
20910
|
+
"name": "text"
|
|
20911
|
+
},
|
|
20912
|
+
{
|
|
20913
|
+
"name": "emoji"
|
|
20914
|
+
},
|
|
20915
|
+
{
|
|
20916
|
+
"name": "unicode"
|
|
20917
|
+
}
|
|
20918
|
+
],
|
|
20919
|
+
"relevance": 50,
|
|
20920
|
+
"browsers": [
|
|
20921
|
+
"FF108"
|
|
20922
|
+
],
|
|
20923
|
+
"references": [
|
|
20924
|
+
{
|
|
20925
|
+
"name": "MDN Reference",
|
|
20926
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/font-variant-emoji"
|
|
20927
|
+
}
|
|
20928
|
+
],
|
|
20929
|
+
"description": "The font-variant-emoji CSS property specifies the default presentation style for displaying emojis."
|
|
20930
|
+
},
|
|
20742
20931
|
{
|
|
20743
20932
|
"name": "forced-color-adjust",
|
|
20744
20933
|
"syntax": "auto | none",
|
|
@@ -20753,8 +20942,10 @@ export const cssData = {
|
|
|
20753
20942
|
"relevance": 57,
|
|
20754
20943
|
"browsers": [
|
|
20755
20944
|
"E79",
|
|
20945
|
+
"FF113",
|
|
20756
20946
|
"C89",
|
|
20757
|
-
"IE10"
|
|
20947
|
+
"IE10",
|
|
20948
|
+
"O75"
|
|
20758
20949
|
],
|
|
20759
20950
|
"references": [
|
|
20760
20951
|
{
|
|
@@ -20767,7 +20958,7 @@ export const cssData = {
|
|
|
20767
20958
|
{
|
|
20768
20959
|
"name": "gap",
|
|
20769
20960
|
"syntax": "<'row-gap'> <'column-gap'>?",
|
|
20770
|
-
"relevance":
|
|
20961
|
+
"relevance": 67,
|
|
20771
20962
|
"browsers": [
|
|
20772
20963
|
"E16",
|
|
20773
20964
|
"FF52",
|
|
@@ -20826,7 +21017,7 @@ export const cssData = {
|
|
|
20826
21017
|
"C109",
|
|
20827
21018
|
"O95"
|
|
20828
21019
|
],
|
|
20829
|
-
"description": ""
|
|
21020
|
+
"description": "The hyphenate-limit-chars CSS property specifies the minimum word length to allow hyphenation of words as well as the minimum number of characters before and after the hyphen."
|
|
20830
21021
|
},
|
|
20831
21022
|
{
|
|
20832
21023
|
"name": "image-resolution",
|
|
@@ -20884,7 +21075,7 @@ export const cssData = {
|
|
|
20884
21075
|
{
|
|
20885
21076
|
"name": "inset",
|
|
20886
21077
|
"syntax": "<'top'>{1,4}",
|
|
20887
|
-
"relevance":
|
|
21078
|
+
"relevance": 56,
|
|
20888
21079
|
"browsers": [
|
|
20889
21080
|
"E87",
|
|
20890
21081
|
"FF66",
|
|
@@ -20979,7 +21170,7 @@ export const cssData = {
|
|
|
20979
21170
|
{
|
|
20980
21171
|
"name": "inset-inline-end",
|
|
20981
21172
|
"syntax": "<'top'>",
|
|
20982
|
-
"relevance":
|
|
21173
|
+
"relevance": 51,
|
|
20983
21174
|
"browsers": [
|
|
20984
21175
|
"E87",
|
|
20985
21176
|
"FF63",
|
|
@@ -20998,7 +21189,7 @@ export const cssData = {
|
|
|
20998
21189
|
{
|
|
20999
21190
|
"name": "inset-inline-start",
|
|
21000
21191
|
"syntax": "<'top'>",
|
|
21001
|
-
"relevance":
|
|
21192
|
+
"relevance": 51,
|
|
21002
21193
|
"browsers": [
|
|
21003
21194
|
"E87",
|
|
21004
21195
|
"FF63",
|
|
@@ -21058,7 +21249,7 @@ export const cssData = {
|
|
|
21058
21249
|
{
|
|
21059
21250
|
"name": "margin-block",
|
|
21060
21251
|
"syntax": "<'margin-left'>{1,2}",
|
|
21061
|
-
"relevance":
|
|
21252
|
+
"relevance": 53,
|
|
21062
21253
|
"browsers": [
|
|
21063
21254
|
"E87",
|
|
21064
21255
|
"FF66",
|
|
@@ -21077,7 +21268,7 @@ export const cssData = {
|
|
|
21077
21268
|
{
|
|
21078
21269
|
"name": "margin-inline",
|
|
21079
21270
|
"syntax": "<'margin-left'>{1,2}",
|
|
21080
|
-
"relevance":
|
|
21271
|
+
"relevance": 51,
|
|
21081
21272
|
"browsers": [
|
|
21082
21273
|
"E87",
|
|
21083
21274
|
"FF66",
|
|
@@ -21123,7 +21314,7 @@ export const cssData = {
|
|
|
21123
21314
|
{
|
|
21124
21315
|
"name": "mask",
|
|
21125
21316
|
"syntax": "<mask-layer>#",
|
|
21126
|
-
"relevance":
|
|
21317
|
+
"relevance": 51,
|
|
21127
21318
|
"browsers": [
|
|
21128
21319
|
"E79",
|
|
21129
21320
|
"FF2",
|
|
@@ -21302,6 +21493,9 @@ export const cssData = {
|
|
|
21302
21493
|
"status": "experimental",
|
|
21303
21494
|
"syntax": "[ pack | next ] || [ definite-first | ordered ]",
|
|
21304
21495
|
"relevance": 50,
|
|
21496
|
+
"browsers": [
|
|
21497
|
+
"Spreview"
|
|
21498
|
+
],
|
|
21305
21499
|
"references": [
|
|
21306
21500
|
{
|
|
21307
21501
|
"name": "MDN Reference",
|
|
@@ -21316,7 +21510,7 @@ export const cssData = {
|
|
|
21316
21510
|
"relevance": 50,
|
|
21317
21511
|
"browsers": [
|
|
21318
21512
|
"E109",
|
|
21319
|
-
"
|
|
21513
|
+
"FF117",
|
|
21320
21514
|
"C109",
|
|
21321
21515
|
"O95"
|
|
21322
21516
|
],
|
|
@@ -21367,7 +21561,7 @@ export const cssData = {
|
|
|
21367
21561
|
"relevance": 50,
|
|
21368
21562
|
"browsers": [
|
|
21369
21563
|
"E109",
|
|
21370
|
-
"
|
|
21564
|
+
"FF117",
|
|
21371
21565
|
"S14.1",
|
|
21372
21566
|
"C109",
|
|
21373
21567
|
"O95"
|
|
@@ -21443,7 +21637,7 @@ export const cssData = {
|
|
|
21443
21637
|
},
|
|
21444
21638
|
{
|
|
21445
21639
|
"name": "offset-path",
|
|
21446
|
-
"syntax": "none |
|
|
21640
|
+
"syntax": "none | <offset-path> || <coord-box>",
|
|
21447
21641
|
"relevance": 50,
|
|
21448
21642
|
"browsers": [
|
|
21449
21643
|
"E79",
|
|
@@ -21463,10 +21657,13 @@ export const cssData = {
|
|
|
21463
21657
|
{
|
|
21464
21658
|
"name": "offset-position",
|
|
21465
21659
|
"status": "experimental",
|
|
21466
|
-
"syntax": "auto | <position>",
|
|
21660
|
+
"syntax": "normal | auto | <position>",
|
|
21467
21661
|
"relevance": 50,
|
|
21468
21662
|
"browsers": [
|
|
21469
|
-
"
|
|
21663
|
+
"E115",
|
|
21664
|
+
"FF116",
|
|
21665
|
+
"Spreview",
|
|
21666
|
+
"C115"
|
|
21470
21667
|
],
|
|
21471
21668
|
"references": [
|
|
21472
21669
|
{
|
|
@@ -21566,15 +21763,6 @@ export const cssData = {
|
|
|
21566
21763
|
}
|
|
21567
21764
|
],
|
|
21568
21765
|
"relevance": 0,
|
|
21569
|
-
"browsers": [
|
|
21570
|
-
"FF29"
|
|
21571
|
-
],
|
|
21572
|
-
"references": [
|
|
21573
|
-
{
|
|
21574
|
-
"name": "MDN Reference",
|
|
21575
|
-
"url": "https://developer.mozilla.org/docs/Mozilla/Gecko/Chrome/CSS/overflow-clip-box"
|
|
21576
|
-
}
|
|
21577
|
-
],
|
|
21578
21766
|
"description": "The overflow-clip-box CSS property specifies relative to which box the clipping happens when there is an overflow. It is short hand for the overflow-clip-box-inline and overflow-clip-box-block properties."
|
|
21579
21767
|
},
|
|
21580
21768
|
{
|
|
@@ -21769,7 +21957,7 @@ export const cssData = {
|
|
|
21769
21957
|
{
|
|
21770
21958
|
"name": "padding-block",
|
|
21771
21959
|
"syntax": "<'padding-left'>{1,2}",
|
|
21772
|
-
"relevance":
|
|
21960
|
+
"relevance": 53,
|
|
21773
21961
|
"browsers": [
|
|
21774
21962
|
"E87",
|
|
21775
21963
|
"FF66",
|
|
@@ -21788,7 +21976,7 @@ export const cssData = {
|
|
|
21788
21976
|
{
|
|
21789
21977
|
"name": "padding-inline",
|
|
21790
21978
|
"syntax": "<'padding-left'>{1,2}",
|
|
21791
|
-
"relevance":
|
|
21979
|
+
"relevance": 54,
|
|
21792
21980
|
"browsers": [
|
|
21793
21981
|
"E87",
|
|
21794
21982
|
"FF66",
|
|
@@ -21804,6 +21992,25 @@ export const cssData = {
|
|
|
21804
21992
|
],
|
|
21805
21993
|
"description": "The padding-inline CSS property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation."
|
|
21806
21994
|
},
|
|
21995
|
+
{
|
|
21996
|
+
"name": "page",
|
|
21997
|
+
"syntax": "auto | <custom-ident>",
|
|
21998
|
+
"relevance": 50,
|
|
21999
|
+
"browsers": [
|
|
22000
|
+
"E85",
|
|
22001
|
+
"FF110",
|
|
22002
|
+
"S≤13.1",
|
|
22003
|
+
"C85",
|
|
22004
|
+
"O71"
|
|
22005
|
+
],
|
|
22006
|
+
"references": [
|
|
22007
|
+
{
|
|
22008
|
+
"name": "MDN Reference",
|
|
22009
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/page"
|
|
22010
|
+
}
|
|
22011
|
+
],
|
|
22012
|
+
"description": "The page CSS property is used to specify the named page, a specific type of page defined by the @page at-rule."
|
|
22013
|
+
},
|
|
21807
22014
|
{
|
|
21808
22015
|
"name": "place-content",
|
|
21809
22016
|
"syntax": "<'align-content'> <'justify-content'>?",
|
|
@@ -21848,18 +22055,45 @@ export const cssData = {
|
|
|
21848
22055
|
"relevance": 50,
|
|
21849
22056
|
"browsers": [
|
|
21850
22057
|
"E79",
|
|
21851
|
-
"FF45",
|
|
21852
|
-
"S11",
|
|
21853
|
-
"C59",
|
|
21854
|
-
"O46"
|
|
22058
|
+
"FF45",
|
|
22059
|
+
"S11",
|
|
22060
|
+
"C59",
|
|
22061
|
+
"O46"
|
|
22062
|
+
],
|
|
22063
|
+
"references": [
|
|
22064
|
+
{
|
|
22065
|
+
"name": "MDN Reference",
|
|
22066
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/place-self"
|
|
22067
|
+
}
|
|
22068
|
+
],
|
|
22069
|
+
"description": "The place-self CSS property is a shorthand property sets both the align-self and justify-self properties. The first value is the align-self property value, the second the justify-self one. If the second value is not present, the first value is also used for it."
|
|
22070
|
+
},
|
|
22071
|
+
{
|
|
22072
|
+
"name": "print-color-adjust",
|
|
22073
|
+
"syntax": "economy | exact",
|
|
22074
|
+
"values": [
|
|
22075
|
+
{
|
|
22076
|
+
"name": "economy"
|
|
22077
|
+
},
|
|
22078
|
+
{
|
|
22079
|
+
"name": "exact"
|
|
22080
|
+
}
|
|
22081
|
+
],
|
|
22082
|
+
"relevance": 50,
|
|
22083
|
+
"browsers": [
|
|
22084
|
+
"E79",
|
|
22085
|
+
"FF97",
|
|
22086
|
+
"S15.4",
|
|
22087
|
+
"C17",
|
|
22088
|
+
"O15"
|
|
21855
22089
|
],
|
|
21856
22090
|
"references": [
|
|
21857
22091
|
{
|
|
21858
22092
|
"name": "MDN Reference",
|
|
21859
|
-
"url": "https://developer.mozilla.org/docs/Web/CSS/
|
|
22093
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/print-color-adjust"
|
|
21860
22094
|
}
|
|
21861
22095
|
],
|
|
21862
|
-
"description": "
|
|
22096
|
+
"description": "Defines what optimization the user agent is allowed to do when adjusting the appearance for an output device."
|
|
21863
22097
|
},
|
|
21864
22098
|
{
|
|
21865
22099
|
"name": "rotate",
|
|
@@ -21883,7 +22117,7 @@ export const cssData = {
|
|
|
21883
22117
|
{
|
|
21884
22118
|
"name": "row-gap",
|
|
21885
22119
|
"syntax": "normal | <length-percentage>",
|
|
21886
|
-
"relevance":
|
|
22120
|
+
"relevance": 55,
|
|
21887
22121
|
"browsers": [
|
|
21888
22122
|
"E16",
|
|
21889
22123
|
"FF52",
|
|
@@ -21941,7 +22175,9 @@ export const cssData = {
|
|
|
21941
22175
|
"syntax": "auto | <color>{2}",
|
|
21942
22176
|
"relevance": 50,
|
|
21943
22177
|
"browsers": [
|
|
21944
|
-
"
|
|
22178
|
+
"E118",
|
|
22179
|
+
"FF64",
|
|
22180
|
+
"C118"
|
|
21945
22181
|
],
|
|
21946
22182
|
"references": [
|
|
21947
22183
|
{
|
|
@@ -21985,7 +22221,9 @@ export const cssData = {
|
|
|
21985
22221
|
],
|
|
21986
22222
|
"relevance": 50,
|
|
21987
22223
|
"browsers": [
|
|
21988
|
-
"
|
|
22224
|
+
"E115",
|
|
22225
|
+
"FF64",
|
|
22226
|
+
"C115"
|
|
21989
22227
|
],
|
|
21990
22228
|
"references": [
|
|
21991
22229
|
{
|
|
@@ -22021,7 +22259,7 @@ export const cssData = {
|
|
|
22021
22259
|
"browsers": [
|
|
22022
22260
|
"E79",
|
|
22023
22261
|
"FF68",
|
|
22024
|
-
"
|
|
22262
|
+
"S15",
|
|
22025
22263
|
"C69",
|
|
22026
22264
|
"O56"
|
|
22027
22265
|
],
|
|
@@ -22040,7 +22278,7 @@ export const cssData = {
|
|
|
22040
22278
|
"browsers": [
|
|
22041
22279
|
"E79",
|
|
22042
22280
|
"FF68",
|
|
22043
|
-
"
|
|
22281
|
+
"S15",
|
|
22044
22282
|
"C69",
|
|
22045
22283
|
"O56"
|
|
22046
22284
|
],
|
|
@@ -22059,7 +22297,7 @@ export const cssData = {
|
|
|
22059
22297
|
"browsers": [
|
|
22060
22298
|
"E79",
|
|
22061
22299
|
"FF68",
|
|
22062
|
-
"
|
|
22300
|
+
"S15",
|
|
22063
22301
|
"C69",
|
|
22064
22302
|
"O56"
|
|
22065
22303
|
],
|
|
@@ -22097,7 +22335,7 @@ export const cssData = {
|
|
|
22097
22335
|
"browsers": [
|
|
22098
22336
|
"E79",
|
|
22099
22337
|
"FF68",
|
|
22100
|
-
"
|
|
22338
|
+
"S15",
|
|
22101
22339
|
"C69",
|
|
22102
22340
|
"O56"
|
|
22103
22341
|
],
|
|
@@ -22116,7 +22354,7 @@ export const cssData = {
|
|
|
22116
22354
|
"browsers": [
|
|
22117
22355
|
"E79",
|
|
22118
22356
|
"FF68",
|
|
22119
|
-
"
|
|
22357
|
+
"S15",
|
|
22120
22358
|
"C69",
|
|
22121
22359
|
"O56"
|
|
22122
22360
|
],
|
|
@@ -22135,7 +22373,7 @@ export const cssData = {
|
|
|
22135
22373
|
"browsers": [
|
|
22136
22374
|
"E79",
|
|
22137
22375
|
"FF68",
|
|
22138
|
-
"
|
|
22376
|
+
"S15",
|
|
22139
22377
|
"C69",
|
|
22140
22378
|
"O56"
|
|
22141
22379
|
],
|
|
@@ -22416,7 +22654,7 @@ export const cssData = {
|
|
|
22416
22654
|
{
|
|
22417
22655
|
"name": "scroll-snap-align",
|
|
22418
22656
|
"syntax": "[ none | start | end | center ]{1,2}",
|
|
22419
|
-
"relevance":
|
|
22657
|
+
"relevance": 53,
|
|
22420
22658
|
"browsers": [
|
|
22421
22659
|
"E79",
|
|
22422
22660
|
"FF68",
|
|
@@ -22475,16 +22713,6 @@ export const cssData = {
|
|
|
22475
22713
|
}
|
|
22476
22714
|
],
|
|
22477
22715
|
"relevance": 0,
|
|
22478
|
-
"browsers": [
|
|
22479
|
-
"FF39",
|
|
22480
|
-
"S9"
|
|
22481
|
-
],
|
|
22482
|
-
"references": [
|
|
22483
|
-
{
|
|
22484
|
-
"name": "MDN Reference",
|
|
22485
|
-
"url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type-x"
|
|
22486
|
-
}
|
|
22487
|
-
],
|
|
22488
22716
|
"description": "The scroll-snap-type-x CSS property defines how strictly snap points are enforced on the horizontal axis of the scroll container in case there is one.\n\nSpecifying any precise animations or physics used to enforce those snap points is not covered by this property but instead left up to the user agent."
|
|
22489
22717
|
},
|
|
22490
22718
|
{
|
|
@@ -22503,24 +22731,17 @@ export const cssData = {
|
|
|
22503
22731
|
}
|
|
22504
22732
|
],
|
|
22505
22733
|
"relevance": 0,
|
|
22506
|
-
"browsers": [
|
|
22507
|
-
"FF39"
|
|
22508
|
-
],
|
|
22509
|
-
"references": [
|
|
22510
|
-
{
|
|
22511
|
-
"name": "MDN Reference",
|
|
22512
|
-
"url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type-y"
|
|
22513
|
-
}
|
|
22514
|
-
],
|
|
22515
22734
|
"description": "The scroll-snap-type-y CSS property defines how strictly snap points are enforced on the vertical axis of the scroll container in case there is one.\n\nSpecifying any precise animations or physics used to enforce those snap points is not covered by this property but instead left up to the user agent."
|
|
22516
22735
|
},
|
|
22517
22736
|
{
|
|
22518
22737
|
"name": "scroll-timeline",
|
|
22519
22738
|
"status": "experimental",
|
|
22520
|
-
"syntax": "<'scroll-timeline-name'>
|
|
22739
|
+
"syntax": "[ <'scroll-timeline-name'> <'scroll-timeline-axis'>? ]#",
|
|
22521
22740
|
"relevance": 50,
|
|
22522
22741
|
"browsers": [
|
|
22523
|
-
"
|
|
22742
|
+
"E115",
|
|
22743
|
+
"FF111",
|
|
22744
|
+
"C115"
|
|
22524
22745
|
],
|
|
22525
22746
|
"references": [
|
|
22526
22747
|
{
|
|
@@ -22533,10 +22754,13 @@ export const cssData = {
|
|
|
22533
22754
|
{
|
|
22534
22755
|
"name": "scroll-timeline-axis",
|
|
22535
22756
|
"status": "experimental",
|
|
22536
|
-
"syntax": "[ block | inline |
|
|
22757
|
+
"syntax": "[ block | inline | x | y ]#",
|
|
22537
22758
|
"relevance": 50,
|
|
22538
22759
|
"browsers": [
|
|
22539
|
-
"
|
|
22760
|
+
"E115",
|
|
22761
|
+
"FF111",
|
|
22762
|
+
"C115",
|
|
22763
|
+
"O97"
|
|
22540
22764
|
],
|
|
22541
22765
|
"references": [
|
|
22542
22766
|
{
|
|
@@ -22549,10 +22773,13 @@ export const cssData = {
|
|
|
22549
22773
|
{
|
|
22550
22774
|
"name": "scroll-timeline-name",
|
|
22551
22775
|
"status": "experimental",
|
|
22552
|
-
"syntax": "none | <
|
|
22776
|
+
"syntax": "none | <dashed-ident>#",
|
|
22553
22777
|
"relevance": 50,
|
|
22554
22778
|
"browsers": [
|
|
22555
|
-
"
|
|
22779
|
+
"E115",
|
|
22780
|
+
"FF111",
|
|
22781
|
+
"C115",
|
|
22782
|
+
"O97"
|
|
22556
22783
|
],
|
|
22557
22784
|
"references": [
|
|
22558
22785
|
{
|
|
@@ -22567,9 +22794,9 @@ export const cssData = {
|
|
|
22567
22794
|
"syntax": "none | all | [ digits <integer>? ]",
|
|
22568
22795
|
"relevance": 50,
|
|
22569
22796
|
"browsers": [
|
|
22570
|
-
"
|
|
22797
|
+
"E79",
|
|
22571
22798
|
"FF48",
|
|
22572
|
-
"
|
|
22799
|
+
"S15.4",
|
|
22573
22800
|
"C48",
|
|
22574
22801
|
"IE11",
|
|
22575
22802
|
"O35"
|
|
@@ -22658,7 +22885,7 @@ export const cssData = {
|
|
|
22658
22885
|
"FF46",
|
|
22659
22886
|
"S7",
|
|
22660
22887
|
"C99",
|
|
22661
|
-
"
|
|
22888
|
+
"O85"
|
|
22662
22889
|
],
|
|
22663
22890
|
"references": [
|
|
22664
22891
|
{
|
|
@@ -22677,7 +22904,7 @@ export const cssData = {
|
|
|
22677
22904
|
"FF46",
|
|
22678
22905
|
"S7",
|
|
22679
22906
|
"C99",
|
|
22680
|
-
"
|
|
22907
|
+
"O85"
|
|
22681
22908
|
],
|
|
22682
22909
|
"references": [
|
|
22683
22910
|
{
|
|
@@ -22696,7 +22923,7 @@ export const cssData = {
|
|
|
22696
22923
|
"FF46",
|
|
22697
22924
|
"S7",
|
|
22698
22925
|
"C99",
|
|
22699
|
-
"
|
|
22926
|
+
"O85"
|
|
22700
22927
|
],
|
|
22701
22928
|
"references": [
|
|
22702
22929
|
{
|
|
@@ -22715,7 +22942,7 @@ export const cssData = {
|
|
|
22715
22942
|
"FF46",
|
|
22716
22943
|
"S7",
|
|
22717
22944
|
"C99",
|
|
22718
|
-
"
|
|
22945
|
+
"O85"
|
|
22719
22946
|
],
|
|
22720
22947
|
"references": [
|
|
22721
22948
|
{
|
|
@@ -22729,7 +22956,7 @@ export const cssData = {
|
|
|
22729
22956
|
"name": "text-size-adjust",
|
|
22730
22957
|
"status": "experimental",
|
|
22731
22958
|
"syntax": "none | auto | <percentage>",
|
|
22732
|
-
"relevance":
|
|
22959
|
+
"relevance": 58,
|
|
22733
22960
|
"browsers": [
|
|
22734
22961
|
"E79",
|
|
22735
22962
|
"C54",
|
|
@@ -22746,7 +22973,7 @@ export const cssData = {
|
|
|
22746
22973
|
{
|
|
22747
22974
|
"name": "text-underline-offset",
|
|
22748
22975
|
"syntax": "auto | <length> | <percentage> ",
|
|
22749
|
-
"relevance":
|
|
22976
|
+
"relevance": 51,
|
|
22750
22977
|
"browsers": [
|
|
22751
22978
|
"E87",
|
|
22752
22979
|
"FF70",
|
|
@@ -22762,6 +22989,56 @@ export const cssData = {
|
|
|
22762
22989
|
],
|
|
22763
22990
|
"description": "The text-underline-offset CSS property sets the offset distance of an underline text decoration line (applied using text-decoration) from its original position."
|
|
22764
22991
|
},
|
|
22992
|
+
{
|
|
22993
|
+
"name": "text-wrap",
|
|
22994
|
+
"syntax": "wrap | nowrap | balance | stable | pretty",
|
|
22995
|
+
"values": [
|
|
22996
|
+
{
|
|
22997
|
+
"name": "wrap"
|
|
22998
|
+
},
|
|
22999
|
+
{
|
|
23000
|
+
"name": "nowrap"
|
|
23001
|
+
},
|
|
23002
|
+
{
|
|
23003
|
+
"name": "balance"
|
|
23004
|
+
},
|
|
23005
|
+
{
|
|
23006
|
+
"name": "stable"
|
|
23007
|
+
},
|
|
23008
|
+
{
|
|
23009
|
+
"name": "pretty"
|
|
23010
|
+
}
|
|
23011
|
+
],
|
|
23012
|
+
"relevance": 53,
|
|
23013
|
+
"browsers": [
|
|
23014
|
+
"E114",
|
|
23015
|
+
"C114"
|
|
23016
|
+
],
|
|
23017
|
+
"references": [
|
|
23018
|
+
{
|
|
23019
|
+
"name": "MDN Reference",
|
|
23020
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/text-wrap"
|
|
23021
|
+
}
|
|
23022
|
+
],
|
|
23023
|
+
"description": "The text-wrap CSS property controls how text inside an element is wrapped."
|
|
23024
|
+
},
|
|
23025
|
+
{
|
|
23026
|
+
"name": "timeline-scope",
|
|
23027
|
+
"status": "experimental",
|
|
23028
|
+
"syntax": "none | <dashed-ident>#",
|
|
23029
|
+
"relevance": 50,
|
|
23030
|
+
"browsers": [
|
|
23031
|
+
"E116",
|
|
23032
|
+
"C116"
|
|
23033
|
+
],
|
|
23034
|
+
"references": [
|
|
23035
|
+
{
|
|
23036
|
+
"name": "MDN Reference",
|
|
23037
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/timeline-scope"
|
|
23038
|
+
}
|
|
23039
|
+
],
|
|
23040
|
+
"description": "The timeline-scope CSS property modifies the scope of a named animation timeline."
|
|
23041
|
+
},
|
|
22765
23042
|
{
|
|
22766
23043
|
"name": "transform-box",
|
|
22767
23044
|
"syntax": "content-box | border-box | fill-box | stroke-box | view-box",
|
|
@@ -22818,28 +23095,97 @@ export const cssData = {
|
|
|
22818
23095
|
"description": "The translate CSS property allows you to specify translation transforms individually and independently of the transform property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the transform value."
|
|
22819
23096
|
},
|
|
22820
23097
|
{
|
|
22821
|
-
"name": "
|
|
22822
|
-
"
|
|
22823
|
-
"
|
|
22824
|
-
|
|
22825
|
-
|
|
22826
|
-
|
|
23098
|
+
"name": "view-timeline",
|
|
23099
|
+
"status": "experimental",
|
|
23100
|
+
"syntax": "[ <'view-timeline-name'> <'view-timeline-axis'>? ]#",
|
|
23101
|
+
"relevance": 50,
|
|
23102
|
+
"browsers": [
|
|
23103
|
+
"E115",
|
|
23104
|
+
"FF114",
|
|
23105
|
+
"C115"
|
|
23106
|
+
],
|
|
23107
|
+
"references": [
|
|
22827
23108
|
{
|
|
22828
|
-
"name": "
|
|
22829
|
-
|
|
23109
|
+
"name": "MDN Reference",
|
|
23110
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/view-timeline"
|
|
23111
|
+
}
|
|
23112
|
+
],
|
|
23113
|
+
"description": "The view-timeline CSS shorthand property is used to define a named view progress timeline, which is progressed through based on the change in visibility of an element (known as the subject) inside a scrollable element (scroller). view-timeline is set on the subject."
|
|
23114
|
+
},
|
|
23115
|
+
{
|
|
23116
|
+
"name": "view-timeline-axis",
|
|
23117
|
+
"status": "experimental",
|
|
23118
|
+
"syntax": "[ block | inline | x | y ]#",
|
|
23119
|
+
"relevance": 50,
|
|
23120
|
+
"browsers": [
|
|
23121
|
+
"E115",
|
|
23122
|
+
"FF114",
|
|
23123
|
+
"C115"
|
|
23124
|
+
],
|
|
23125
|
+
"references": [
|
|
22830
23126
|
{
|
|
22831
|
-
"name": "
|
|
22832
|
-
|
|
23127
|
+
"name": "MDN Reference",
|
|
23128
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/view-timeline-axis"
|
|
23129
|
+
}
|
|
23130
|
+
],
|
|
23131
|
+
"description": "The view-timeline-axis CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a named view progress timeline animation, which is progressed through based on the change in visibility of an element (known as the subject) inside a scrollable element (scroller). view-timeline-axis is set on the subject. See CSS scroll-driven animations for more details."
|
|
23132
|
+
},
|
|
23133
|
+
{
|
|
23134
|
+
"name": "view-timeline-inset",
|
|
23135
|
+
"status": "experimental",
|
|
23136
|
+
"syntax": "[ [ auto | <length-percentage> ]{1,2} ]#",
|
|
23137
|
+
"relevance": 50,
|
|
23138
|
+
"browsers": [
|
|
23139
|
+
"E115",
|
|
23140
|
+
"C115"
|
|
23141
|
+
],
|
|
23142
|
+
"references": [
|
|
22833
23143
|
{
|
|
22834
|
-
"name": "
|
|
22835
|
-
|
|
23144
|
+
"name": "MDN Reference",
|
|
23145
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/view-timeline-inset"
|
|
23146
|
+
}
|
|
23147
|
+
],
|
|
23148
|
+
"description": "The view-timeline-inset CSS property is used to specify one or two values representing an adjustment to the position of the scrollport (see Scroll container for more details) in which the subject element of a named view progress timeline animation is deemed to be visible. Put another way, this allows you to specify start and/or end inset (or outset) values that offset the position of the timeline."
|
|
23149
|
+
},
|
|
23150
|
+
{
|
|
23151
|
+
"name": "view-timeline-name",
|
|
23152
|
+
"status": "experimental",
|
|
23153
|
+
"syntax": "none | <dashed-ident>#",
|
|
23154
|
+
"relevance": 50,
|
|
23155
|
+
"browsers": [
|
|
23156
|
+
"E115",
|
|
23157
|
+
"FF111",
|
|
23158
|
+
"C115"
|
|
23159
|
+
],
|
|
23160
|
+
"references": [
|
|
22836
23161
|
{
|
|
22837
|
-
"name": "
|
|
22838
|
-
|
|
23162
|
+
"name": "MDN Reference",
|
|
23163
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/view-timeline-name"
|
|
23164
|
+
}
|
|
23165
|
+
],
|
|
23166
|
+
"description": "The view-timeline-name CSS property is used to define the name of a named view progress timeline, which is progressed through based on the change in visibility of an element (known as the subject) inside a scrollable element (scroller). view-timeline is set on the subject."
|
|
23167
|
+
},
|
|
23168
|
+
{
|
|
23169
|
+
"name": "view-transition-name",
|
|
23170
|
+
"status": "experimental",
|
|
23171
|
+
"syntax": "none | <custom-ident>",
|
|
23172
|
+
"relevance": 50,
|
|
23173
|
+
"browsers": [
|
|
23174
|
+
"E111",
|
|
23175
|
+
"C111",
|
|
23176
|
+
"O97"
|
|
23177
|
+
],
|
|
23178
|
+
"references": [
|
|
22839
23179
|
{
|
|
22840
|
-
"name": "
|
|
23180
|
+
"name": "MDN Reference",
|
|
23181
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/view-transition-name"
|
|
22841
23182
|
}
|
|
22842
23183
|
],
|
|
23184
|
+
"description": "The view-transition-name CSS property provides the selected element with a distinct identifying name (a custom-ident) and causes it to participate in a separate view transition from the root view transition — or no view transition if the none value is specified."
|
|
23185
|
+
},
|
|
23186
|
+
{
|
|
23187
|
+
"name": "white-space",
|
|
23188
|
+
"syntax": "normal | pre | nowrap | pre-wrap | pre-line | break-spaces | [ <'white-space-collapse'> || <'text-wrap'> || <'white-space-trim'> ]",
|
|
22843
23189
|
"relevance": 89,
|
|
22844
23190
|
"browsers": [
|
|
22845
23191
|
"E12",
|
|
@@ -22857,14 +23203,72 @@ export const cssData = {
|
|
|
22857
23203
|
],
|
|
22858
23204
|
"description": "Specifies how whitespace is handled in an element."
|
|
22859
23205
|
},
|
|
23206
|
+
{
|
|
23207
|
+
"name": "white-space-collapse",
|
|
23208
|
+
"syntax": "collapse | discard | preserve | preserve-breaks | preserve-spaces | break-spaces",
|
|
23209
|
+
"values": [
|
|
23210
|
+
{
|
|
23211
|
+
"name": "collapse"
|
|
23212
|
+
},
|
|
23213
|
+
{
|
|
23214
|
+
"name": "discard"
|
|
23215
|
+
},
|
|
23216
|
+
{
|
|
23217
|
+
"name": "preserve"
|
|
23218
|
+
},
|
|
23219
|
+
{
|
|
23220
|
+
"name": "preserve-breaks"
|
|
23221
|
+
},
|
|
23222
|
+
{
|
|
23223
|
+
"name": "preserve-spaces"
|
|
23224
|
+
},
|
|
23225
|
+
{
|
|
23226
|
+
"name": "break-spaces"
|
|
23227
|
+
}
|
|
23228
|
+
],
|
|
23229
|
+
"relevance": 50,
|
|
23230
|
+
"browsers": [
|
|
23231
|
+
"E114",
|
|
23232
|
+
"C114"
|
|
23233
|
+
],
|
|
23234
|
+
"references": [
|
|
23235
|
+
{
|
|
23236
|
+
"name": "MDN Reference",
|
|
23237
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/white-space-collapse"
|
|
23238
|
+
}
|
|
23239
|
+
],
|
|
23240
|
+
"description": "The white-space-collapse CSS property controls how white space inside an element is collapsed."
|
|
23241
|
+
},
|
|
23242
|
+
{
|
|
23243
|
+
"name": "white-space-trim",
|
|
23244
|
+
"syntax": "none | discard-before || discard-after || discard-inner",
|
|
23245
|
+
"relevance": 50,
|
|
23246
|
+
"description": ""
|
|
23247
|
+
},
|
|
22860
23248
|
{
|
|
22861
23249
|
"name": "speak-as",
|
|
23250
|
+
"atRule": "@counter-style",
|
|
22862
23251
|
"syntax": "auto | bullets | numbers | words | spell-out | <counter-style-name>",
|
|
22863
23252
|
"relevance": 50,
|
|
22864
23253
|
"description": "The speak-as descriptor specifies how a counter symbol constructed with a given @counter-style will be represented in the spoken form. For example, an author can specify a counter symbol to be either spoken as its numerical value or just represented with an audio cue."
|
|
22865
23254
|
},
|
|
23255
|
+
{
|
|
23256
|
+
"name": "base-palette",
|
|
23257
|
+
"atRule": "@font-palette-values",
|
|
23258
|
+
"syntax": "light | dark | <integer [0,∞]>",
|
|
23259
|
+
"relevance": 50,
|
|
23260
|
+
"description": "The base-palette CSS descriptor is used to specify the name or index of a pre-defined palette to be used for creating a new palette. If the specified base-palette does not exist, then the palette defined at index 0 will be used."
|
|
23261
|
+
},
|
|
23262
|
+
{
|
|
23263
|
+
"name": "override-colors",
|
|
23264
|
+
"atRule": "@font-palette-values",
|
|
23265
|
+
"syntax": "[ <integer [0,∞]> <absolute-color-base> ]#",
|
|
23266
|
+
"relevance": 50,
|
|
23267
|
+
"description": "The override-colors CSS descriptor is used to override colors in the chosen base-palette for a color font."
|
|
23268
|
+
},
|
|
22866
23269
|
{
|
|
22867
23270
|
"name": "ascent-override",
|
|
23271
|
+
"atRule": "@font-face",
|
|
22868
23272
|
"status": "experimental",
|
|
22869
23273
|
"syntax": "normal | <percentage>",
|
|
22870
23274
|
"relevance": 50,
|
|
@@ -22872,6 +23276,7 @@ export const cssData = {
|
|
|
22872
23276
|
},
|
|
22873
23277
|
{
|
|
22874
23278
|
"name": "descent-override",
|
|
23279
|
+
"atRule": "@font-face",
|
|
22875
23280
|
"status": "experimental",
|
|
22876
23281
|
"syntax": "normal | <percentage>",
|
|
22877
23282
|
"relevance": 50,
|
|
@@ -22879,13 +23284,15 @@ export const cssData = {
|
|
|
22879
23284
|
},
|
|
22880
23285
|
{
|
|
22881
23286
|
"name": "font-display",
|
|
23287
|
+
"atRule": "@font-face",
|
|
22882
23288
|
"status": "experimental",
|
|
22883
23289
|
"syntax": "[ auto | block | swap | fallback | optional ]",
|
|
22884
|
-
"relevance":
|
|
23290
|
+
"relevance": 72,
|
|
22885
23291
|
"description": "The font-display descriptor determines how a font face is displayed based on whether and when it is downloaded and ready to use."
|
|
22886
23292
|
},
|
|
22887
23293
|
{
|
|
22888
23294
|
"name": "line-gap-override",
|
|
23295
|
+
"atRule": "@font-face",
|
|
22889
23296
|
"status": "experimental",
|
|
22890
23297
|
"syntax": "normal | <percentage>",
|
|
22891
23298
|
"relevance": 50,
|
|
@@ -22893,6 +23300,7 @@ export const cssData = {
|
|
|
22893
23300
|
},
|
|
22894
23301
|
{
|
|
22895
23302
|
"name": "size-adjust",
|
|
23303
|
+
"atRule": "@font-face",
|
|
22896
23304
|
"status": "experimental",
|
|
22897
23305
|
"syntax": "<percentage>",
|
|
22898
23306
|
"relevance": 50,
|
|
@@ -22900,18 +23308,28 @@ export const cssData = {
|
|
|
22900
23308
|
},
|
|
22901
23309
|
{
|
|
22902
23310
|
"name": "bleed",
|
|
23311
|
+
"atRule": "@page",
|
|
22903
23312
|
"syntax": "auto | <length>",
|
|
22904
23313
|
"relevance": 50,
|
|
22905
23314
|
"description": "The bleed CSS at-rule descriptor, used with the @page at-rule, specifies the extent of the page bleed area outside the page box. This property only has effect if crop marks are enabled using the marks property."
|
|
22906
23315
|
},
|
|
22907
23316
|
{
|
|
22908
23317
|
"name": "marks",
|
|
23318
|
+
"atRule": "@page",
|
|
22909
23319
|
"syntax": "none | [ crop || cross ]",
|
|
22910
23320
|
"relevance": 50,
|
|
22911
23321
|
"description": "The marks CSS at-rule descriptor, used with the @page at-rule, adds crop and/or cross marks to the presentation of the document. Crop marks indicate where the page should be cut. Cross marks are used to align sheets."
|
|
22912
23322
|
},
|
|
23323
|
+
{
|
|
23324
|
+
"name": "page-orientation",
|
|
23325
|
+
"atRule": "@page",
|
|
23326
|
+
"syntax": "upright | rotate-left | rotate-right ",
|
|
23327
|
+
"relevance": 50,
|
|
23328
|
+
"description": "The page-orientation CSS descriptor for the @page at-rule controls the rotation of a printed page. It handles the flow of content across pages when the orientation of a page is changed. This behavior differs from the size descriptor in that a user can define the direction in which to rotate the page."
|
|
23329
|
+
},
|
|
22913
23330
|
{
|
|
22914
23331
|
"name": "syntax",
|
|
23332
|
+
"atRule": "@property",
|
|
22915
23333
|
"status": "experimental",
|
|
22916
23334
|
"syntax": "<string>",
|
|
22917
23335
|
"relevance": 50,
|
|
@@ -22919,6 +23337,7 @@ export const cssData = {
|
|
|
22919
23337
|
},
|
|
22920
23338
|
{
|
|
22921
23339
|
"name": "inherits",
|
|
23340
|
+
"atRule": "@property",
|
|
22922
23341
|
"status": "experimental",
|
|
22923
23342
|
"syntax": "true | false",
|
|
22924
23343
|
"values": [
|
|
@@ -22934,6 +23353,7 @@ export const cssData = {
|
|
|
22934
23353
|
},
|
|
22935
23354
|
{
|
|
22936
23355
|
"name": "initial-value",
|
|
23356
|
+
"atRule": "@property",
|
|
22937
23357
|
"status": "experimental",
|
|
22938
23358
|
"syntax": "<string>",
|
|
22939
23359
|
"relevance": 50,
|
|
@@ -22941,18 +23361,21 @@ export const cssData = {
|
|
|
22941
23361
|
},
|
|
22942
23362
|
{
|
|
22943
23363
|
"name": "max-zoom",
|
|
23364
|
+
"atRule": "@viewport",
|
|
22944
23365
|
"syntax": "auto | <number> | <percentage>",
|
|
22945
23366
|
"relevance": 50,
|
|
22946
23367
|
"description": "The max-zoom CSS descriptor sets the maximum zoom factor of a document defined by the @viewport at-rule. The browser will not zoom in any further than this, whether automatically or at the user's request.\n\nA zoom factor of 1.0 or 100% corresponds to no zooming. Larger values are zoomed in. Smaller values are zoomed out."
|
|
22947
23368
|
},
|
|
22948
23369
|
{
|
|
22949
23370
|
"name": "min-zoom",
|
|
23371
|
+
"atRule": "@viewport",
|
|
22950
23372
|
"syntax": "auto | <number> | <percentage>",
|
|
22951
23373
|
"relevance": 50,
|
|
22952
23374
|
"description": "The min-zoom CSS descriptor sets the minimum zoom factor of a document defined by the @viewport at-rule. The browser will not zoom out any further than this, whether automatically or at the user's request.\n\nA zoom factor of 1.0 or 100% corresponds to no zooming. Larger values are zoomed in. Smaller values are zoomed out."
|
|
22953
23375
|
},
|
|
22954
23376
|
{
|
|
22955
23377
|
"name": "orientation",
|
|
23378
|
+
"atRule": "@viewport",
|
|
22956
23379
|
"syntax": "auto | portrait | landscape",
|
|
22957
23380
|
"values": [
|
|
22958
23381
|
{
|
|
@@ -22970,6 +23393,7 @@ export const cssData = {
|
|
|
22970
23393
|
},
|
|
22971
23394
|
{
|
|
22972
23395
|
"name": "user-zoom",
|
|
23396
|
+
"atRule": "@viewport",
|
|
22973
23397
|
"syntax": "zoom | fixed",
|
|
22974
23398
|
"values": [
|
|
22975
23399
|
{
|
|
@@ -22984,6 +23408,7 @@ export const cssData = {
|
|
|
22984
23408
|
},
|
|
22985
23409
|
{
|
|
22986
23410
|
"name": "viewport-fit",
|
|
23411
|
+
"atRule": "@viewport",
|
|
22987
23412
|
"syntax": "auto | contain | cover",
|
|
22988
23413
|
"values": [
|
|
22989
23414
|
{
|
|
@@ -23024,6 +23449,7 @@ export const cssData = {
|
|
|
23024
23449
|
"browsers": [
|
|
23025
23450
|
"E91",
|
|
23026
23451
|
"FF33",
|
|
23452
|
+
"S17",
|
|
23027
23453
|
"C91",
|
|
23028
23454
|
"O77"
|
|
23029
23455
|
],
|
|
@@ -23197,6 +23623,7 @@ export const cssData = {
|
|
|
23197
23623
|
"browsers": [
|
|
23198
23624
|
"E12",
|
|
23199
23625
|
"FF19",
|
|
23626
|
+
"S≤13.1",
|
|
23200
23627
|
"C2",
|
|
23201
23628
|
"IE8",
|
|
23202
23629
|
"O6"
|
|
@@ -23213,6 +23640,8 @@ export const cssData = {
|
|
|
23213
23640
|
"name": "@property",
|
|
23214
23641
|
"browsers": [
|
|
23215
23642
|
"E85",
|
|
23643
|
+
"FFpreview",
|
|
23644
|
+
"S16.4",
|
|
23216
23645
|
"C85",
|
|
23217
23646
|
"O71"
|
|
23218
23647
|
],
|
|
@@ -24286,7 +24715,8 @@ export const cssData = {
|
|
|
24286
24715
|
{
|
|
24287
24716
|
"name": ":dir",
|
|
24288
24717
|
"browsers": [
|
|
24289
|
-
"FF49"
|
|
24718
|
+
"FF49",
|
|
24719
|
+
"S16.4"
|
|
24290
24720
|
],
|
|
24291
24721
|
"references": [
|
|
24292
24722
|
{
|
|
@@ -24444,7 +24874,7 @@ export const cssData = {
|
|
|
24444
24874
|
"status": "experimental",
|
|
24445
24875
|
"browsers": [
|
|
24446
24876
|
"FF88",
|
|
24447
|
-
"
|
|
24877
|
+
"S16.5"
|
|
24448
24878
|
],
|
|
24449
24879
|
"references": [
|
|
24450
24880
|
{
|
|
@@ -24459,7 +24889,7 @@ export const cssData = {
|
|
|
24459
24889
|
"status": "experimental",
|
|
24460
24890
|
"browsers": [
|
|
24461
24891
|
"FF88",
|
|
24462
|
-
"
|
|
24892
|
+
"S16.5"
|
|
24463
24893
|
],
|
|
24464
24894
|
"references": [
|
|
24465
24895
|
{
|
|
@@ -25365,6 +25795,86 @@ export const cssData = {
|
|
|
25365
25795
|
}
|
|
25366
25796
|
],
|
|
25367
25797
|
"description": "The ::spelling-error CSS pseudo-element represents a text segment which the user agent has flagged as incorrectly spelled."
|
|
25798
|
+
},
|
|
25799
|
+
{
|
|
25800
|
+
"name": "::view-transition",
|
|
25801
|
+
"status": "experimental",
|
|
25802
|
+
"browsers": [
|
|
25803
|
+
"E111",
|
|
25804
|
+
"C111",
|
|
25805
|
+
"O97"
|
|
25806
|
+
],
|
|
25807
|
+
"references": [
|
|
25808
|
+
{
|
|
25809
|
+
"name": "MDN Reference",
|
|
25810
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/::view-transition"
|
|
25811
|
+
}
|
|
25812
|
+
],
|
|
25813
|
+
"description": "The ::view-transition CSS pseudo-element represents the root of the view transitions overlay, which contains all view transitions and sits over the top of all other page content."
|
|
25814
|
+
},
|
|
25815
|
+
{
|
|
25816
|
+
"name": "::view-transition-group",
|
|
25817
|
+
"status": "experimental",
|
|
25818
|
+
"browsers": [
|
|
25819
|
+
"E111",
|
|
25820
|
+
"C111",
|
|
25821
|
+
"O97"
|
|
25822
|
+
],
|
|
25823
|
+
"references": [
|
|
25824
|
+
{
|
|
25825
|
+
"name": "MDN Reference",
|
|
25826
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/::view-transition-group"
|
|
25827
|
+
}
|
|
25828
|
+
],
|
|
25829
|
+
"description": "The ::view-transition-group CSS pseudo-element represents a single view transition group."
|
|
25830
|
+
},
|
|
25831
|
+
{
|
|
25832
|
+
"name": "::view-transition-image-pair",
|
|
25833
|
+
"status": "experimental",
|
|
25834
|
+
"browsers": [
|
|
25835
|
+
"E111",
|
|
25836
|
+
"C111",
|
|
25837
|
+
"O97"
|
|
25838
|
+
],
|
|
25839
|
+
"references": [
|
|
25840
|
+
{
|
|
25841
|
+
"name": "MDN Reference",
|
|
25842
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/::view-transition-image-pair"
|
|
25843
|
+
}
|
|
25844
|
+
],
|
|
25845
|
+
"description": "The ::view-transition-image-pair CSS pseudo-element represents a container for a view transition's \"old\" and \"new\" view states — before and after the transition."
|
|
25846
|
+
},
|
|
25847
|
+
{
|
|
25848
|
+
"name": "::view-transition-new",
|
|
25849
|
+
"status": "experimental",
|
|
25850
|
+
"browsers": [
|
|
25851
|
+
"E111",
|
|
25852
|
+
"C111",
|
|
25853
|
+
"O97"
|
|
25854
|
+
],
|
|
25855
|
+
"references": [
|
|
25856
|
+
{
|
|
25857
|
+
"name": "MDN Reference",
|
|
25858
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/::view-transition-new"
|
|
25859
|
+
}
|
|
25860
|
+
],
|
|
25861
|
+
"description": "The ::view-transition-new CSS pseudo-element represents the \"new\" view state of a view transition — a live representation of the new view, after the transition."
|
|
25862
|
+
},
|
|
25863
|
+
{
|
|
25864
|
+
"name": "::view-transition-old",
|
|
25865
|
+
"status": "experimental",
|
|
25866
|
+
"browsers": [
|
|
25867
|
+
"E111",
|
|
25868
|
+
"C111",
|
|
25869
|
+
"O97"
|
|
25870
|
+
],
|
|
25871
|
+
"references": [
|
|
25872
|
+
{
|
|
25873
|
+
"name": "MDN Reference",
|
|
25874
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/::view-transition-old"
|
|
25875
|
+
}
|
|
25876
|
+
],
|
|
25877
|
+
"description": "The ::view-transition-old CSS pseudo-element represents the \"old\" view state of a view transition — a static screenshot of the old view, before the transition."
|
|
25368
25878
|
}
|
|
25369
25879
|
]
|
|
25370
25880
|
};
|