@eslint/css-tree 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -0
- package/README.md +194 -0
- package/cjs/convertor/create.cjs +32 -0
- package/cjs/convertor/index.cjs +8 -0
- package/cjs/data-patch.cjs +7 -0
- package/cjs/data.cjs +120 -0
- package/cjs/definition-syntax/SyntaxError.cjs +16 -0
- package/cjs/definition-syntax/generate.cjs +139 -0
- package/cjs/definition-syntax/index.cjs +13 -0
- package/cjs/definition-syntax/parse.cjs +556 -0
- package/cjs/definition-syntax/scanner.cjs +113 -0
- package/cjs/definition-syntax/walk.cjs +57 -0
- package/cjs/generator/create.cjs +102 -0
- package/cjs/generator/index.cjs +8 -0
- package/cjs/generator/sourceMap.cjs +96 -0
- package/cjs/generator/token-before.cjs +170 -0
- package/cjs/index.cjs +65 -0
- package/cjs/lexer/Lexer.cjs +517 -0
- package/cjs/lexer/error.cjs +128 -0
- package/cjs/lexer/generic-an-plus-b.cjs +235 -0
- package/cjs/lexer/generic-const.cjs +12 -0
- package/cjs/lexer/generic-urange.cjs +149 -0
- package/cjs/lexer/generic.cjs +589 -0
- package/cjs/lexer/index.cjs +7 -0
- package/cjs/lexer/match-graph.cjs +530 -0
- package/cjs/lexer/match.cjs +632 -0
- package/cjs/lexer/prepare-tokens.cjs +54 -0
- package/cjs/lexer/search.cjs +65 -0
- package/cjs/lexer/structure.cjs +173 -0
- package/cjs/lexer/trace.cjs +73 -0
- package/cjs/lexer/units.cjs +38 -0
- package/cjs/parser/SyntaxError.cjs +74 -0
- package/cjs/parser/create.cjs +378 -0
- package/cjs/parser/index.cjs +8 -0
- package/cjs/parser/parse-selector.cjs +8 -0
- package/cjs/parser/sequence.cjs +47 -0
- package/cjs/syntax/atrule/container.cjs +32 -0
- package/cjs/syntax/atrule/font-face.cjs +12 -0
- package/cjs/syntax/atrule/import.cjs +101 -0
- package/cjs/syntax/atrule/index.cjs +27 -0
- package/cjs/syntax/atrule/layer.cjs +16 -0
- package/cjs/syntax/atrule/media.cjs +16 -0
- package/cjs/syntax/atrule/nest.cjs +16 -0
- package/cjs/syntax/atrule/page.cjs +16 -0
- package/cjs/syntax/atrule/scope.cjs +16 -0
- package/cjs/syntax/atrule/starting-style.cjs +12 -0
- package/cjs/syntax/atrule/supports.cjs +16 -0
- package/cjs/syntax/config/generator.cjs +9 -0
- package/cjs/syntax/config/lexer.cjs +14 -0
- package/cjs/syntax/config/mix.cjs +126 -0
- package/cjs/syntax/config/parser-selector.cjs +19 -0
- package/cjs/syntax/config/parser.cjs +49 -0
- package/cjs/syntax/config/walker.cjs +9 -0
- package/cjs/syntax/create.cjs +58 -0
- package/cjs/syntax/function/expression.cjs +11 -0
- package/cjs/syntax/function/var.cjs +43 -0
- package/cjs/syntax/index.cjs +14 -0
- package/cjs/syntax/node/AnPlusB.cjs +293 -0
- package/cjs/syntax/node/Atrule.cjs +103 -0
- package/cjs/syntax/node/AtrulePrelude.cjs +52 -0
- package/cjs/syntax/node/AttributeSelector.cjs +148 -0
- package/cjs/syntax/node/Block.cjs +96 -0
- package/cjs/syntax/node/Brackets.cjs +38 -0
- package/cjs/syntax/node/CDC.cjs +26 -0
- package/cjs/syntax/node/CDO.cjs +26 -0
- package/cjs/syntax/node/ClassSelector.cjs +31 -0
- package/cjs/syntax/node/Combinator.cjs +61 -0
- package/cjs/syntax/node/Comment.cjs +40 -0
- package/cjs/syntax/node/Condition.cjs +120 -0
- package/cjs/syntax/node/Declaration.cjs +166 -0
- package/cjs/syntax/node/DeclarationList.cjs +62 -0
- package/cjs/syntax/node/Dimension.cjs +30 -0
- package/cjs/syntax/node/Feature.cjs +101 -0
- package/cjs/syntax/node/FeatureFunction.cjs +67 -0
- package/cjs/syntax/node/FeatureRange.cjs +133 -0
- package/cjs/syntax/node/Function.cjs +45 -0
- package/cjs/syntax/node/GeneralEnclosed.cjs +68 -0
- package/cjs/syntax/node/Hash.cjs +30 -0
- package/cjs/syntax/node/IdSelector.cjs +33 -0
- package/cjs/syntax/node/Identifier.cjs +25 -0
- package/cjs/syntax/node/Layer.cjs +35 -0
- package/cjs/syntax/node/LayerList.cjs +43 -0
- package/cjs/syntax/node/MediaQuery.cjs +100 -0
- package/cjs/syntax/node/MediaQueryList.cjs +41 -0
- package/cjs/syntax/node/NestingSelector.cjs +29 -0
- package/cjs/syntax/node/Nth.cjs +54 -0
- package/cjs/syntax/node/Number.cjs +25 -0
- package/cjs/syntax/node/Operator.cjs +28 -0
- package/cjs/syntax/node/Parentheses.cjs +38 -0
- package/cjs/syntax/node/Percentage.cjs +25 -0
- package/cjs/syntax/node/PseudoClassSelector.cjs +67 -0
- package/cjs/syntax/node/PseudoElementSelector.cjs +69 -0
- package/cjs/syntax/node/Ratio.cjs +71 -0
- package/cjs/syntax/node/Raw.cjs +48 -0
- package/cjs/syntax/node/Rule.cjs +58 -0
- package/cjs/syntax/node/Scope.cjs +69 -0
- package/cjs/syntax/node/Selector.cjs +38 -0
- package/cjs/syntax/node/SelectorList.cjs +43 -0
- package/cjs/syntax/node/String.cjs +26 -0
- package/cjs/syntax/node/StyleSheet.cjs +83 -0
- package/cjs/syntax/node/SupportsDeclaration.cjs +38 -0
- package/cjs/syntax/node/TypeSelector.cjs +59 -0
- package/cjs/syntax/node/UnicodeRange.cjs +158 -0
- package/cjs/syntax/node/Url.cjs +54 -0
- package/cjs/syntax/node/Value.cjs +26 -0
- package/cjs/syntax/node/WhiteSpace.cjs +34 -0
- package/cjs/syntax/node/index-generate.cjs +103 -0
- package/cjs/syntax/node/index-parse-selector.cjs +39 -0
- package/cjs/syntax/node/index-parse.cjs +103 -0
- package/cjs/syntax/node/index.cjs +103 -0
- package/cjs/syntax/pseudo/index.cjs +60 -0
- package/cjs/syntax/pseudo/lang.cjs +37 -0
- package/cjs/syntax/scope/atrulePrelude.cjs +9 -0
- package/cjs/syntax/scope/default.cjs +76 -0
- package/cjs/syntax/scope/index.cjs +11 -0
- package/cjs/syntax/scope/selector.cjs +88 -0
- package/cjs/syntax/scope/value.cjs +29 -0
- package/cjs/tokenizer/OffsetToLocation.cjs +91 -0
- package/cjs/tokenizer/TokenStream.cjs +358 -0
- package/cjs/tokenizer/adopt-buffer.cjs +13 -0
- package/cjs/tokenizer/char-code-definitions.cjs +236 -0
- package/cjs/tokenizer/index.cjs +554 -0
- package/cjs/tokenizer/names.cjs +32 -0
- package/cjs/tokenizer/types.cjs +57 -0
- package/cjs/tokenizer/utils.cjs +261 -0
- package/cjs/utils/List.cjs +473 -0
- package/cjs/utils/clone.cjs +25 -0
- package/cjs/utils/create-custom-error.cjs +18 -0
- package/cjs/utils/ident.cjs +102 -0
- package/cjs/utils/index.cjs +20 -0
- package/cjs/utils/names.cjs +113 -0
- package/cjs/utils/string.cjs +99 -0
- package/cjs/utils/url.cjs +108 -0
- package/cjs/version.cjs +5 -0
- package/cjs/walker/create.cjs +291 -0
- package/cjs/walker/index.cjs +8 -0
- package/data/patch.json +874 -0
- package/dist/csstree.esm.js +12 -0
- package/dist/csstree.js +12 -0
- package/dist/data.cjs +1341 -0
- package/dist/data.js +1341 -0
- package/dist/version.cjs +1 -0
- package/dist/version.js +1 -0
- package/lib/convertor/create.js +28 -0
- package/lib/convertor/index.js +4 -0
- package/lib/data-patch.js +6 -0
- package/lib/data.js +118 -0
- package/lib/definition-syntax/SyntaxError.js +12 -0
- package/lib/definition-syntax/generate.js +135 -0
- package/lib/definition-syntax/index.js +4 -0
- package/lib/definition-syntax/parse.js +552 -0
- package/lib/definition-syntax/scanner.js +109 -0
- package/lib/definition-syntax/walk.js +53 -0
- package/lib/generator/create.js +97 -0
- package/lib/generator/index.js +4 -0
- package/lib/generator/sourceMap.js +92 -0
- package/lib/generator/token-before.js +182 -0
- package/lib/index.d.ts +3016 -0
- package/lib/index.js +30 -0
- package/lib/lexer/Lexer.js +511 -0
- package/lib/lexer/error.js +123 -0
- package/lib/lexer/generic-an-plus-b.js +238 -0
- package/lib/lexer/generic-const.js +8 -0
- package/lib/lexer/generic-urange.js +151 -0
- package/lib/lexer/generic.js +622 -0
- package/lib/lexer/index.js +1 -0
- package/lib/lexer/match-graph.js +527 -0
- package/lib/lexer/match.js +630 -0
- package/lib/lexer/prepare-tokens.js +50 -0
- package/lib/lexer/search.js +61 -0
- package/lib/lexer/structure.js +169 -0
- package/lib/lexer/trace.js +66 -0
- package/lib/lexer/units.js +27 -0
- package/lib/parser/SyntaxError.js +70 -0
- package/lib/parser/create.js +388 -0
- package/lib/parser/index.js +4 -0
- package/lib/parser/parse-selector.js +4 -0
- package/lib/parser/sequence.js +43 -0
- package/lib/syntax/atrule/container.js +28 -0
- package/lib/syntax/atrule/font-face.js +8 -0
- package/lib/syntax/atrule/import.js +104 -0
- package/lib/syntax/atrule/index.js +23 -0
- package/lib/syntax/atrule/layer.js +12 -0
- package/lib/syntax/atrule/media.js +12 -0
- package/lib/syntax/atrule/nest.js +12 -0
- package/lib/syntax/atrule/page.js +12 -0
- package/lib/syntax/atrule/scope.js +12 -0
- package/lib/syntax/atrule/starting-style.js +8 -0
- package/lib/syntax/atrule/supports.js +12 -0
- package/lib/syntax/config/generator.js +5 -0
- package/lib/syntax/config/lexer.js +10 -0
- package/lib/syntax/config/mix.js +122 -0
- package/lib/syntax/config/parser-selector.js +15 -0
- package/lib/syntax/config/parser.js +45 -0
- package/lib/syntax/config/walker.js +5 -0
- package/lib/syntax/create.js +55 -0
- package/lib/syntax/function/expression.js +7 -0
- package/lib/syntax/function/var.js +39 -0
- package/lib/syntax/index.js +10 -0
- package/lib/syntax/node/AnPlusB.js +292 -0
- package/lib/syntax/node/Atrule.js +100 -0
- package/lib/syntax/node/AtrulePrelude.js +47 -0
- package/lib/syntax/node/AttributeSelector.js +147 -0
- package/lib/syntax/node/Block.js +95 -0
- package/lib/syntax/node/Brackets.js +35 -0
- package/lib/syntax/node/CDC.js +19 -0
- package/lib/syntax/node/CDO.js +19 -0
- package/lib/syntax/node/ClassSelector.js +24 -0
- package/lib/syntax/node/Combinator.js +54 -0
- package/lib/syntax/node/Comment.js +33 -0
- package/lib/syntax/node/Condition.js +123 -0
- package/lib/syntax/node/Declaration.js +165 -0
- package/lib/syntax/node/DeclarationList.js +62 -0
- package/lib/syntax/node/Dimension.js +23 -0
- package/lib/syntax/node/Feature.js +103 -0
- package/lib/syntax/node/FeatureFunction.js +63 -0
- package/lib/syntax/node/FeatureRange.js +133 -0
- package/lib/syntax/node/Function.js +41 -0
- package/lib/syntax/node/GeneralEnclosed.js +66 -0
- package/lib/syntax/node/Hash.js +23 -0
- package/lib/syntax/node/IdSelector.js +26 -0
- package/lib/syntax/node/Identifier.js +18 -0
- package/lib/syntax/node/Layer.js +28 -0
- package/lib/syntax/node/LayerList.js +36 -0
- package/lib/syntax/node/MediaQuery.js +102 -0
- package/lib/syntax/node/MediaQueryList.js +34 -0
- package/lib/syntax/node/NestingSelector.js +22 -0
- package/lib/syntax/node/Nth.js +47 -0
- package/lib/syntax/node/Number.js +18 -0
- package/lib/syntax/node/Operator.js +21 -0
- package/lib/syntax/node/Parentheses.js +34 -0
- package/lib/syntax/node/Percentage.js +18 -0
- package/lib/syntax/node/PseudoClassSelector.js +65 -0
- package/lib/syntax/node/PseudoElementSelector.js +66 -0
- package/lib/syntax/node/Ratio.js +68 -0
- package/lib/syntax/node/Raw.js +41 -0
- package/lib/syntax/node/Rule.js +51 -0
- package/lib/syntax/node/Scope.js +66 -0
- package/lib/syntax/node/Selector.js +31 -0
- package/lib/syntax/node/SelectorList.js +35 -0
- package/lib/syntax/node/String.js +19 -0
- package/lib/syntax/node/StyleSheet.js +82 -0
- package/lib/syntax/node/SupportsDeclaration.js +34 -0
- package/lib/syntax/node/TypeSelector.js +52 -0
- package/lib/syntax/node/UnicodeRange.js +156 -0
- package/lib/syntax/node/Url.js +52 -0
- package/lib/syntax/node/Value.js +19 -0
- package/lib/syntax/node/WhiteSpace.js +27 -0
- package/lib/syntax/node/index-generate.js +49 -0
- package/lib/syntax/node/index-parse-selector.js +17 -0
- package/lib/syntax/node/index-parse.js +49 -0
- package/lib/syntax/node/index.js +49 -0
- package/lib/syntax/pseudo/index.js +56 -0
- package/lib/syntax/pseudo/lang.js +33 -0
- package/lib/syntax/scope/atrulePrelude.js +5 -0
- package/lib/syntax/scope/default.js +85 -0
- package/lib/syntax/scope/index.js +3 -0
- package/lib/syntax/scope/selector.js +94 -0
- package/lib/syntax/scope/value.js +25 -0
- package/lib/tokenizer/OffsetToLocation.js +87 -0
- package/lib/tokenizer/TokenStream.js +366 -0
- package/lib/tokenizer/adopt-buffer.js +9 -0
- package/lib/tokenizer/char-code-definitions.js +212 -0
- package/lib/tokenizer/index.js +513 -0
- package/lib/tokenizer/names.js +28 -0
- package/lib/tokenizer/types.js +28 -0
- package/lib/tokenizer/utils.js +254 -0
- package/lib/utils/List.js +469 -0
- package/lib/utils/clone.js +21 -0
- package/lib/utils/create-custom-error.js +14 -0
- package/lib/utils/ident.js +101 -0
- package/lib/utils/index.js +6 -0
- package/lib/utils/names.js +106 -0
- package/lib/utils/string.js +99 -0
- package/lib/utils/url.js +108 -0
- package/lib/version.js +5 -0
- package/lib/walker/create.js +287 -0
- package/lib/walker/index.js +4 -0
- package/package.json +133 -0
package/dist/data.cjs
ADDED
|
@@ -0,0 +1,1341 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
"generic": true,
|
|
3
|
+
"cssWideKeywords": [
|
|
4
|
+
"initial",
|
|
5
|
+
"inherit",
|
|
6
|
+
"unset",
|
|
7
|
+
"revert",
|
|
8
|
+
"revert-layer"
|
|
9
|
+
],
|
|
10
|
+
"units": {
|
|
11
|
+
"angle": [
|
|
12
|
+
"deg",
|
|
13
|
+
"grad",
|
|
14
|
+
"rad",
|
|
15
|
+
"turn"
|
|
16
|
+
],
|
|
17
|
+
"decibel": [
|
|
18
|
+
"db"
|
|
19
|
+
],
|
|
20
|
+
"flex": [
|
|
21
|
+
"fr"
|
|
22
|
+
],
|
|
23
|
+
"frequency": [
|
|
24
|
+
"hz",
|
|
25
|
+
"khz"
|
|
26
|
+
],
|
|
27
|
+
"length": [
|
|
28
|
+
"cm",
|
|
29
|
+
"mm",
|
|
30
|
+
"q",
|
|
31
|
+
"in",
|
|
32
|
+
"pt",
|
|
33
|
+
"pc",
|
|
34
|
+
"px",
|
|
35
|
+
"em",
|
|
36
|
+
"rem",
|
|
37
|
+
"ex",
|
|
38
|
+
"rex",
|
|
39
|
+
"cap",
|
|
40
|
+
"rcap",
|
|
41
|
+
"ch",
|
|
42
|
+
"rch",
|
|
43
|
+
"ic",
|
|
44
|
+
"ric",
|
|
45
|
+
"lh",
|
|
46
|
+
"rlh",
|
|
47
|
+
"vw",
|
|
48
|
+
"svw",
|
|
49
|
+
"lvw",
|
|
50
|
+
"dvw",
|
|
51
|
+
"vh",
|
|
52
|
+
"svh",
|
|
53
|
+
"lvh",
|
|
54
|
+
"dvh",
|
|
55
|
+
"vi",
|
|
56
|
+
"svi",
|
|
57
|
+
"lvi",
|
|
58
|
+
"dvi",
|
|
59
|
+
"vb",
|
|
60
|
+
"svb",
|
|
61
|
+
"lvb",
|
|
62
|
+
"dvb",
|
|
63
|
+
"vmin",
|
|
64
|
+
"svmin",
|
|
65
|
+
"lvmin",
|
|
66
|
+
"dvmin",
|
|
67
|
+
"vmax",
|
|
68
|
+
"svmax",
|
|
69
|
+
"lvmax",
|
|
70
|
+
"dvmax",
|
|
71
|
+
"cqw",
|
|
72
|
+
"cqh",
|
|
73
|
+
"cqi",
|
|
74
|
+
"cqb",
|
|
75
|
+
"cqmin",
|
|
76
|
+
"cqmax"
|
|
77
|
+
],
|
|
78
|
+
"resolution": [
|
|
79
|
+
"dpi",
|
|
80
|
+
"dpcm",
|
|
81
|
+
"dppx",
|
|
82
|
+
"x"
|
|
83
|
+
],
|
|
84
|
+
"semitones": [
|
|
85
|
+
"st"
|
|
86
|
+
],
|
|
87
|
+
"time": [
|
|
88
|
+
"s",
|
|
89
|
+
"ms"
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
"types": {
|
|
93
|
+
"abs()": "abs( <calc-sum> )",
|
|
94
|
+
"absolute-size": "xx-small|x-small|small|medium|large|x-large|xx-large|xxx-large",
|
|
95
|
+
"acos()": "acos( <calc-sum> )",
|
|
96
|
+
"alpha-value": "<number>|<percentage>",
|
|
97
|
+
"an+b": "odd|even|<integer>|<n-dimension>|'+'? † n|-n|<ndashdigit-dimension>|'+'? † <ndashdigit-ident>|<dashndashdigit-ident>|<n-dimension> <signed-integer>|'+'? † n <signed-integer>|-n <signed-integer>|<ndash-dimension> <signless-integer>|'+'? † n- <signless-integer>|-n- <signless-integer>|<n-dimension> ['+'|'-'] <signless-integer>|'+'? † n ['+'|'-'] <signless-integer>|-n ['+'|'-'] <signless-integer>",
|
|
98
|
+
"anchor()": "anchor( <anchor-element>?&&<anchor-side> , <length-percentage>? )",
|
|
99
|
+
"anchor-name": "<dashed-ident>",
|
|
100
|
+
"anchor-side": "inside|outside|top|left|right|bottom|start|end|self-start|self-end|<percentage>|center",
|
|
101
|
+
"anchor-size": "width|height|block|inline|self-block|self-inline",
|
|
102
|
+
"anchor-size()": "anchor-size( [<anchor-element>||<anchor-size>]? , <length-percentage>? )",
|
|
103
|
+
"angle-percentage": "<angle>|<percentage>",
|
|
104
|
+
"angular-color-hint": "<angle-percentage>",
|
|
105
|
+
"angular-color-stop": "<color>&&<color-stop-angle>?",
|
|
106
|
+
"angular-color-stop-list": "[<angular-color-stop> [, <angular-color-hint>]?]# , <angular-color-stop>",
|
|
107
|
+
"animateable-feature": "scroll-position|contents|<custom-ident>",
|
|
108
|
+
"asin()": "asin( <calc-sum> )",
|
|
109
|
+
"atan()": "atan( <calc-sum> )",
|
|
110
|
+
"atan2()": "atan2( <calc-sum> , <calc-sum> )",
|
|
111
|
+
"attachment": "scroll|fixed|local",
|
|
112
|
+
"attr()": "attr( <attr-name> <type-or-unit>? [, <attr-fallback>]? )",
|
|
113
|
+
"attr-matcher": "['~'|'|'|'^'|'$'|'*']? '='",
|
|
114
|
+
"attr-modifier": "i|s",
|
|
115
|
+
"attribute-selector": "'[' <wq-name> ']'|'[' <wq-name> <attr-matcher> [<string-token>|<ident-token>] <attr-modifier>? ']'",
|
|
116
|
+
"auto-repeat": "repeat( [auto-fill|auto-fit] , [<line-names>? <fixed-size>]+ <line-names>? )",
|
|
117
|
+
"auto-track-list": "[<line-names>? [<fixed-size>|<fixed-repeat>]]* <line-names>? <auto-repeat> [<line-names>? [<fixed-size>|<fixed-repeat>]]* <line-names>?",
|
|
118
|
+
"axis": "block|inline|x|y",
|
|
119
|
+
"baseline-position": "[first|last]? baseline",
|
|
120
|
+
"basic-shape": "<inset()>|<xywh()>|<rect()>|<circle()>|<ellipse()>|<polygon()>|<path()>",
|
|
121
|
+
"bg-clip": "<visual-box>|border-area|text",
|
|
122
|
+
"bg-image": "none|<image>",
|
|
123
|
+
"bg-layer": "<bg-image>||<bg-position> [/ <bg-size>]?||<repeat-style>||<attachment>||<visual-box>||<visual-box>",
|
|
124
|
+
"bg-position": "[[left|center|right|top|bottom|<length-percentage>]|[left|center|right|<length-percentage>] [top|center|bottom|<length-percentage>]|[center|[left|right] <length-percentage>?]&&[center|[top|bottom] <length-percentage>?]]",
|
|
125
|
+
"bg-size": "[<length-percentage>|auto]{1,2}|cover|contain",
|
|
126
|
+
"blend-mode": "normal|multiply|screen|overlay|darken|lighten|color-dodge|color-burn|hard-light|soft-light|difference|exclusion|hue|saturation|color|luminosity",
|
|
127
|
+
"blur()": "blur( <length>? )",
|
|
128
|
+
"brightness()": "brightness( [<number>|<percentage>]? )",
|
|
129
|
+
"calc()": "calc( <calc-sum> )",
|
|
130
|
+
"calc-constant": "e|pi|infinity|-infinity|NaN",
|
|
131
|
+
"calc-product": "<calc-value> ['*' <calc-value>|'/' <number>]*",
|
|
132
|
+
"calc-size()": "calc-size( <calc-size-basis> , <calc-sum> )",
|
|
133
|
+
"calc-size-basis": "<intrinsic-size-keyword>|<calc-size()>|any|<calc-sum>",
|
|
134
|
+
"calc-sum": "<calc-product> [['+'|'-'] <calc-product>]*",
|
|
135
|
+
"calc-value": "<number>|<dimension>|<percentage>|<calc-constant>|( <calc-sum> )",
|
|
136
|
+
"cf-final-image": "<image>|<color>",
|
|
137
|
+
"cf-mixing-image": "<percentage>?&&<image>",
|
|
138
|
+
"circle()": "circle( <radial-size>? [at <position>]? )",
|
|
139
|
+
"clamp()": "clamp( <calc-sum>#{3} )",
|
|
140
|
+
"class-selector": "'.' <ident-token>",
|
|
141
|
+
"clip-source": "<url>",
|
|
142
|
+
"color": "<color-base>|currentColor|<system-color>|<device-cmyk()>|<light-dark()>|<-non-standard-color>",
|
|
143
|
+
"color()": "color( <colorspace-params> [/ [<alpha-value>|none]]? )",
|
|
144
|
+
"color-base": "<hex-color>|<color-function>|<named-color>|<color-mix()>|transparent",
|
|
145
|
+
"color-function": "<rgb()>|<rgba()>|<hsl()>|<hsla()>|<hwb()>|<lab()>|<lch()>|<oklab()>|<oklch()>|<color()>",
|
|
146
|
+
"color-interpolation-method": "in [<rectangular-color-space>|<polar-color-space> <hue-interpolation-method>?|<custom-color-space>]",
|
|
147
|
+
"color-mix()": "color-mix( <color-interpolation-method> , [<color>&&<percentage [0,100]>?]#{2} )",
|
|
148
|
+
"color-stop": "<color-stop-length>|<color-stop-angle>",
|
|
149
|
+
"color-stop-angle": "<angle-percentage>{1,2}",
|
|
150
|
+
"color-stop-length": "<length-percentage>{1,2}",
|
|
151
|
+
"color-stop-list": "[<linear-color-stop> [, <linear-color-hint>]?]# , <linear-color-stop>",
|
|
152
|
+
"colorspace-params": "[<predefined-rgb-params>|<xyz-params>]",
|
|
153
|
+
"combinator": "'>'|'+'|'~'|['|' '|']",
|
|
154
|
+
"common-lig-values": "[common-ligatures|no-common-ligatures]",
|
|
155
|
+
"compat-auto": "searchfield|textarea|push-button|slider-horizontal|checkbox|radio|square-button|menulist|listbox|meter|progress-bar|button",
|
|
156
|
+
"complex-selector": "<complex-selector-unit> [<combinator>? <complex-selector-unit>]*",
|
|
157
|
+
"complex-selector-list": "<complex-selector>#",
|
|
158
|
+
"composite-style": "clear|copy|source-over|source-in|source-out|source-atop|destination-over|destination-in|destination-out|destination-atop|xor",
|
|
159
|
+
"compositing-operator": "add|subtract|intersect|exclude",
|
|
160
|
+
"compound-selector": "[<type-selector>? <subclass-selector>*]!",
|
|
161
|
+
"compound-selector-list": "<compound-selector>#",
|
|
162
|
+
"conic-gradient()": "conic-gradient( [from <angle>]? [at <position>]? , <angular-color-stop-list> )",
|
|
163
|
+
"content-distribution": "space-between|space-around|space-evenly|stretch",
|
|
164
|
+
"content-list": "[<string>|contents|<image>|<counter>|<quote>|<target>|<leader()>|<attr()>]+",
|
|
165
|
+
"content-position": "center|start|end|flex-start|flex-end",
|
|
166
|
+
"content-replacement": "<image>",
|
|
167
|
+
"contextual-alt-values": "[contextual|no-contextual]",
|
|
168
|
+
"contrast()": "contrast( [<number>|<percentage>]? )",
|
|
169
|
+
"coord-box": "content-box|padding-box|border-box|fill-box|stroke-box|view-box",
|
|
170
|
+
"cos()": "cos( <calc-sum> )",
|
|
171
|
+
"counter": "<counter()>|<counters()>",
|
|
172
|
+
"counter()": "counter( <counter-name> , <counter-style>? )",
|
|
173
|
+
"counter-name": "<custom-ident>",
|
|
174
|
+
"counter-style": "<counter-style-name>|symbols( )",
|
|
175
|
+
"counter-style-name": "<custom-ident>",
|
|
176
|
+
"counters()": "counters( <counter-name> , <string> , <counter-style>? )",
|
|
177
|
+
"cross-fade()": "cross-fade( <cf-mixing-image> , <cf-final-image>? )",
|
|
178
|
+
"cubic-bezier-timing-function": "ease|ease-in|ease-out|ease-in-out|cubic-bezier( <number [0,1]> , <number> , <number [0,1]> , <number> )",
|
|
179
|
+
"custom-color-space": "<dashed-ident>",
|
|
180
|
+
"custom-params": "<dashed-ident> [<number>|<percentage>|none]+",
|
|
181
|
+
"dasharray": "[[<length-percentage>|<number>]+]#",
|
|
182
|
+
"dashndashdigit-ident": "<ident-token>",
|
|
183
|
+
"deprecated-system-color": "ActiveBorder|ActiveCaption|AppWorkspace|Background|ButtonHighlight|ButtonShadow|CaptionText|InactiveBorder|InactiveCaption|InactiveCaptionText|InfoBackground|InfoText|Menu|MenuText|Scrollbar|ThreeDDarkShadow|ThreeDFace|ThreeDHighlight|ThreeDLightShadow|ThreeDShadow|Window|WindowFrame|WindowText",
|
|
184
|
+
"discretionary-lig-values": "[discretionary-ligatures|no-discretionary-ligatures]",
|
|
185
|
+
"display-box": "contents|none",
|
|
186
|
+
"display-inside": "flow|flow-root|table|flex|grid|ruby",
|
|
187
|
+
"display-internal": "table-row-group|table-header-group|table-footer-group|table-row|table-cell|table-column-group|table-column|table-caption|ruby-base|ruby-text|ruby-base-container|ruby-text-container",
|
|
188
|
+
"display-legacy": "inline-block|inline-list-item|inline-table|inline-flex|inline-grid",
|
|
189
|
+
"display-listitem": "<display-outside>?&&[flow|flow-root]?&&list-item",
|
|
190
|
+
"display-outside": "block|inline|run-in",
|
|
191
|
+
"drop-shadow()": "drop-shadow( [<color>?&&<length>{2,3}] )",
|
|
192
|
+
"easing-function": "linear|<cubic-bezier-timing-function>|<step-timing-function>",
|
|
193
|
+
"east-asian-variant-values": "[jis78|jis83|jis90|jis04|simplified|traditional]",
|
|
194
|
+
"east-asian-width-values": "[full-width|proportional-width]",
|
|
195
|
+
"element()": "element( <custom-ident> , [first|start|last|first-except]? )|element( <id-selector> )",
|
|
196
|
+
"ellipse()": "ellipse( <radial-size>? [at <position>]? )",
|
|
197
|
+
"ending-shape": "circle|ellipse",
|
|
198
|
+
"env()": "env( <custom-ident> , <declaration-value>? )",
|
|
199
|
+
"exp()": "exp( <calc-sum> )",
|
|
200
|
+
"explicit-track-list": "[<line-names>? <track-size>]+ <line-names>?",
|
|
201
|
+
"family-name": "<string>|<custom-ident>+",
|
|
202
|
+
"feature-tag-value": "<string> [<integer>|on|off]?",
|
|
203
|
+
"feature-type": "@stylistic|@historical-forms|@styleset|@character-variant|@swash|@ornaments|@annotation",
|
|
204
|
+
"feature-value-block": "<feature-type> '{' <feature-value-declaration-list> '}'",
|
|
205
|
+
"feature-value-block-list": "<feature-value-block>+",
|
|
206
|
+
"feature-value-declaration": "<custom-ident> : <integer>+ ;",
|
|
207
|
+
"feature-value-declaration-list": "<feature-value-declaration>",
|
|
208
|
+
"feature-value-name": "<custom-ident>",
|
|
209
|
+
"filter-function": "<blur()>|<brightness()>|<contrast()>|<drop-shadow()>|<grayscale()>|<hue-rotate()>|<invert()>|<opacity()>|<saturate()>|<sepia()>",
|
|
210
|
+
"filter-value-list": "[<filter-function>|<url>]+",
|
|
211
|
+
"final-bg-layer": "<'background-color'>||<bg-image>||<bg-position> [/ <bg-size>]?||<repeat-style>||<attachment>||<visual-box>||<visual-box>",
|
|
212
|
+
"fit-content()": "fit-content( <length-percentage [0,∞]> )",
|
|
213
|
+
"fixed-breadth": "<length-percentage>",
|
|
214
|
+
"fixed-repeat": "repeat( [<integer [1,∞]>] , [<line-names>? <fixed-size>]+ <line-names>? )",
|
|
215
|
+
"fixed-size": "<fixed-breadth>|minmax( <fixed-breadth> , <track-breadth> )|minmax( <inflexible-breadth> , <fixed-breadth> )",
|
|
216
|
+
"font-stretch-absolute": "normal|ultra-condensed|extra-condensed|condensed|semi-condensed|semi-expanded|expanded|extra-expanded|ultra-expanded|<percentage>",
|
|
217
|
+
"font-variant-css21": "[normal|small-caps]",
|
|
218
|
+
"font-weight-absolute": "normal|bold|<number [1,1000]>",
|
|
219
|
+
"frequency-percentage": "<frequency>|<percentage>",
|
|
220
|
+
"general-enclosed": "[<function-token> <any-value>? )]|[( <any-value>? )]",
|
|
221
|
+
"generic-family": "<generic-script-specific>|<generic-complete>|<generic-incomplete>|<-non-standard-generic-family>",
|
|
222
|
+
"generic-name": "serif|sans-serif|cursive|fantasy|monospace",
|
|
223
|
+
"geometry-box": "<shape-box>|fill-box|stroke-box|view-box",
|
|
224
|
+
"gradient": "<linear-gradient()>|<repeating-linear-gradient()>|<radial-gradient()>|<repeating-radial-gradient()>|<conic-gradient()>|<repeating-conic-gradient()>|<-legacy-gradient>",
|
|
225
|
+
"grayscale()": "grayscale( [<number>|<percentage>]? )",
|
|
226
|
+
"grid-line": "auto|<custom-ident>|[<integer>&&<custom-ident>?]|[span&&[<integer>||<custom-ident>]]",
|
|
227
|
+
"historical-lig-values": "[historical-ligatures|no-historical-ligatures]",
|
|
228
|
+
"hsl()": "hsl( <hue> , <percentage> , <percentage> , <alpha-value>? )|hsl( [<hue>|none] [<percentage>|<number>|none] [<percentage>|<number>|none] [/ [<alpha-value>|none]]? )",
|
|
229
|
+
"hsla()": "hsla( <hue> , <percentage> , <percentage> , <alpha-value>? )|hsla( [<hue>|none] [<percentage>|<number>|none] [<percentage>|<number>|none] [/ [<alpha-value>|none]]? )",
|
|
230
|
+
"hue": "<number>|<angle>",
|
|
231
|
+
"hue-interpolation-method": "[shorter|longer|increasing|decreasing] hue",
|
|
232
|
+
"hue-rotate()": "hue-rotate( [<angle>|<zero>]? )",
|
|
233
|
+
"hwb()": "hwb( [<hue>|none] [<percentage>|<number>|none] [<percentage>|<number>|none] [/ [<alpha-value>|none]]? )",
|
|
234
|
+
"hypot()": "hypot( <calc-sum># )",
|
|
235
|
+
"image": "<url>|<image()>|<image-set()>|<element()>|<paint()>|<cross-fade()>|<gradient>",
|
|
236
|
+
"image()": "image( <image-tags>? [<image-src>? , <color>?]! )",
|
|
237
|
+
"image-set()": "image-set( <image-set-option># )",
|
|
238
|
+
"image-set-option": "[<image>|<string>] [<resolution>||type( <string> )]",
|
|
239
|
+
"image-src": "<url>|<string>",
|
|
240
|
+
"image-tags": "ltr|rtl",
|
|
241
|
+
"inflexible-breadth": "<length-percentage>|min-content|max-content|auto",
|
|
242
|
+
"inset()": "inset( <length-percentage>{1,4} [round <'border-radius'>]? )",
|
|
243
|
+
"invert()": "invert( [<number>|<percentage>]? )",
|
|
244
|
+
"keyframe-block": "<keyframe-selector># { <declaration-list> }",
|
|
245
|
+
"keyframe-block-list": "<keyframe-block>+",
|
|
246
|
+
"keyframe-selector": "from|to|<percentage>|<timeline-range-name> <percentage>",
|
|
247
|
+
"keyframes-name": "<custom-ident>|<string>",
|
|
248
|
+
"lab()": "lab( [<percentage>|<number>|none] [<percentage>|<number>|none] [<percentage>|<number>|none] [/ [<alpha-value>|none]]? )",
|
|
249
|
+
"layer()": "layer( <layer-name> )",
|
|
250
|
+
"layer-name": "<ident> ['.' <ident>]*",
|
|
251
|
+
"lch()": "lch( [<percentage>|<number>|none] [<percentage>|<number>|none] [<hue>|none] [/ [<alpha-value>|none]]? )",
|
|
252
|
+
"leader()": "leader( <leader-type> )",
|
|
253
|
+
"leader-type": "dotted|solid|space|<string>",
|
|
254
|
+
"length-percentage": "<length>|<percentage>",
|
|
255
|
+
"light-dark()": "light-dark( <color> , <color> )",
|
|
256
|
+
"line-name-list": "[<line-names>|<name-repeat>]+",
|
|
257
|
+
"line-names": "'[' <custom-ident>* ']'",
|
|
258
|
+
"line-style": "none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset",
|
|
259
|
+
"line-width": "<length>|thin|medium|thick",
|
|
260
|
+
"linear-color-hint": "<length-percentage>",
|
|
261
|
+
"linear-color-stop": "<color> <color-stop-length>?",
|
|
262
|
+
"linear-gradient()": "linear-gradient( [[<angle>|to <side-or-corner>]||<color-interpolation-method>]? , <color-stop-list> )",
|
|
263
|
+
"log()": "log( <calc-sum> , <calc-sum>? )",
|
|
264
|
+
"mask-layer": "<mask-reference>||<position> [/ <bg-size>]?||<repeat-style>||<geometry-box>||[<geometry-box>|no-clip]||<compositing-operator>||<masking-mode>",
|
|
265
|
+
"mask-position": "[<length-percentage>|left|center|right] [<length-percentage>|top|center|bottom]?",
|
|
266
|
+
"mask-reference": "none|<image>|<mask-source>",
|
|
267
|
+
"mask-source": "<url>",
|
|
268
|
+
"masking-mode": "alpha|luminance|match-source",
|
|
269
|
+
"matrix()": "matrix( <number>#{6} )",
|
|
270
|
+
"matrix3d()": "matrix3d( <number>#{16} )",
|
|
271
|
+
"max()": "max( <calc-sum># )",
|
|
272
|
+
"media-and": "<media-in-parens> [and <media-in-parens>]+",
|
|
273
|
+
"media-condition": "<media-not>|<media-and>|<media-or>|<media-in-parens>",
|
|
274
|
+
"media-condition-without-or": "<media-not>|<media-and>|<media-in-parens>",
|
|
275
|
+
"media-feature": "( [<mf-plain>|<mf-boolean>|<mf-range>] )",
|
|
276
|
+
"media-in-parens": "( <media-condition> )|<media-feature>|<general-enclosed>",
|
|
277
|
+
"media-not": "not <media-in-parens>",
|
|
278
|
+
"media-or": "<media-in-parens> [or <media-in-parens>]+",
|
|
279
|
+
"media-query": "<media-condition>|[not|only]? <media-type> [and <media-condition-without-or>]?",
|
|
280
|
+
"media-query-list": "<media-query>#",
|
|
281
|
+
"media-type": "<ident>",
|
|
282
|
+
"mf-boolean": "<mf-name>",
|
|
283
|
+
"mf-name": "<ident>",
|
|
284
|
+
"mf-plain": "<mf-name> : <mf-value>",
|
|
285
|
+
"mf-range": "<mf-name> ['<'|'>']? '='? <mf-value>|<mf-value> ['<'|'>']? '='? <mf-name>|<mf-value> '<' '='? <mf-name> '<' '='? <mf-value>|<mf-value> '>' '='? <mf-name> '>' '='? <mf-value>",
|
|
286
|
+
"mf-value": "<number>|<dimension>|<ident>|<ratio>",
|
|
287
|
+
"min()": "min( <calc-sum># )",
|
|
288
|
+
"minmax()": "minmax( [<length-percentage>|min-content|max-content|auto] , [<length-percentage>|<flex>|min-content|max-content|auto] )",
|
|
289
|
+
"mod()": "mod( <calc-sum> , <calc-sum> )",
|
|
290
|
+
"n-dimension": "<dimension-token>",
|
|
291
|
+
"ndash-dimension": "<dimension-token>",
|
|
292
|
+
"ndashdigit-dimension": "<dimension-token>",
|
|
293
|
+
"ndashdigit-ident": "<ident-token>",
|
|
294
|
+
"name-repeat": "repeat( [<integer [1,∞]>|auto-fill] , <line-names>+ )",
|
|
295
|
+
"named-color": "aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen",
|
|
296
|
+
"namespace-prefix": "<ident>",
|
|
297
|
+
"ns-prefix": "[<ident-token>|'*']? '|'",
|
|
298
|
+
"number-percentage": "<number>|<percentage>",
|
|
299
|
+
"numeric-figure-values": "[lining-nums|oldstyle-nums]",
|
|
300
|
+
"numeric-fraction-values": "[diagonal-fractions|stacked-fractions]",
|
|
301
|
+
"numeric-spacing-values": "[proportional-nums|tabular-nums]",
|
|
302
|
+
"offset-path": "<ray()>|<url>|<basic-shape>",
|
|
303
|
+
"oklab()": "oklab( [<percentage>|<number>|none] [<percentage>|<number>|none] [<percentage>|<number>|none] [/ [<alpha-value>|none]]? )",
|
|
304
|
+
"oklch()": "oklch( [<percentage>|<number>|none] [<percentage>|<number>|none] [<hue>|none] [/ [<alpha-value>|none]]? )",
|
|
305
|
+
"opacity()": "opacity( [<number>|<percentage>]? )",
|
|
306
|
+
"opacity-value": "<number>|<percentage>",
|
|
307
|
+
"outline-line-style": "none|dotted|dashed|solid|double|groove|ridge|inset|outset",
|
|
308
|
+
"outline-radius": "<length>|<percentage>",
|
|
309
|
+
"overflow-position": "unsafe|safe",
|
|
310
|
+
"page-body": "<declaration>? [; <page-body>]?|<page-margin-box> <page-body>",
|
|
311
|
+
"page-margin-box": "<page-margin-box-type> '{' <declaration-list> '}'",
|
|
312
|
+
"page-margin-box-type": "@top-left-corner|@top-left|@top-center|@top-right|@top-right-corner|@bottom-left-corner|@bottom-left|@bottom-center|@bottom-right|@bottom-right-corner|@left-top|@left-middle|@left-bottom|@right-top|@right-middle|@right-bottom",
|
|
313
|
+
"page-selector": "<pseudo-page>+|<ident> <pseudo-page>*",
|
|
314
|
+
"page-selector-list": "[<page-selector>#]?",
|
|
315
|
+
"page-size": "A5|A4|A3|B5|B4|JIS-B5|JIS-B4|letter|legal|ledger",
|
|
316
|
+
"paint": "none|<color>|<url> [none|<color>]?|context-fill|context-stroke",
|
|
317
|
+
"paint()": "paint( <ident> , <declaration-value>? )",
|
|
318
|
+
"paint-box": "<visual-box>|fill-box|stroke-box",
|
|
319
|
+
"palette-identifier": "<dashed-ident>",
|
|
320
|
+
"palette-mix()": "palette-mix( <color-interpolation-method> , [[normal|light|dark|<palette-identifier>|<palette-mix()>]&&<percentage [0,100]>?]#{2} )",
|
|
321
|
+
"path()": "path( <'fill-rule'>? , <string> )",
|
|
322
|
+
"perspective()": "perspective( [<length [0,∞]>|none] )",
|
|
323
|
+
"polar-color-space": "hsl|hwb|lch|oklch",
|
|
324
|
+
"polygon()": "polygon( <'fill-rule'>? , [<length-percentage> <length-percentage>]# )",
|
|
325
|
+
"position": "[[left|center|right]||[top|center|bottom]|[left|center|right|<length-percentage>] [top|center|bottom|<length-percentage>]?|[[left|right] <length-percentage>]&&[[top|bottom] <length-percentage>]]",
|
|
326
|
+
"position-area": "[[left|center|right|span-left|span-right|x-start|x-end|span-x-start|span-x-end|x-self-start|x-self-end|span-x-self-start|span-x-self-end|span-all]||[top|center|bottom|span-top|span-bottom|y-start|y-end|span-y-start|span-y-end|y-self-start|y-self-end|span-y-self-start|span-y-self-end|span-all]|[block-start|center|block-end|span-block-start|span-block-end|span-all]||[inline-start|center|inline-end|span-inline-start|span-inline-end|span-all]|[self-block-start|center|self-block-end|span-self-block-start|span-self-block-end|span-all]||[self-inline-start|center|self-inline-end|span-self-inline-start|span-self-inline-end|span-all]|[start|center|end|span-start|span-end|span-all]{1,2}|[self-start|center|self-end|span-self-start|span-self-end|span-all]{1,2}]",
|
|
327
|
+
"pow()": "pow( <calc-sum> , <calc-sum> )",
|
|
328
|
+
"predefined-rgb": "srgb|srgb-linear|display-p3|a98-rgb|prophoto-rgb|rec2020",
|
|
329
|
+
"predefined-rgb-params": "<predefined-rgb> [<number>|<percentage>|none]{3}",
|
|
330
|
+
"pseudo-class-selector": "':' <ident-token>|':' <function-token> <any-value> ')'",
|
|
331
|
+
"pseudo-element-selector": "':' <pseudo-class-selector>|<legacy-pseudo-element-selector>",
|
|
332
|
+
"pseudo-page": ": [left|right|first|blank]",
|
|
333
|
+
"quote": "open-quote|close-quote|no-open-quote|no-close-quote",
|
|
334
|
+
"radial-extent": "closest-corner|closest-side|farthest-corner|farthest-side",
|
|
335
|
+
"radial-gradient()": "radial-gradient( [<ending-shape>||<size>]? [at <position>]? , <color-stop-list> )",
|
|
336
|
+
"radial-size": "<radial-extent>|<length [0,∞]>|<length-percentage [0,∞]>{2}",
|
|
337
|
+
"ratio": "<number [0,∞]> [/ <number [0,∞]>]?",
|
|
338
|
+
"ray()": "ray( <angle>&&<ray-size>?&&contain?&&[at <position>]? )",
|
|
339
|
+
"ray-size": "closest-side|closest-corner|farthest-side|farthest-corner|sides",
|
|
340
|
+
"rectangular-color-space": "srgb|srgb-linear|display-p3|a98-rgb|prophoto-rgb|rec2020|lab|oklab|xyz|xyz-d50|xyz-d65",
|
|
341
|
+
"relative-selector": "<combinator>? <complex-selector>",
|
|
342
|
+
"relative-selector-list": "<relative-selector>#",
|
|
343
|
+
"relative-size": "larger|smaller",
|
|
344
|
+
"rect()": "rect( [<length-percentage>|auto]{4} [round <'border-radius'>]? )",
|
|
345
|
+
"rem()": "rem( <calc-sum> , <calc-sum> )",
|
|
346
|
+
"repeat-style": "repeat-x|repeat-y|[repeat|space|round|no-repeat]{1,2}",
|
|
347
|
+
"repeating-conic-gradient()": "repeating-conic-gradient( [from <angle>]? [at <position>]? , <angular-color-stop-list> )",
|
|
348
|
+
"repeating-linear-gradient()": "repeating-linear-gradient( [<angle>|to <side-or-corner>]? , <color-stop-list> )",
|
|
349
|
+
"repeating-radial-gradient()": "repeating-radial-gradient( [<ending-shape>||<size>]? [at <position>]? , <color-stop-list> )",
|
|
350
|
+
"reversed-counter-name": "reversed( <counter-name> )",
|
|
351
|
+
"rgb()": "rgb( <percentage>#{3} , <alpha-value>? )|rgb( <number>#{3} , <alpha-value>? )|rgb( [<number>|<percentage>|none]{3} [/ [<alpha-value>|none]]? )",
|
|
352
|
+
"rgba()": "rgba( <percentage>#{3} , <alpha-value>? )|rgba( <number>#{3} , <alpha-value>? )|rgba( [<number>|<percentage>|none]{3} [/ [<alpha-value>|none]]? )",
|
|
353
|
+
"rotate()": "rotate( [<angle>|<zero>] )",
|
|
354
|
+
"rotate3d()": "rotate3d( <number> , <number> , <number> , [<angle>|<zero>] )",
|
|
355
|
+
"rotateX()": "rotateX( [<angle>|<zero>] )",
|
|
356
|
+
"rotateY()": "rotateY( [<angle>|<zero>] )",
|
|
357
|
+
"rotateZ()": "rotateZ( [<angle>|<zero>] )",
|
|
358
|
+
"round()": "round( <rounding-strategy>? , <calc-sum> , <calc-sum> )",
|
|
359
|
+
"rounding-strategy": "nearest|up|down|to-zero",
|
|
360
|
+
"saturate()": "saturate( [<number>|<percentage>]? )",
|
|
361
|
+
"scale()": "scale( [<number>|<percentage>]#{1,2} )",
|
|
362
|
+
"scale3d()": "scale3d( [<number>|<percentage>]#{3} )",
|
|
363
|
+
"scaleX()": "scaleX( [<number>|<percentage>] )",
|
|
364
|
+
"scaleY()": "scaleY( [<number>|<percentage>] )",
|
|
365
|
+
"scaleZ()": "scaleZ( [<number>|<percentage>] )",
|
|
366
|
+
"scope-end": "<forgiving-selector-list>",
|
|
367
|
+
"scope-start": "<forgiving-selector-list>",
|
|
368
|
+
"scroll()": "scroll( [<scroller>||<axis>]? )",
|
|
369
|
+
"scroller": "root|nearest|self",
|
|
370
|
+
"selector-list": "<complex-selector-list>",
|
|
371
|
+
"self-position": "center|start|end|self-start|self-end|flex-start|flex-end",
|
|
372
|
+
"sepia()": "sepia( [<number>|<percentage>]? )",
|
|
373
|
+
"shadow": "inset?&&<length>{2,4}&&<color>?",
|
|
374
|
+
"shadow-t": "[<length>{2,3}&&<color>?]",
|
|
375
|
+
"shape": "rect( <top> , <right> , <bottom> , <left> )|rect( <top> <right> <bottom> <left> )",
|
|
376
|
+
"shape-box": "<visual-box>|margin-box",
|
|
377
|
+
"side-or-corner": "[left|right]||[top|bottom]",
|
|
378
|
+
"sign()": "sign( <calc-sum> )",
|
|
379
|
+
"signed-integer": "<number-token>",
|
|
380
|
+
"signless-integer": "<number-token>",
|
|
381
|
+
"sin()": "sin( <calc-sum> )",
|
|
382
|
+
"single-animation": "<'animation-duration'>||<easing-function>||<'animation-delay'>||<single-animation-iteration-count>||<single-animation-direction>||<single-animation-fill-mode>||<single-animation-play-state>||[none|<keyframes-name>]||<single-animation-timeline>",
|
|
383
|
+
"single-animation-composition": "replace|add|accumulate",
|
|
384
|
+
"single-animation-direction": "normal|reverse|alternate|alternate-reverse",
|
|
385
|
+
"single-animation-fill-mode": "none|forwards|backwards|both",
|
|
386
|
+
"single-animation-iteration-count": "infinite|<number>",
|
|
387
|
+
"single-animation-play-state": "running|paused",
|
|
388
|
+
"single-animation-timeline": "auto|none|<dashed-ident>|<scroll()>|<view()>",
|
|
389
|
+
"single-transition": "[none|<single-transition-property>]||<time>||<easing-function>||<time>||<transition-behavior-value>",
|
|
390
|
+
"single-transition-property": "all|<custom-ident>",
|
|
391
|
+
"size": "closest-side|farthest-side|closest-corner|farthest-corner|<length>|<length-percentage>{2}",
|
|
392
|
+
"skew()": "skew( [<angle>|<zero>] , [<angle>|<zero>]? )",
|
|
393
|
+
"skewX()": "skewX( [<angle>|<zero>] )",
|
|
394
|
+
"skewY()": "skewY( [<angle>|<zero>] )",
|
|
395
|
+
"sqrt()": "sqrt( <calc-sum> )",
|
|
396
|
+
"step-position": "jump-start|jump-end|jump-none|jump-both|start|end",
|
|
397
|
+
"step-timing-function": "step-start|step-end|steps( <integer> [, <step-position>]? )",
|
|
398
|
+
"subclass-selector": "<id-selector>|<class-selector>|<attribute-selector>|<pseudo-class-selector>",
|
|
399
|
+
"supports-condition": "not <supports-in-parens>|<supports-in-parens> [and <supports-in-parens>]*|<supports-in-parens> [or <supports-in-parens>]*",
|
|
400
|
+
"supports-decl": "( <declaration> )",
|
|
401
|
+
"supports-feature": "<supports-decl>|<supports-selector-fn>",
|
|
402
|
+
"supports-in-parens": "( <supports-condition> )|<supports-feature>|<general-enclosed>",
|
|
403
|
+
"supports-selector-fn": "selector( <complex-selector> )",
|
|
404
|
+
"symbol": "<string>|<image>|<custom-ident>",
|
|
405
|
+
"symbols()": "symbols( <symbols-type>? [<string>|<image>]+ )",
|
|
406
|
+
"symbols-type": "cyclic|numeric|alphabetic|symbolic|fixed",
|
|
407
|
+
"system-color": "AccentColor|AccentColorText|ActiveText|ButtonBorder|ButtonFace|ButtonText|Canvas|CanvasText|Field|FieldText|GrayText|Highlight|HighlightText|LinkText|Mark|MarkText|SelectedItem|SelectedItemText|VisitedText",
|
|
408
|
+
"tan()": "tan( <calc-sum> )",
|
|
409
|
+
"target": "<target-counter()>|<target-counters()>|<target-text()>",
|
|
410
|
+
"target-counter()": "target-counter( [<string>|<url>] , <custom-ident> , <counter-style>? )",
|
|
411
|
+
"target-counters()": "target-counters( [<string>|<url>] , <custom-ident> , <string> , <counter-style>? )",
|
|
412
|
+
"target-text()": "target-text( [<string>|<url>] , [content|before|after|first-letter]? )",
|
|
413
|
+
"text-edge": "[text|cap|ex|ideographic|ideographic-ink] [text|alphabetic|ideographic|ideographic-ink]?",
|
|
414
|
+
"time-percentage": "<time>|<percentage>",
|
|
415
|
+
"timeline-range-name": "cover|contain|entry|exit|entry-crossing|exit-crossing",
|
|
416
|
+
"track-breadth": "<length-percentage>|<flex>|min-content|max-content|auto",
|
|
417
|
+
"track-list": "[<line-names>? [<track-size>|<track-repeat>]]+ <line-names>?",
|
|
418
|
+
"track-repeat": "repeat( [<integer [1,∞]>] , [<line-names>? <track-size>]+ <line-names>? )",
|
|
419
|
+
"track-size": "<track-breadth>|minmax( <inflexible-breadth> , <track-breadth> )|fit-content( <length-percentage> )",
|
|
420
|
+
"transform-function": "<matrix()>|<translate()>|<translateX()>|<translateY()>|<scale()>|<scaleX()>|<scaleY()>|<rotate()>|<skew()>|<skewX()>|<skewY()>|<matrix3d()>|<translate3d()>|<translateZ()>|<scale3d()>|<scaleZ()>|<rotate3d()>|<rotateX()>|<rotateY()>|<rotateZ()>|<perspective()>",
|
|
421
|
+
"transform-list": "<transform-function>+",
|
|
422
|
+
"transition-behavior-value": "normal|allow-discrete",
|
|
423
|
+
"translate()": "translate( <length-percentage> , <length-percentage>? )",
|
|
424
|
+
"translate3d()": "translate3d( <length-percentage> , <length-percentage> , <length> )",
|
|
425
|
+
"translateX()": "translateX( <length-percentage> )",
|
|
426
|
+
"translateY()": "translateY( <length-percentage> )",
|
|
427
|
+
"translateZ()": "translateZ( <length> )",
|
|
428
|
+
"try-size": "most-width|most-height|most-block-size|most-inline-size",
|
|
429
|
+
"try-tactic": "flip-block||flip-inline||flip-start",
|
|
430
|
+
"type-or-unit": "string|color|url|integer|number|length|angle|time|frequency|cap|ch|em|ex|ic|lh|rlh|rem|vb|vi|vw|vh|vmin|vmax|mm|Q|cm|in|pt|pc|px|deg|grad|rad|turn|ms|s|Hz|kHz|%",
|
|
431
|
+
"type-selector": "<wq-name>|<ns-prefix>? '*'",
|
|
432
|
+
"var()": "var( <custom-property-name> , <declaration-value>? )",
|
|
433
|
+
"view()": "view( [<axis>||<'view-timeline-inset'>]? )",
|
|
434
|
+
"viewport-length": "auto|<length-percentage>",
|
|
435
|
+
"visual-box": "content-box|padding-box|border-box",
|
|
436
|
+
"wq-name": "<ns-prefix>? <ident-token>",
|
|
437
|
+
"xywh()": "xywh( <length-percentage>{2} <length-percentage [0,∞]>{2} [round <'border-radius'>]? )",
|
|
438
|
+
"xyz": "xyz|xyz-d50|xyz-d65",
|
|
439
|
+
"xyz-params": "<xyz-space> [<number>|<percentage>|none]{3}",
|
|
440
|
+
"-legacy-gradient": "<-webkit-gradient()>|<-legacy-linear-gradient>|<-legacy-repeating-linear-gradient>|<-legacy-radial-gradient>|<-legacy-repeating-radial-gradient>",
|
|
441
|
+
"-legacy-linear-gradient": "-moz-linear-gradient( <-legacy-linear-gradient-arguments> )|-webkit-linear-gradient( <-legacy-linear-gradient-arguments> )|-o-linear-gradient( <-legacy-linear-gradient-arguments> )",
|
|
442
|
+
"-legacy-repeating-linear-gradient": "-moz-repeating-linear-gradient( <-legacy-linear-gradient-arguments> )|-webkit-repeating-linear-gradient( <-legacy-linear-gradient-arguments> )|-o-repeating-linear-gradient( <-legacy-linear-gradient-arguments> )",
|
|
443
|
+
"-legacy-linear-gradient-arguments": "[<angle>|<side-or-corner>]? , <color-stop-list>",
|
|
444
|
+
"-legacy-radial-gradient": "-moz-radial-gradient( <-legacy-radial-gradient-arguments> )|-webkit-radial-gradient( <-legacy-radial-gradient-arguments> )|-o-radial-gradient( <-legacy-radial-gradient-arguments> )",
|
|
445
|
+
"-legacy-repeating-radial-gradient": "-moz-repeating-radial-gradient( <-legacy-radial-gradient-arguments> )|-webkit-repeating-radial-gradient( <-legacy-radial-gradient-arguments> )|-o-repeating-radial-gradient( <-legacy-radial-gradient-arguments> )",
|
|
446
|
+
"-legacy-radial-gradient-arguments": "[<position> ,]? [[[<-legacy-radial-gradient-shape>||<-legacy-radial-gradient-size>]|[<length>|<percentage>]{2}] ,]? <color-stop-list>",
|
|
447
|
+
"-legacy-radial-gradient-size": "closest-side|closest-corner|farthest-side|farthest-corner|contain|cover",
|
|
448
|
+
"-legacy-radial-gradient-shape": "circle|ellipse",
|
|
449
|
+
"-non-standard-font": "-apple-system-body|-apple-system-headline|-apple-system-subheadline|-apple-system-caption1|-apple-system-caption2|-apple-system-footnote|-apple-system-short-body|-apple-system-short-headline|-apple-system-short-subheadline|-apple-system-short-caption1|-apple-system-short-footnote|-apple-system-tall-body",
|
|
450
|
+
"-non-standard-color": "-moz-ButtonDefault|-moz-ButtonHoverFace|-moz-ButtonHoverText|-moz-CellHighlight|-moz-CellHighlightText|-moz-Combobox|-moz-ComboboxText|-moz-Dialog|-moz-DialogText|-moz-dragtargetzone|-moz-EvenTreeRow|-moz-Field|-moz-FieldText|-moz-html-CellHighlight|-moz-html-CellHighlightText|-moz-mac-accentdarkestshadow|-moz-mac-accentdarkshadow|-moz-mac-accentface|-moz-mac-accentlightesthighlight|-moz-mac-accentlightshadow|-moz-mac-accentregularhighlight|-moz-mac-accentregularshadow|-moz-mac-chrome-active|-moz-mac-chrome-inactive|-moz-mac-focusring|-moz-mac-menuselect|-moz-mac-menushadow|-moz-mac-menutextselect|-moz-MenuHover|-moz-MenuHoverText|-moz-MenuBarText|-moz-MenuBarHoverText|-moz-nativehyperlinktext|-moz-OddTreeRow|-moz-win-communicationstext|-moz-win-mediatext|-moz-activehyperlinktext|-moz-default-background-color|-moz-default-color|-moz-hyperlinktext|-moz-visitedhyperlinktext|-webkit-activelink|-webkit-focus-ring-color|-webkit-link|-webkit-text",
|
|
451
|
+
"-non-standard-image-rendering": "optimize-contrast|-moz-crisp-edges|-o-crisp-edges|-webkit-optimize-contrast",
|
|
452
|
+
"-non-standard-overflow": "overlay|-moz-scrollbars-none|-moz-scrollbars-horizontal|-moz-scrollbars-vertical|-moz-hidden-unscrollable",
|
|
453
|
+
"-non-standard-size": "intrinsic|min-intrinsic|-webkit-fill-available|-webkit-fit-content|-webkit-min-content|-webkit-max-content|-moz-available|-moz-fit-content|-moz-min-content|-moz-max-content",
|
|
454
|
+
"-webkit-gradient()": "-webkit-gradient( <-webkit-gradient-type> , <-webkit-gradient-point> [, <-webkit-gradient-point>|, <-webkit-gradient-radius> , <-webkit-gradient-point>] [, <-webkit-gradient-radius>]? [, <-webkit-gradient-color-stop>]* )",
|
|
455
|
+
"-webkit-gradient-color-stop": "from( <color> )|color-stop( [<number-zero-one>|<percentage>] , <color> )|to( <color> )",
|
|
456
|
+
"-webkit-gradient-point": "[left|center|right|<length-percentage>] [top|center|bottom|<length-percentage>]",
|
|
457
|
+
"-webkit-gradient-radius": "<length>|<percentage>",
|
|
458
|
+
"-webkit-gradient-type": "linear|radial",
|
|
459
|
+
"-webkit-mask-box-repeat": "repeat|stretch|round",
|
|
460
|
+
"-ms-filter-function-list": "<-ms-filter-function>+",
|
|
461
|
+
"-ms-filter-function": "<-ms-filter-function-progid>|<-ms-filter-function-legacy>",
|
|
462
|
+
"-ms-filter-function-progid": "'progid:' [<ident-token> '.']* [<ident-token>|<function-token> <any-value>? )]",
|
|
463
|
+
"-ms-filter-function-legacy": "<ident-token>|<function-token> <any-value>? )",
|
|
464
|
+
"absolute-color-base": "<hex-color>|<absolute-color-function>|<named-color>|transparent",
|
|
465
|
+
"absolute-color-function": "<rgb()>|<rgba()>|<hsl()>|<hsla()>|<hwb()>|<lab()>|<lch()>|<oklab()>|<oklch()>|<color()>",
|
|
466
|
+
"age": "child|young|old",
|
|
467
|
+
"attr-name": "<wq-name>",
|
|
468
|
+
"attr-fallback": "<any-value>",
|
|
469
|
+
"bottom": "<length>|auto",
|
|
470
|
+
"container-name": "<custom-ident>",
|
|
471
|
+
"container-condition": "not <query-in-parens>|<query-in-parens> [[and <query-in-parens>]*|[or <query-in-parens>]*]",
|
|
472
|
+
"generic-voice": "[<age>? <gender> <integer>?]",
|
|
473
|
+
"gender": "male|female|neutral",
|
|
474
|
+
"generic-script-specific": "generic( kai )|generic( fangsong )|generic( nastaliq )",
|
|
475
|
+
"generic-complete": "serif|sans-serif|system-ui|cursive|fantasy|math|monospace",
|
|
476
|
+
"generic-incomplete": "ui-serif|ui-sans-serif|ui-monospace|ui-rounded",
|
|
477
|
+
"-non-standard-generic-family": "-apple-system|BlinkMacSystemFont",
|
|
478
|
+
"intrinsic-size-keyword": "min-content|max-content|fit-content",
|
|
479
|
+
"left": "<length>|auto",
|
|
480
|
+
"device-cmyk()": "<legacy-device-cmyk-syntax>|<modern-device-cmyk-syntax>",
|
|
481
|
+
"legacy-device-cmyk-syntax": "device-cmyk( <number>#{4} )",
|
|
482
|
+
"modern-device-cmyk-syntax": "device-cmyk( <cmyk-component>{4} [/ [<alpha-value>|none]]? )",
|
|
483
|
+
"cmyk-component": "<number>|<percentage>|none",
|
|
484
|
+
"color-space": "<rectangular-color-space>|<polar-color-space>|<custom-color-space>",
|
|
485
|
+
"right": "<length>|auto",
|
|
486
|
+
"forgiving-selector-list": "<complex-real-selector-list>",
|
|
487
|
+
"forgiving-relative-selector-list": "<relative-real-selector-list>",
|
|
488
|
+
"complex-real-selector-list": "<complex-real-selector>#",
|
|
489
|
+
"simple-selector-list": "<simple-selector>#",
|
|
490
|
+
"relative-real-selector-list": "<relative-real-selector>#",
|
|
491
|
+
"complex-selector-unit": "[<compound-selector>? <pseudo-compound-selector>*]!",
|
|
492
|
+
"complex-real-selector": "<compound-selector> [<combinator>? <compound-selector>]*",
|
|
493
|
+
"relative-real-selector": "<combinator>? <complex-real-selector>",
|
|
494
|
+
"pseudo-compound-selector": "<pseudo-element-selector> <pseudo-class-selector>*",
|
|
495
|
+
"simple-selector": "<type-selector>|<subclass-selector>",
|
|
496
|
+
"legacy-pseudo-element-selector": "':' [before|after|first-line|first-letter]",
|
|
497
|
+
"svg-length": "<percentage>|<length>|<number>",
|
|
498
|
+
"svg-writing-mode": "lr-tb|rl-tb|tb-rl|lr|rl|tb",
|
|
499
|
+
"top": "<length>|auto",
|
|
500
|
+
"x": "<number>",
|
|
501
|
+
"y": "<number>",
|
|
502
|
+
"declaration": "<ident-token> : <declaration-value>? ['!' important]?",
|
|
503
|
+
"declaration-list": "[<declaration>? ';']* <declaration>?",
|
|
504
|
+
"url": "url( <string> <url-modifier>* )|<url-token>",
|
|
505
|
+
"url-modifier": "<ident>|<function-token> <any-value> )",
|
|
506
|
+
"number-zero-one": "<number [0,1]>",
|
|
507
|
+
"number-one-or-greater": "<number [1,∞]>",
|
|
508
|
+
"xyz-space": "xyz|xyz-d50|xyz-d65",
|
|
509
|
+
"query-in-parens": "( <container-condition> )|( <size-feature> )|style( <style-query> )|<general-enclosed>",
|
|
510
|
+
"size-feature": "<mf-plain>|<mf-boolean>|<mf-range>",
|
|
511
|
+
"style-feature": "<declaration>",
|
|
512
|
+
"style-query": "<style-condition>|<style-feature>",
|
|
513
|
+
"style-condition": "not <style-in-parens>|<style-in-parens> [[and <style-in-parens>]*|[or <style-in-parens>]*]",
|
|
514
|
+
"style-in-parens": "( <style-condition> )|( <style-feature> )|<general-enclosed>",
|
|
515
|
+
"-non-standard-display": "-ms-inline-flexbox|-ms-grid|-ms-inline-grid|-webkit-flex|-webkit-inline-flex|-webkit-box|-webkit-inline-box|-moz-inline-stack|-moz-box|-moz-inline-box",
|
|
516
|
+
"inset-area": "[[left|center|right|span-left|span-right|x-start|x-end|span-x-start|span-x-end|x-self-start|x-self-end|span-x-self-start|span-x-self-end|span-all]||[top|center|bottom|span-top|span-bottom|y-start|y-end|span-y-start|span-y-end|y-self-start|y-self-end|span-y-self-start|span-y-self-end|span-all]|[block-start|center|block-end|span-block-start|span-block-end|span-all]||[inline-start|center|inline-end|span-inline-start|span-inline-end|span-all]|[self-block-start|self-block-end|span-self-block-start|span-self-block-end|span-all]||[self-inline-start|self-inline-end|span-self-inline-start|span-self-inline-end|span-all]|[start|center|end|span-start|span-end|span-all]{1,2}|[self-start|center|self-end|span-self-start|span-self-end|span-all]{1,2}]",
|
|
517
|
+
"anchor-element": "<dashed-ident>",
|
|
518
|
+
"font-variant-css2": "normal|small-caps",
|
|
519
|
+
"font-width-css3": "normal|ultra-condensed|extra-condensed|condensed|semi-condensed|semi-expanded|expanded|extra-expanded|ultra-expanded",
|
|
520
|
+
"system-family-name": "caption|icon|menu|message-box|small-caption|status-bar"
|
|
521
|
+
},
|
|
522
|
+
"properties": {
|
|
523
|
+
"--*": "<declaration-value>",
|
|
524
|
+
"-ms-accelerator": "false|true",
|
|
525
|
+
"-ms-block-progression": "tb|rl|bt|lr",
|
|
526
|
+
"-ms-content-zoom-chaining": "none|chained",
|
|
527
|
+
"-ms-content-zoom-limit": "<'-ms-content-zoom-limit-min'> <'-ms-content-zoom-limit-max'>",
|
|
528
|
+
"-ms-content-zoom-limit-max": "<percentage>",
|
|
529
|
+
"-ms-content-zoom-limit-min": "<percentage>",
|
|
530
|
+
"-ms-content-zoom-snap": "<'-ms-content-zoom-snap-type'>||<'-ms-content-zoom-snap-points'>",
|
|
531
|
+
"-ms-content-zoom-snap-points": "snapInterval( <percentage> , <percentage> )|snapList( <percentage># )",
|
|
532
|
+
"-ms-content-zoom-snap-type": "none|proximity|mandatory",
|
|
533
|
+
"-ms-content-zooming": "none|zoom",
|
|
534
|
+
"-ms-filter": "<string>",
|
|
535
|
+
"-ms-flow-from": "[none|<custom-ident>]#",
|
|
536
|
+
"-ms-flow-into": "[none|<custom-ident>]#",
|
|
537
|
+
"-ms-grid-columns": "none|<track-list>|<auto-track-list>",
|
|
538
|
+
"-ms-grid-rows": "none|<track-list>|<auto-track-list>",
|
|
539
|
+
"-ms-high-contrast-adjust": "auto|none",
|
|
540
|
+
"-ms-hyphenate-limit-chars": "auto|<integer>{1,3}",
|
|
541
|
+
"-ms-hyphenate-limit-lines": "no-limit|<integer>",
|
|
542
|
+
"-ms-hyphenate-limit-zone": "<percentage>|<length>",
|
|
543
|
+
"-ms-ime-align": "auto|after",
|
|
544
|
+
"-ms-overflow-style": "auto|none|scrollbar|-ms-autohiding-scrollbar",
|
|
545
|
+
"-ms-scroll-chaining": "chained|none",
|
|
546
|
+
"-ms-scroll-limit": "<'-ms-scroll-limit-x-min'> <'-ms-scroll-limit-y-min'> <'-ms-scroll-limit-x-max'> <'-ms-scroll-limit-y-max'>",
|
|
547
|
+
"-ms-scroll-limit-x-max": "auto|<length>",
|
|
548
|
+
"-ms-scroll-limit-x-min": "<length>",
|
|
549
|
+
"-ms-scroll-limit-y-max": "auto|<length>",
|
|
550
|
+
"-ms-scroll-limit-y-min": "<length>",
|
|
551
|
+
"-ms-scroll-rails": "none|railed",
|
|
552
|
+
"-ms-scroll-snap-points-x": "snapInterval( <length-percentage> , <length-percentage> )|snapList( <length-percentage># )",
|
|
553
|
+
"-ms-scroll-snap-points-y": "snapInterval( <length-percentage> , <length-percentage> )|snapList( <length-percentage># )",
|
|
554
|
+
"-ms-scroll-snap-type": "none|proximity|mandatory",
|
|
555
|
+
"-ms-scroll-snap-x": "<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-x'>",
|
|
556
|
+
"-ms-scroll-snap-y": "<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-y'>",
|
|
557
|
+
"-ms-scroll-translation": "none|vertical-to-horizontal",
|
|
558
|
+
"-ms-scrollbar-3dlight-color": "<color>",
|
|
559
|
+
"-ms-scrollbar-arrow-color": "<color>",
|
|
560
|
+
"-ms-scrollbar-base-color": "<color>",
|
|
561
|
+
"-ms-scrollbar-darkshadow-color": "<color>",
|
|
562
|
+
"-ms-scrollbar-face-color": "<color>",
|
|
563
|
+
"-ms-scrollbar-highlight-color": "<color>",
|
|
564
|
+
"-ms-scrollbar-shadow-color": "<color>",
|
|
565
|
+
"-ms-scrollbar-track-color": "<color>",
|
|
566
|
+
"-ms-text-autospace": "none|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space",
|
|
567
|
+
"-ms-touch-select": "grippers|none",
|
|
568
|
+
"-ms-user-select": "none|element|text",
|
|
569
|
+
"-ms-wrap-flow": "auto|both|start|end|maximum|clear",
|
|
570
|
+
"-ms-wrap-margin": "<length>",
|
|
571
|
+
"-ms-wrap-through": "wrap|none",
|
|
572
|
+
"-moz-appearance": "none|button|button-arrow-down|button-arrow-next|button-arrow-previous|button-arrow-up|button-bevel|button-focus|caret|checkbox|checkbox-container|checkbox-label|checkmenuitem|dualbutton|groupbox|listbox|listitem|menuarrow|menubar|menucheckbox|menuimage|menuitem|menuitemtext|menulist|menulist-button|menulist-text|menulist-textfield|menupopup|menuradio|menuseparator|meterbar|meterchunk|progressbar|progressbar-vertical|progresschunk|progresschunk-vertical|radio|radio-container|radio-label|radiomenuitem|range|range-thumb|resizer|resizerpanel|scale-horizontal|scalethumbend|scalethumb-horizontal|scalethumbstart|scalethumbtick|scalethumb-vertical|scale-vertical|scrollbarbutton-down|scrollbarbutton-left|scrollbarbutton-right|scrollbarbutton-up|scrollbarthumb-horizontal|scrollbarthumb-vertical|scrollbartrack-horizontal|scrollbartrack-vertical|searchfield|separator|sheet|spinner|spinner-downbutton|spinner-textfield|spinner-upbutton|splitter|statusbar|statusbarpanel|tab|tabpanel|tabpanels|tab-scroll-arrow-back|tab-scroll-arrow-forward|textfield|textfield-multiline|toolbar|toolbarbutton|toolbarbutton-dropdown|toolbargripper|toolbox|tooltip|treeheader|treeheadercell|treeheadersortarrow|treeitem|treeline|treetwisty|treetwistyopen|treeview|-moz-mac-unified-toolbar|-moz-win-borderless-glass|-moz-win-browsertabbar-toolbox|-moz-win-communicationstext|-moz-win-communications-toolbox|-moz-win-exclude-glass|-moz-win-glass|-moz-win-mediatext|-moz-win-media-toolbox|-moz-window-button-box|-moz-window-button-box-maximized|-moz-window-button-close|-moz-window-button-maximize|-moz-window-button-minimize|-moz-window-button-restore|-moz-window-frame-bottom|-moz-window-frame-left|-moz-window-frame-right|-moz-window-titlebar|-moz-window-titlebar-maximized",
|
|
573
|
+
"-moz-binding": "<url>|none",
|
|
574
|
+
"-moz-border-bottom-colors": "<color>+|none",
|
|
575
|
+
"-moz-border-left-colors": "<color>+|none",
|
|
576
|
+
"-moz-border-right-colors": "<color>+|none",
|
|
577
|
+
"-moz-border-top-colors": "<color>+|none",
|
|
578
|
+
"-moz-context-properties": "none|[fill|fill-opacity|stroke|stroke-opacity]#",
|
|
579
|
+
"-moz-float-edge": "border-box|content-box|margin-box|padding-box",
|
|
580
|
+
"-moz-force-broken-image-icon": "0|1",
|
|
581
|
+
"-moz-image-region": "<shape>|auto",
|
|
582
|
+
"-moz-orient": "inline|block|horizontal|vertical",
|
|
583
|
+
"-moz-outline-radius": "<outline-radius>{1,4} [/ <outline-radius>{1,4}]?",
|
|
584
|
+
"-moz-outline-radius-bottomleft": "<outline-radius>",
|
|
585
|
+
"-moz-outline-radius-bottomright": "<outline-radius>",
|
|
586
|
+
"-moz-outline-radius-topleft": "<outline-radius>",
|
|
587
|
+
"-moz-outline-radius-topright": "<outline-radius>",
|
|
588
|
+
"-moz-stack-sizing": "ignore|stretch-to-fit",
|
|
589
|
+
"-moz-text-blink": "none|blink",
|
|
590
|
+
"-moz-user-focus": "ignore|normal|select-after|select-before|select-menu|select-same|select-all|none",
|
|
591
|
+
"-moz-user-input": "auto|none|enabled|disabled",
|
|
592
|
+
"-moz-user-modify": "read-only|read-write|write-only",
|
|
593
|
+
"-moz-window-dragging": "drag|no-drag",
|
|
594
|
+
"-moz-window-shadow": "default|menu|tooltip|sheet|none",
|
|
595
|
+
"-webkit-appearance": "none|button|button-bevel|caps-lock-indicator|caret|checkbox|default-button|inner-spin-button|listbox|listitem|media-controls-background|media-controls-fullscreen-background|media-current-time-display|media-enter-fullscreen-button|media-exit-fullscreen-button|media-fullscreen-button|media-mute-button|media-overlay-play-button|media-play-button|media-seek-back-button|media-seek-forward-button|media-slider|media-sliderthumb|media-time-remaining-display|media-toggle-closed-captions-button|media-volume-slider|media-volume-slider-container|media-volume-sliderthumb|menulist|menulist-button|menulist-text|menulist-textfield|meter|progress-bar|progress-bar-value|push-button|radio|scrollbarbutton-down|scrollbarbutton-left|scrollbarbutton-right|scrollbarbutton-up|scrollbargripper-horizontal|scrollbargripper-vertical|scrollbarthumb-horizontal|scrollbarthumb-vertical|scrollbartrack-horizontal|scrollbartrack-vertical|searchfield|searchfield-cancel-button|searchfield-decoration|searchfield-results-button|searchfield-results-decoration|slider-horizontal|slider-vertical|sliderthumb-horizontal|sliderthumb-vertical|square-button|textarea|textfield|-apple-pay-button",
|
|
596
|
+
"-webkit-border-before": "<'border-width'>||<'border-style'>||<color>",
|
|
597
|
+
"-webkit-border-before-color": "<color>",
|
|
598
|
+
"-webkit-border-before-style": "<'border-style'>",
|
|
599
|
+
"-webkit-border-before-width": "<'border-width'>",
|
|
600
|
+
"-webkit-box-reflect": "[above|below|right|left]? <length>? <image>?",
|
|
601
|
+
"-webkit-line-clamp": "none|<integer>",
|
|
602
|
+
"-webkit-mask": "[<mask-reference>||<position> [/ <bg-size>]?||<repeat-style>||[<visual-box>|border|padding|content|text]||[<visual-box>|border|padding|content]]#",
|
|
603
|
+
"-webkit-mask-attachment": "<attachment>#",
|
|
604
|
+
"-webkit-mask-clip": "[<coord-box>|no-clip|border|padding|content|text]#",
|
|
605
|
+
"-webkit-mask-composite": "<composite-style>#",
|
|
606
|
+
"-webkit-mask-image": "<mask-reference>#",
|
|
607
|
+
"-webkit-mask-origin": "[<coord-box>|border|padding|content]#",
|
|
608
|
+
"-webkit-mask-position": "<position>#",
|
|
609
|
+
"-webkit-mask-position-x": "[<length-percentage>|left|center|right]#",
|
|
610
|
+
"-webkit-mask-position-y": "[<length-percentage>|top|center|bottom]#",
|
|
611
|
+
"-webkit-mask-repeat": "<repeat-style>#",
|
|
612
|
+
"-webkit-mask-repeat-x": "repeat|no-repeat|space|round",
|
|
613
|
+
"-webkit-mask-repeat-y": "repeat|no-repeat|space|round",
|
|
614
|
+
"-webkit-mask-size": "<bg-size>#",
|
|
615
|
+
"-webkit-overflow-scrolling": "auto|touch",
|
|
616
|
+
"-webkit-tap-highlight-color": "<color>",
|
|
617
|
+
"-webkit-text-fill-color": "<color>",
|
|
618
|
+
"-webkit-text-stroke": "<length>||<color>",
|
|
619
|
+
"-webkit-text-stroke-color": "<color>",
|
|
620
|
+
"-webkit-text-stroke-width": "<length>",
|
|
621
|
+
"-webkit-touch-callout": "default|none",
|
|
622
|
+
"-webkit-user-modify": "read-only|read-write|read-write-plaintext-only",
|
|
623
|
+
"-webkit-user-select": "auto|none|text|all",
|
|
624
|
+
"accent-color": "auto|<color>",
|
|
625
|
+
"align-content": "normal|<baseline-position>|<content-distribution>|<overflow-position>? <content-position>",
|
|
626
|
+
"align-items": "normal|stretch|<baseline-position>|[<overflow-position>? <self-position>]",
|
|
627
|
+
"align-self": "auto|normal|stretch|<baseline-position>|<overflow-position>? <self-position>",
|
|
628
|
+
"align-tracks": "[normal|<baseline-position>|<content-distribution>|<overflow-position>? <content-position>]#",
|
|
629
|
+
"all": "initial|inherit|unset|revert|revert-layer",
|
|
630
|
+
"anchor-name": "none|<dashed-ident>#",
|
|
631
|
+
"anchor-scope": "none|all|<dashed-ident>#",
|
|
632
|
+
"animation": "<single-animation>#",
|
|
633
|
+
"animation-composition": "<single-animation-composition>#",
|
|
634
|
+
"animation-delay": "<time>#",
|
|
635
|
+
"animation-direction": "<single-animation-direction>#",
|
|
636
|
+
"animation-duration": "<time>#",
|
|
637
|
+
"animation-fill-mode": "<single-animation-fill-mode>#",
|
|
638
|
+
"animation-iteration-count": "<single-animation-iteration-count>#",
|
|
639
|
+
"animation-name": "[none|<keyframes-name>]#",
|
|
640
|
+
"animation-play-state": "<single-animation-play-state>#",
|
|
641
|
+
"animation-range": "[<'animation-range-start'> <'animation-range-end'>?]#",
|
|
642
|
+
"animation-range-end": "[normal|<length-percentage>|<timeline-range-name> <length-percentage>?]#",
|
|
643
|
+
"animation-range-start": "[normal|<length-percentage>|<timeline-range-name> <length-percentage>?]#",
|
|
644
|
+
"animation-timeline": "<single-animation-timeline>#",
|
|
645
|
+
"animation-timing-function": "<easing-function>#",
|
|
646
|
+
"appearance": "none|auto|textfield|menulist-button|<compat-auto>",
|
|
647
|
+
"aspect-ratio": "auto||<ratio>",
|
|
648
|
+
"backdrop-filter": "none|<filter-value-list>",
|
|
649
|
+
"backface-visibility": "visible|hidden",
|
|
650
|
+
"background": "[<bg-layer> ,]* <final-bg-layer>",
|
|
651
|
+
"background-attachment": "<attachment>#",
|
|
652
|
+
"background-blend-mode": "<blend-mode>#",
|
|
653
|
+
"background-clip": "<bg-clip>#",
|
|
654
|
+
"background-color": "<color>",
|
|
655
|
+
"background-image": "<bg-image>#",
|
|
656
|
+
"background-origin": "<visual-box>#",
|
|
657
|
+
"background-position": "<bg-position>#",
|
|
658
|
+
"background-position-x": "[center|[[left|right|x-start|x-end]? <length-percentage>?]!]#",
|
|
659
|
+
"background-position-y": "[center|[[top|bottom|y-start|y-end]? <length-percentage>?]!]#",
|
|
660
|
+
"background-repeat": "<repeat-style>#",
|
|
661
|
+
"background-size": "<bg-size>#",
|
|
662
|
+
"block-size": "<'width'>",
|
|
663
|
+
"border": "<line-width>||<line-style>||<color>",
|
|
664
|
+
"border-block": "<'border-block-start'>",
|
|
665
|
+
"border-block-color": "<'border-top-color'>{1,2}",
|
|
666
|
+
"border-block-end": "<'border-top-width'>||<'border-top-style'>||<color>",
|
|
667
|
+
"border-block-end-color": "<'border-top-color'>",
|
|
668
|
+
"border-block-end-style": "<'border-top-style'>",
|
|
669
|
+
"border-block-end-width": "<'border-top-width'>",
|
|
670
|
+
"border-block-start": "<'border-top-width'>||<'border-top-style'>||<color>",
|
|
671
|
+
"border-block-start-color": "<'border-top-color'>",
|
|
672
|
+
"border-block-start-style": "<'border-top-style'>",
|
|
673
|
+
"border-block-start-width": "<'border-top-width'>",
|
|
674
|
+
"border-block-style": "<'border-top-style'>{1,2}",
|
|
675
|
+
"border-block-width": "<'border-top-width'>{1,2}",
|
|
676
|
+
"border-bottom": "<line-width>||<line-style>||<color>",
|
|
677
|
+
"border-bottom-color": "<'border-top-color'>",
|
|
678
|
+
"border-bottom-left-radius": "<length-percentage>{1,2}",
|
|
679
|
+
"border-bottom-right-radius": "<length-percentage>{1,2}",
|
|
680
|
+
"border-bottom-style": "<line-style>",
|
|
681
|
+
"border-bottom-width": "<line-width>",
|
|
682
|
+
"border-collapse": "collapse|separate",
|
|
683
|
+
"border-color": "<color>{1,4}",
|
|
684
|
+
"border-end-end-radius": "<'border-top-left-radius'>",
|
|
685
|
+
"border-end-start-radius": "<'border-top-left-radius'>",
|
|
686
|
+
"border-image": "<'border-image-source'>||<'border-image-slice'> [/ <'border-image-width'>|/ <'border-image-width'>? / <'border-image-outset'>]?||<'border-image-repeat'>",
|
|
687
|
+
"border-image-outset": "[<length>|<number>]{1,4}",
|
|
688
|
+
"border-image-repeat": "[stretch|repeat|round|space]{1,2}",
|
|
689
|
+
"border-image-slice": "<number-percentage>{1,4}&&fill?",
|
|
690
|
+
"border-image-source": "none|<image>",
|
|
691
|
+
"border-image-width": "[<length-percentage>|<number>|auto]{1,4}",
|
|
692
|
+
"border-inline": "<'border-block-start'>",
|
|
693
|
+
"border-inline-color": "<'border-top-color'>{1,2}",
|
|
694
|
+
"border-inline-end": "<'border-top-width'>||<'border-top-style'>||<color>",
|
|
695
|
+
"border-inline-end-color": "<'border-top-color'>",
|
|
696
|
+
"border-inline-end-style": "<'border-top-style'>",
|
|
697
|
+
"border-inline-end-width": "<'border-top-width'>",
|
|
698
|
+
"border-inline-start": "<'border-top-width'>||<'border-top-style'>||<color>",
|
|
699
|
+
"border-inline-start-color": "<'border-top-color'>",
|
|
700
|
+
"border-inline-start-style": "<'border-top-style'>",
|
|
701
|
+
"border-inline-start-width": "<'border-top-width'>",
|
|
702
|
+
"border-inline-style": "<'border-top-style'>{1,2}",
|
|
703
|
+
"border-inline-width": "<'border-top-width'>{1,2}",
|
|
704
|
+
"border-left": "<line-width>||<line-style>||<color>",
|
|
705
|
+
"border-left-color": "<color>",
|
|
706
|
+
"border-left-style": "<line-style>",
|
|
707
|
+
"border-left-width": "<line-width>",
|
|
708
|
+
"border-radius": "<length-percentage>{1,4} [/ <length-percentage>{1,4}]?",
|
|
709
|
+
"border-right": "<line-width>||<line-style>||<color>",
|
|
710
|
+
"border-right-color": "<color>",
|
|
711
|
+
"border-right-style": "<line-style>",
|
|
712
|
+
"border-right-width": "<line-width>",
|
|
713
|
+
"border-spacing": "<length> <length>?",
|
|
714
|
+
"border-start-end-radius": "<'border-top-left-radius'>",
|
|
715
|
+
"border-start-start-radius": "<'border-top-left-radius'>",
|
|
716
|
+
"border-style": "<line-style>{1,4}",
|
|
717
|
+
"border-top": "<line-width>||<line-style>||<color>",
|
|
718
|
+
"border-top-color": "<color>",
|
|
719
|
+
"border-top-left-radius": "<length-percentage>{1,2}",
|
|
720
|
+
"border-top-right-radius": "<length-percentage>{1,2}",
|
|
721
|
+
"border-top-style": "<line-style>",
|
|
722
|
+
"border-top-width": "<line-width>",
|
|
723
|
+
"border-width": "<line-width>{1,4}",
|
|
724
|
+
"bottom": "<length>|<percentage>|auto",
|
|
725
|
+
"box-align": "start|center|end|baseline|stretch",
|
|
726
|
+
"box-decoration-break": "slice|clone",
|
|
727
|
+
"box-direction": "normal|reverse|inherit",
|
|
728
|
+
"box-flex": "<number>",
|
|
729
|
+
"box-flex-group": "<integer>",
|
|
730
|
+
"box-lines": "single|multiple",
|
|
731
|
+
"box-ordinal-group": "<integer>",
|
|
732
|
+
"box-orient": "horizontal|vertical|inline-axis|block-axis|inherit",
|
|
733
|
+
"box-pack": "start|center|end|justify",
|
|
734
|
+
"box-shadow": "none|<shadow>#",
|
|
735
|
+
"box-sizing": "content-box|border-box",
|
|
736
|
+
"break-after": "auto|avoid|always|all|avoid-page|page|left|right|recto|verso|avoid-column|column|avoid-region|region",
|
|
737
|
+
"break-before": "auto|avoid|always|all|avoid-page|page|left|right|recto|verso|avoid-column|column|avoid-region|region",
|
|
738
|
+
"break-inside": "auto|avoid|avoid-page|avoid-column|avoid-region",
|
|
739
|
+
"caption-side": "top|bottom",
|
|
740
|
+
"caret": "<'caret-color'>||<'caret-shape'>",
|
|
741
|
+
"caret-color": "auto|<color>",
|
|
742
|
+
"caret-shape": "auto|bar|block|underscore",
|
|
743
|
+
"clear": "none|left|right|both|inline-start|inline-end",
|
|
744
|
+
"clip": "<shape>|auto",
|
|
745
|
+
"clip-path": "<clip-source>|[<basic-shape>||<geometry-box>]|none",
|
|
746
|
+
"clip-rule": "nonzero|evenodd",
|
|
747
|
+
"color": "<color>",
|
|
748
|
+
"color-interpolation-filters": "auto|sRGB|linearRGB",
|
|
749
|
+
"color-scheme": "normal|[light|dark|<custom-ident>]+&&only?",
|
|
750
|
+
"column-count": "<integer>|auto",
|
|
751
|
+
"column-fill": "auto|balance",
|
|
752
|
+
"column-gap": "normal|<length-percentage>",
|
|
753
|
+
"column-rule": "<'column-rule-width'>||<'column-rule-style'>||<'column-rule-color'>",
|
|
754
|
+
"column-rule-color": "<color>",
|
|
755
|
+
"column-rule-style": "<'border-style'>",
|
|
756
|
+
"column-rule-width": "<'border-width'>",
|
|
757
|
+
"column-span": "none|all",
|
|
758
|
+
"column-width": "<length>|auto",
|
|
759
|
+
"columns": "<'column-width'>||<'column-count'>",
|
|
760
|
+
"contain": "none|strict|content|[[size||inline-size]||layout||style||paint]",
|
|
761
|
+
"contain-intrinsic-block-size": "auto? [none|<length>]",
|
|
762
|
+
"contain-intrinsic-height": "auto? [none|<length>]",
|
|
763
|
+
"contain-intrinsic-inline-size": "auto? [none|<length>]",
|
|
764
|
+
"contain-intrinsic-size": "[auto? [none|<length>]]{1,2}",
|
|
765
|
+
"contain-intrinsic-width": "auto? [none|<length>]",
|
|
766
|
+
"container": "<'container-name'> [/ <'container-type'>]?",
|
|
767
|
+
"container-name": "none|<custom-ident>+",
|
|
768
|
+
"container-type": "normal||[size|inline-size]",
|
|
769
|
+
"content": "normal|none|[<content-replacement>|<content-list>] [/ [<string>|<counter>]+]?",
|
|
770
|
+
"content-visibility": "visible|auto|hidden",
|
|
771
|
+
"counter-increment": "[<counter-name> <integer>?]+|none",
|
|
772
|
+
"counter-reset": "[<counter-name> <integer>?|<reversed-counter-name> <integer>?]+|none",
|
|
773
|
+
"counter-set": "[<counter-name> <integer>?]+|none",
|
|
774
|
+
"cursor": "[[<url> [<x> <y>]? ,]* [auto|default|none|context-menu|help|pointer|progress|wait|cell|crosshair|text|vertical-text|alias|copy|move|no-drop|not-allowed|e-resize|n-resize|ne-resize|nw-resize|s-resize|se-resize|sw-resize|w-resize|ew-resize|ns-resize|nesw-resize|nwse-resize|col-resize|row-resize|all-scroll|zoom-in|zoom-out|grab|grabbing|hand|-webkit-grab|-webkit-grabbing|-webkit-zoom-in|-webkit-zoom-out|-moz-grab|-moz-grabbing|-moz-zoom-in|-moz-zoom-out]]",
|
|
775
|
+
"cx": "<length>|<percentage>",
|
|
776
|
+
"cy": "<length>|<percentage>",
|
|
777
|
+
"d": "none|path( <string> )",
|
|
778
|
+
"direction": "ltr|rtl",
|
|
779
|
+
"display": "[<display-outside>||<display-inside>]|<display-listitem>|<display-internal>|<display-box>|<display-legacy>|<-non-standard-display>",
|
|
780
|
+
"dominant-baseline": "auto|use-script|no-change|reset-size|ideographic|alphabetic|hanging|mathematical|central|middle|text-after-edge|text-before-edge",
|
|
781
|
+
"empty-cells": "show|hide",
|
|
782
|
+
"field-sizing": "content|fixed",
|
|
783
|
+
"fill": "<paint>",
|
|
784
|
+
"fill-opacity": "<number-zero-one>",
|
|
785
|
+
"fill-rule": "nonzero|evenodd",
|
|
786
|
+
"filter": "none|<filter-value-list>|<-ms-filter-function-list>",
|
|
787
|
+
"flex": "none|[<'flex-grow'> <'flex-shrink'>?||<'flex-basis'>]",
|
|
788
|
+
"flex-basis": "content|<'width'>",
|
|
789
|
+
"flex-direction": "row|row-reverse|column|column-reverse",
|
|
790
|
+
"flex-flow": "<'flex-direction'>||<'flex-wrap'>",
|
|
791
|
+
"flex-grow": "<number>",
|
|
792
|
+
"flex-shrink": "<number>",
|
|
793
|
+
"flex-wrap": "nowrap|wrap|wrap-reverse",
|
|
794
|
+
"float": "left|right|none|inline-start|inline-end",
|
|
795
|
+
"flood-color": "<color>",
|
|
796
|
+
"flood-opacity": "<'opacity'>",
|
|
797
|
+
"font": "[[<'font-style'>||<font-variant-css2>||<'font-weight'>||<font-width-css3>]? <'font-size'> [/ <'line-height'>]? <'font-family'>#]|<system-family-name>|<-non-standard-font>",
|
|
798
|
+
"font-family": "[<family-name>|<generic-family>]#",
|
|
799
|
+
"font-feature-settings": "normal|<feature-tag-value>#",
|
|
800
|
+
"font-kerning": "auto|normal|none",
|
|
801
|
+
"font-language-override": "normal|<string>",
|
|
802
|
+
"font-optical-sizing": "auto|none",
|
|
803
|
+
"font-palette": "normal|light|dark|<palette-identifier>|<palette-mix()>",
|
|
804
|
+
"font-size": "<absolute-size>|<relative-size>|<length-percentage>",
|
|
805
|
+
"font-size-adjust": "none|[ex-height|cap-height|ch-width|ic-width|ic-height]? [from-font|<number>]",
|
|
806
|
+
"font-smooth": "auto|never|always|<absolute-size>|<length>",
|
|
807
|
+
"font-stretch": "<font-stretch-absolute>",
|
|
808
|
+
"font-style": "normal|italic|oblique <angle>?",
|
|
809
|
+
"font-synthesis": "none|[weight||style||small-caps||position]",
|
|
810
|
+
"font-synthesis-position": "auto|none",
|
|
811
|
+
"font-synthesis-small-caps": "auto|none",
|
|
812
|
+
"font-synthesis-style": "auto|none",
|
|
813
|
+
"font-synthesis-weight": "auto|none",
|
|
814
|
+
"font-variant": "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]",
|
|
815
|
+
"font-variant-alternates": "normal|[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> )]",
|
|
816
|
+
"font-variant-caps": "normal|small-caps|all-small-caps|petite-caps|all-petite-caps|unicase|titling-caps",
|
|
817
|
+
"font-variant-east-asian": "normal|[<east-asian-variant-values>||<east-asian-width-values>||ruby]",
|
|
818
|
+
"font-variant-emoji": "normal|text|emoji|unicode",
|
|
819
|
+
"font-variant-ligatures": "normal|none|[<common-lig-values>||<discretionary-lig-values>||<historical-lig-values>||<contextual-alt-values>]",
|
|
820
|
+
"font-variant-numeric": "normal|[<numeric-figure-values>||<numeric-spacing-values>||<numeric-fraction-values>||ordinal||slashed-zero]",
|
|
821
|
+
"font-variant-position": "normal|sub|super",
|
|
822
|
+
"font-variation-settings": "normal|[<string> <number>]#",
|
|
823
|
+
"font-weight": "<font-weight-absolute>|bolder|lighter",
|
|
824
|
+
"forced-color-adjust": "auto|none|preserve-parent-color",
|
|
825
|
+
"gap": "<'row-gap'> <'column-gap'>?",
|
|
826
|
+
"grid": "<'grid-template'>|<'grid-template-rows'> / [auto-flow&&dense?] <'grid-auto-columns'>?|[auto-flow&&dense?] <'grid-auto-rows'>? / <'grid-template-columns'>",
|
|
827
|
+
"grid-area": "<grid-line> [/ <grid-line>]{0,3}",
|
|
828
|
+
"grid-auto-columns": "<track-size>+",
|
|
829
|
+
"grid-auto-flow": "[row|column]||dense",
|
|
830
|
+
"grid-auto-rows": "<track-size>+",
|
|
831
|
+
"grid-column": "<grid-line> [/ <grid-line>]?",
|
|
832
|
+
"grid-column-end": "<grid-line>",
|
|
833
|
+
"grid-column-gap": "<length-percentage>",
|
|
834
|
+
"grid-column-start": "<grid-line>",
|
|
835
|
+
"grid-gap": "<'grid-row-gap'> <'grid-column-gap'>?",
|
|
836
|
+
"grid-row": "<grid-line> [/ <grid-line>]?",
|
|
837
|
+
"grid-row-end": "<grid-line>",
|
|
838
|
+
"grid-row-gap": "<length-percentage>",
|
|
839
|
+
"grid-row-start": "<grid-line>",
|
|
840
|
+
"grid-template": "none|[<'grid-template-rows'> / <'grid-template-columns'>]|[<line-names>? <string> <track-size>? <line-names>?]+ [/ <explicit-track-list>]?",
|
|
841
|
+
"grid-template-areas": "none|<string>+",
|
|
842
|
+
"grid-template-columns": "none|<track-list>|<auto-track-list>|subgrid <line-name-list>?",
|
|
843
|
+
"grid-template-rows": "none|<track-list>|<auto-track-list>|subgrid <line-name-list>?",
|
|
844
|
+
"hanging-punctuation": "none|[first||[force-end|allow-end]||last]",
|
|
845
|
+
"height": "auto|<length-percentage [0,∞]>|min-content|max-content|fit-content|fit-content( <length-percentage [0,∞]> )|<calc-size()>|<anchor-size()>|stretch|<-non-standard-size>",
|
|
846
|
+
"hyphenate-character": "auto|<string>",
|
|
847
|
+
"hyphenate-limit-chars": "[auto|<integer>]{1,3}",
|
|
848
|
+
"hyphens": "none|manual|auto",
|
|
849
|
+
"image-orientation": "from-image|<angle>|[<angle>? flip]",
|
|
850
|
+
"image-rendering": "auto|crisp-edges|pixelated|smooth|optimizeSpeed|optimizeQuality|<-non-standard-image-rendering>",
|
|
851
|
+
"image-resolution": "[from-image||<resolution>]&&snap?",
|
|
852
|
+
"ime-mode": "auto|normal|active|inactive|disabled",
|
|
853
|
+
"initial-letter": "normal|[<number> <integer>?]",
|
|
854
|
+
"initial-letter-align": "[auto|alphabetic|hanging|ideographic]",
|
|
855
|
+
"inline-size": "<'width'>",
|
|
856
|
+
"inset": "<'top'>{1,4}",
|
|
857
|
+
"inset-block": "<'top'>{1,2}",
|
|
858
|
+
"inset-block-end": "<'top'>",
|
|
859
|
+
"inset-block-start": "<'top'>",
|
|
860
|
+
"inset-inline": "<'top'>{1,2}",
|
|
861
|
+
"inset-inline-end": "<'top'>",
|
|
862
|
+
"inset-inline-start": "<'top'>",
|
|
863
|
+
"interpolate-size": "numeric-only|allow-keywords",
|
|
864
|
+
"isolation": "auto|isolate",
|
|
865
|
+
"justify-content": "normal|<content-distribution>|<overflow-position>? [<content-position>|left|right]",
|
|
866
|
+
"justify-items": "normal|stretch|<baseline-position>|<overflow-position>? [<self-position>|left|right]|legacy|legacy&&[left|right|center]",
|
|
867
|
+
"justify-self": "auto|normal|stretch|<baseline-position>|<overflow-position>? [<self-position>|left|right]",
|
|
868
|
+
"justify-tracks": "[normal|<content-distribution>|<overflow-position>? [<content-position>|left|right]]#",
|
|
869
|
+
"left": "<length>|<percentage>|auto",
|
|
870
|
+
"letter-spacing": "normal|<length-percentage>",
|
|
871
|
+
"lighting-color": "<color>",
|
|
872
|
+
"line-break": "auto|loose|normal|strict|anywhere",
|
|
873
|
+
"line-clamp": "none|<integer>",
|
|
874
|
+
"line-height": "normal|<number>|<length>|<percentage>",
|
|
875
|
+
"line-height-step": "<length>",
|
|
876
|
+
"list-style": "<'list-style-type'>||<'list-style-position'>||<'list-style-image'>",
|
|
877
|
+
"list-style-image": "<image>|none",
|
|
878
|
+
"list-style-position": "inside|outside",
|
|
879
|
+
"list-style-type": "<counter-style>|<string>|none",
|
|
880
|
+
"margin": "<'margin-top'>{1,4}",
|
|
881
|
+
"margin-block": "<'margin-top'>{1,2}",
|
|
882
|
+
"margin-block-end": "<'margin-top'>",
|
|
883
|
+
"margin-block-start": "<'margin-top'>",
|
|
884
|
+
"margin-bottom": "<length-percentage>|auto",
|
|
885
|
+
"margin-inline": "<'margin-top'>{1,2}",
|
|
886
|
+
"margin-inline-end": "<'margin-top'>",
|
|
887
|
+
"margin-inline-start": "<'margin-top'>",
|
|
888
|
+
"margin-left": "<length-percentage>|auto",
|
|
889
|
+
"margin-right": "<length-percentage>|auto",
|
|
890
|
+
"margin-top": "<length-percentage>|auto",
|
|
891
|
+
"margin-trim": "none|in-flow|all",
|
|
892
|
+
"marker": "none|<url>",
|
|
893
|
+
"marker-end": "none|<url>",
|
|
894
|
+
"marker-mid": "none|<url>",
|
|
895
|
+
"marker-start": "none|<url>",
|
|
896
|
+
"mask": "<mask-layer>#",
|
|
897
|
+
"mask-border": "<'mask-border-source'>||<'mask-border-slice'> [/ <'mask-border-width'>? [/ <'mask-border-outset'>]?]?||<'mask-border-repeat'>||<'mask-border-mode'>",
|
|
898
|
+
"mask-border-mode": "luminance|alpha",
|
|
899
|
+
"mask-border-outset": "[<length>|<number>]{1,4}",
|
|
900
|
+
"mask-border-repeat": "[stretch|repeat|round|space]{1,2}",
|
|
901
|
+
"mask-border-slice": "<number-percentage>{1,4} fill?",
|
|
902
|
+
"mask-border-source": "none|<image>",
|
|
903
|
+
"mask-border-width": "[<length-percentage>|<number>|auto]{1,4}",
|
|
904
|
+
"mask-clip": "[<coord-box>|no-clip]#",
|
|
905
|
+
"mask-composite": "<compositing-operator>#",
|
|
906
|
+
"mask-image": "<mask-reference>#",
|
|
907
|
+
"mask-mode": "<masking-mode>#",
|
|
908
|
+
"mask-origin": "<coord-box>#",
|
|
909
|
+
"mask-position": "<position>#",
|
|
910
|
+
"mask-repeat": "<repeat-style>#",
|
|
911
|
+
"mask-size": "<bg-size>#",
|
|
912
|
+
"mask-type": "luminance|alpha",
|
|
913
|
+
"masonry-auto-flow": "[pack|next]||[definite-first|ordered]",
|
|
914
|
+
"math-depth": "auto-add|add( <integer> )|<integer>",
|
|
915
|
+
"math-shift": "normal|compact",
|
|
916
|
+
"math-style": "normal|compact",
|
|
917
|
+
"max-block-size": "<'max-width'>",
|
|
918
|
+
"max-height": "none|<length-percentage [0,∞]>|min-content|max-content|fit-content|fit-content( <length-percentage [0,∞]> )|<calc-size()>|<anchor-size()>|stretch|<-non-standard-size>",
|
|
919
|
+
"max-inline-size": "<'max-width'>",
|
|
920
|
+
"max-lines": "none|<integer>",
|
|
921
|
+
"max-width": "none|<length-percentage [0,∞]>|min-content|max-content|fit-content|fit-content( <length-percentage [0,∞]> )|<calc-size()>|<anchor-size()>|stretch|<-non-standard-size>",
|
|
922
|
+
"min-block-size": "<'min-width'>",
|
|
923
|
+
"min-height": "auto|<length-percentage [0,∞]>|min-content|max-content|fit-content|fit-content( <length-percentage [0,∞]> )|<calc-size()>|<anchor-size()>|stretch|<-non-standard-size>",
|
|
924
|
+
"min-inline-size": "<'min-width'>",
|
|
925
|
+
"min-width": "auto|<length-percentage [0,∞]>|min-content|max-content|fit-content|fit-content( <length-percentage [0,∞]> )|<calc-size()>|<anchor-size()>|stretch|<-non-standard-size>",
|
|
926
|
+
"mix-blend-mode": "<blend-mode>|plus-lighter",
|
|
927
|
+
"object-fit": "fill|contain|cover|none|scale-down",
|
|
928
|
+
"object-position": "<position>",
|
|
929
|
+
"offset": "[<'offset-position'>? [<'offset-path'> [<'offset-distance'>||<'offset-rotate'>]?]?]! [/ <'offset-anchor'>]?",
|
|
930
|
+
"offset-anchor": "auto|<position>",
|
|
931
|
+
"offset-distance": "<length-percentage>",
|
|
932
|
+
"offset-path": "none|<offset-path>||<coord-box>",
|
|
933
|
+
"offset-position": "normal|auto|<position>",
|
|
934
|
+
"offset-rotate": "[auto|reverse]||<angle>",
|
|
935
|
+
"opacity": "<opacity-value>",
|
|
936
|
+
"order": "<integer>",
|
|
937
|
+
"orphans": "<integer>",
|
|
938
|
+
"outline": "<'outline-width'>||<'outline-style'>||<'outline-color'>",
|
|
939
|
+
"outline-color": "auto|<color>",
|
|
940
|
+
"outline-offset": "<length>",
|
|
941
|
+
"outline-style": "auto|<outline-line-style>",
|
|
942
|
+
"outline-width": "<line-width>",
|
|
943
|
+
"overflow": "[visible|hidden|clip|scroll|auto]{1,2}|<-non-standard-overflow>",
|
|
944
|
+
"overflow-anchor": "auto|none",
|
|
945
|
+
"overflow-block": "visible|hidden|clip|scroll|auto",
|
|
946
|
+
"overflow-clip-box": "padding-box|content-box",
|
|
947
|
+
"overflow-clip-margin": "<visual-box>||<length [0,∞]>",
|
|
948
|
+
"overflow-inline": "visible|hidden|clip|scroll|auto",
|
|
949
|
+
"overflow-wrap": "normal|break-word|anywhere",
|
|
950
|
+
"overflow-x": "visible|hidden|clip|scroll|auto|<-non-standard-overflow>",
|
|
951
|
+
"overflow-y": "visible|hidden|clip|scroll|auto|<-non-standard-overflow>",
|
|
952
|
+
"overlay": "none|auto",
|
|
953
|
+
"overscroll-behavior": "[contain|none|auto]{1,2}",
|
|
954
|
+
"overscroll-behavior-block": "contain|none|auto",
|
|
955
|
+
"overscroll-behavior-inline": "contain|none|auto",
|
|
956
|
+
"overscroll-behavior-x": "contain|none|auto",
|
|
957
|
+
"overscroll-behavior-y": "contain|none|auto",
|
|
958
|
+
"padding": "<'padding-top'>{1,4}",
|
|
959
|
+
"padding-block": "<'padding-top'>{1,2}",
|
|
960
|
+
"padding-block-end": "<'padding-top'>",
|
|
961
|
+
"padding-block-start": "<'padding-top'>",
|
|
962
|
+
"padding-bottom": "<length-percentage [0,∞]>",
|
|
963
|
+
"padding-inline": "<'padding-top'>{1,2}",
|
|
964
|
+
"padding-inline-end": "<'padding-top'>",
|
|
965
|
+
"padding-inline-start": "<'padding-top'>",
|
|
966
|
+
"padding-left": "<length-percentage [0,∞]>",
|
|
967
|
+
"padding-right": "<length-percentage [0,∞]>",
|
|
968
|
+
"padding-top": "<length-percentage [0,∞]>",
|
|
969
|
+
"page": "auto|<custom-ident>",
|
|
970
|
+
"page-break-after": "auto|always|avoid|left|right|recto|verso",
|
|
971
|
+
"page-break-before": "auto|always|avoid|left|right|recto|verso",
|
|
972
|
+
"page-break-inside": "auto|avoid",
|
|
973
|
+
"paint-order": "normal|[fill||stroke||markers]",
|
|
974
|
+
"perspective": "none|<length>",
|
|
975
|
+
"perspective-origin": "<position>",
|
|
976
|
+
"place-content": "<'align-content'> <'justify-content'>?",
|
|
977
|
+
"place-items": "<'align-items'> <'justify-items'>?",
|
|
978
|
+
"place-self": "<'align-self'> <'justify-self'>?",
|
|
979
|
+
"pointer-events": "auto|none|visiblePainted|visibleFill|visibleStroke|visible|painted|fill|stroke|all|inherit",
|
|
980
|
+
"position": "static|relative|absolute|sticky|fixed|-webkit-sticky",
|
|
981
|
+
"position-anchor": "auto|<anchor-name>",
|
|
982
|
+
"position-area": "none|<position-area>",
|
|
983
|
+
"position-try": "<'position-try-order'>? <'position-try-fallbacks'>",
|
|
984
|
+
"position-try-fallbacks": "none|[[<dashed-ident>||<try-tactic>]|<'position-area'>]#",
|
|
985
|
+
"position-try-order": "normal|<try-size>",
|
|
986
|
+
"position-visibility": "always|[anchors-valid||anchors-visible||no-overflow]",
|
|
987
|
+
"print-color-adjust": "economy|exact",
|
|
988
|
+
"quotes": "none|auto|[<string> <string>]+",
|
|
989
|
+
"r": "<length>|<percentage>",
|
|
990
|
+
"resize": "none|both|horizontal|vertical|block|inline",
|
|
991
|
+
"right": "<length>|<percentage>|auto",
|
|
992
|
+
"rotate": "none|<angle>|[x|y|z|<number>{3}]&&<angle>",
|
|
993
|
+
"row-gap": "normal|<length-percentage>",
|
|
994
|
+
"ruby-align": "start|center|space-between|space-around",
|
|
995
|
+
"ruby-merge": "separate|collapse|auto",
|
|
996
|
+
"ruby-position": "[alternate||[over|under]]|inter-character",
|
|
997
|
+
"rx": "<length>|<percentage>",
|
|
998
|
+
"ry": "<length>|<percentage>",
|
|
999
|
+
"scale": "none|[<number>|<percentage>]{1,3}",
|
|
1000
|
+
"scroll-behavior": "auto|smooth",
|
|
1001
|
+
"scroll-margin": "<length>{1,4}",
|
|
1002
|
+
"scroll-margin-block": "<length>{1,2}",
|
|
1003
|
+
"scroll-margin-block-end": "<length>",
|
|
1004
|
+
"scroll-margin-block-start": "<length>",
|
|
1005
|
+
"scroll-margin-bottom": "<length>",
|
|
1006
|
+
"scroll-margin-inline": "<length>{1,2}",
|
|
1007
|
+
"scroll-margin-inline-end": "<length>",
|
|
1008
|
+
"scroll-margin-inline-start": "<length>",
|
|
1009
|
+
"scroll-margin-left": "<length>",
|
|
1010
|
+
"scroll-margin-right": "<length>",
|
|
1011
|
+
"scroll-margin-top": "<length>",
|
|
1012
|
+
"scroll-padding": "[auto|<length-percentage>]{1,4}",
|
|
1013
|
+
"scroll-padding-block": "[auto|<length-percentage>]{1,2}",
|
|
1014
|
+
"scroll-padding-block-end": "auto|<length-percentage>",
|
|
1015
|
+
"scroll-padding-block-start": "auto|<length-percentage>",
|
|
1016
|
+
"scroll-padding-bottom": "auto|<length-percentage>",
|
|
1017
|
+
"scroll-padding-inline": "[auto|<length-percentage>]{1,2}",
|
|
1018
|
+
"scroll-padding-inline-end": "auto|<length-percentage>",
|
|
1019
|
+
"scroll-padding-inline-start": "auto|<length-percentage>",
|
|
1020
|
+
"scroll-padding-left": "auto|<length-percentage>",
|
|
1021
|
+
"scroll-padding-right": "auto|<length-percentage>",
|
|
1022
|
+
"scroll-padding-top": "auto|<length-percentage>",
|
|
1023
|
+
"scroll-snap-align": "[none|start|end|center]{1,2}",
|
|
1024
|
+
"scroll-snap-coordinate": "none|<position>#",
|
|
1025
|
+
"scroll-snap-destination": "<position>",
|
|
1026
|
+
"scroll-snap-points-x": "none|repeat( <length-percentage> )",
|
|
1027
|
+
"scroll-snap-points-y": "none|repeat( <length-percentage> )",
|
|
1028
|
+
"scroll-snap-stop": "normal|always",
|
|
1029
|
+
"scroll-snap-type": "none|[x|y|block|inline|both] [mandatory|proximity]?",
|
|
1030
|
+
"scroll-snap-type-x": "none|mandatory|proximity",
|
|
1031
|
+
"scroll-snap-type-y": "none|mandatory|proximity",
|
|
1032
|
+
"scroll-timeline": "[<'scroll-timeline-name'>||<'scroll-timeline-axis'>]#",
|
|
1033
|
+
"scroll-timeline-axis": "[block|inline|x|y]#",
|
|
1034
|
+
"scroll-timeline-name": "[none|<dashed-ident>]#",
|
|
1035
|
+
"scrollbar-color": "auto|<color>{2}",
|
|
1036
|
+
"scrollbar-gutter": "auto|stable&&both-edges?",
|
|
1037
|
+
"scrollbar-width": "auto|thin|none",
|
|
1038
|
+
"shape-image-threshold": "<opacity-value>",
|
|
1039
|
+
"shape-margin": "<length-percentage>",
|
|
1040
|
+
"shape-outside": "none|[<shape-box>||<basic-shape>]|<image>",
|
|
1041
|
+
"shape-rendering": "auto|optimizeSpeed|crispEdges|geometricPrecision",
|
|
1042
|
+
"speak-as": "normal|spell-out||digits||[literal-punctuation|no-punctuation]",
|
|
1043
|
+
"stop-color": "<'color'>",
|
|
1044
|
+
"stop-opacity": "<'opacity'>",
|
|
1045
|
+
"stroke": "<paint>",
|
|
1046
|
+
"stroke-dasharray": "none|[<svg-length>+]#",
|
|
1047
|
+
"stroke-dashoffset": "<svg-length>",
|
|
1048
|
+
"stroke-linecap": "butt|round|square",
|
|
1049
|
+
"stroke-linejoin": "miter|round|bevel",
|
|
1050
|
+
"stroke-miterlimit": "<number-one-or-greater>",
|
|
1051
|
+
"stroke-opacity": "<'opacity'>",
|
|
1052
|
+
"stroke-width": "<svg-length>",
|
|
1053
|
+
"tab-size": "<integer>|<length>",
|
|
1054
|
+
"table-layout": "auto|fixed",
|
|
1055
|
+
"text-align": "start|end|left|right|center|justify|match-parent",
|
|
1056
|
+
"text-align-last": "auto|start|end|left|right|center|justify",
|
|
1057
|
+
"text-anchor": "start|middle|end",
|
|
1058
|
+
"text-box": "normal|<'text-box-trim'>||<'text-box-edge'>",
|
|
1059
|
+
"text-box-edge": "auto|<text-edge>",
|
|
1060
|
+
"text-box-trim": "none|trim-start|trim-end|trim-both",
|
|
1061
|
+
"text-combine-upright": "none|all|[digits <integer>?]",
|
|
1062
|
+
"text-decoration": "<'text-decoration-line'>||<'text-decoration-style'>||<'text-decoration-color'>||<'text-decoration-thickness'>",
|
|
1063
|
+
"text-decoration-color": "<color>",
|
|
1064
|
+
"text-decoration-line": "none|[underline||overline||line-through||blink]|spelling-error|grammar-error",
|
|
1065
|
+
"text-decoration-skip": "none|[objects||[spaces|[leading-spaces||trailing-spaces]]||edges||box-decoration]",
|
|
1066
|
+
"text-decoration-skip-ink": "auto|all|none",
|
|
1067
|
+
"text-decoration-style": "solid|double|dotted|dashed|wavy",
|
|
1068
|
+
"text-decoration-thickness": "auto|from-font|<length>|<percentage>",
|
|
1069
|
+
"text-emphasis": "<'text-emphasis-style'>||<'text-emphasis-color'>",
|
|
1070
|
+
"text-emphasis-color": "<color>",
|
|
1071
|
+
"text-emphasis-position": "auto|[over|under]&&[right|left]?",
|
|
1072
|
+
"text-emphasis-style": "none|[[filled|open]||[dot|circle|double-circle|triangle|sesame]]|<string>",
|
|
1073
|
+
"text-indent": "<length-percentage>&&hanging?&&each-line?",
|
|
1074
|
+
"text-justify": "auto|inter-character|inter-word|none",
|
|
1075
|
+
"text-orientation": "mixed|upright|sideways",
|
|
1076
|
+
"text-overflow": "[clip|ellipsis|<string>]{1,2}",
|
|
1077
|
+
"text-rendering": "auto|optimizeSpeed|optimizeLegibility|geometricPrecision",
|
|
1078
|
+
"text-shadow": "none|<shadow-t>#",
|
|
1079
|
+
"text-size-adjust": "none|auto|<percentage>",
|
|
1080
|
+
"text-spacing-trim": "space-all|normal|space-first|trim-start",
|
|
1081
|
+
"text-transform": "none|[capitalize|uppercase|lowercase]||full-width||full-size-kana|math-auto",
|
|
1082
|
+
"text-underline-offset": "auto|<length>|<percentage>",
|
|
1083
|
+
"text-underline-position": "auto|from-font|[under||[left|right]]",
|
|
1084
|
+
"text-wrap": "<'text-wrap-mode'>||<'text-wrap-style'>",
|
|
1085
|
+
"text-wrap-mode": "wrap|nowrap",
|
|
1086
|
+
"text-wrap-style": "auto|balance|stable|pretty",
|
|
1087
|
+
"timeline-scope": "none|<dashed-ident>#",
|
|
1088
|
+
"top": "<length>|<percentage>|auto",
|
|
1089
|
+
"touch-action": "auto|none|[[pan-x|pan-left|pan-right]||[pan-y|pan-up|pan-down]||pinch-zoom]|manipulation",
|
|
1090
|
+
"transform": "none|<transform-list>",
|
|
1091
|
+
"transform-box": "content-box|border-box|fill-box|stroke-box|view-box",
|
|
1092
|
+
"transform-origin": "[<length-percentage>|left|center|right|top|bottom]|[[<length-percentage>|left|center|right]&&[<length-percentage>|top|center|bottom]] <length>?",
|
|
1093
|
+
"transform-style": "flat|preserve-3d",
|
|
1094
|
+
"transition": "<single-transition>#",
|
|
1095
|
+
"transition-behavior": "<transition-behavior-value>#",
|
|
1096
|
+
"transition-delay": "<time>#",
|
|
1097
|
+
"transition-duration": "<time>#",
|
|
1098
|
+
"transition-property": "none|<single-transition-property>#",
|
|
1099
|
+
"transition-timing-function": "<easing-function>#",
|
|
1100
|
+
"translate": "none|<length-percentage> [<length-percentage> <length>?]?",
|
|
1101
|
+
"unicode-bidi": "normal|embed|isolate|bidi-override|isolate-override|plaintext|-moz-isolate|-moz-isolate-override|-moz-plaintext|-webkit-isolate|-webkit-isolate-override|-webkit-plaintext",
|
|
1102
|
+
"user-select": "auto|text|none|all",
|
|
1103
|
+
"vector-effect": "none|non-scaling-stroke|non-scaling-size|non-rotation|fixed-position",
|
|
1104
|
+
"vertical-align": "baseline|sub|super|text-top|text-bottom|middle|top|bottom|<percentage>|<length>",
|
|
1105
|
+
"view-timeline": "[<'view-timeline-name'> <'view-timeline-axis'>?]#",
|
|
1106
|
+
"view-timeline-axis": "[block|inline|x|y]#",
|
|
1107
|
+
"view-timeline-inset": "[[auto|<length-percentage>]{1,2}]#",
|
|
1108
|
+
"view-timeline-name": "none|<dashed-ident>#",
|
|
1109
|
+
"view-transition-class": "none|<custom-ident>+",
|
|
1110
|
+
"view-transition-name": "none|<custom-ident>",
|
|
1111
|
+
"visibility": "visible|hidden|collapse",
|
|
1112
|
+
"white-space": "normal|pre|pre-wrap|pre-line|<'white-space-collapse'>||<'text-wrap-mode'>",
|
|
1113
|
+
"white-space-collapse": "collapse|preserve|preserve-breaks|preserve-spaces|break-spaces",
|
|
1114
|
+
"widows": "<integer>",
|
|
1115
|
+
"width": "auto|<length-percentage [0,∞]>|min-content|max-content|fit-content|fit-content( <length-percentage [0,∞]> )|<calc-size()>|<anchor-size()>|stretch|<-non-standard-size>",
|
|
1116
|
+
"will-change": "auto|<animateable-feature>#",
|
|
1117
|
+
"word-break": "normal|break-all|keep-all|break-word|auto-phrase",
|
|
1118
|
+
"word-spacing": "normal|<length>",
|
|
1119
|
+
"word-wrap": "normal|break-word",
|
|
1120
|
+
"writing-mode": "horizontal-tb|vertical-rl|vertical-lr|sideways-rl|sideways-lr|<svg-writing-mode>",
|
|
1121
|
+
"x": "<length>|<percentage>",
|
|
1122
|
+
"y": "<length>|<percentage>",
|
|
1123
|
+
"z-index": "auto|<integer>",
|
|
1124
|
+
"zoom": "normal|reset|<number [0,∞]>||<percentage [0,∞]>",
|
|
1125
|
+
"-moz-border-radius-bottomleft": "<'border-bottom-left-radius'>",
|
|
1126
|
+
"-moz-border-radius-bottomright": "<'border-bottom-right-radius'>",
|
|
1127
|
+
"-moz-border-radius-topleft": "<'border-top-left-radius'>",
|
|
1128
|
+
"-moz-border-radius-topright": "<'border-bottom-right-radius'>",
|
|
1129
|
+
"-moz-control-character-visibility": "visible|hidden",
|
|
1130
|
+
"-moz-osx-font-smoothing": "auto|grayscale",
|
|
1131
|
+
"-moz-user-select": "none|text|all|-moz-none",
|
|
1132
|
+
"-ms-flex-align": "start|end|center|baseline|stretch",
|
|
1133
|
+
"-ms-flex-item-align": "auto|start|end|center|baseline|stretch",
|
|
1134
|
+
"-ms-flex-line-pack": "start|end|center|justify|distribute|stretch",
|
|
1135
|
+
"-ms-flex-negative": "<'flex-shrink'>",
|
|
1136
|
+
"-ms-flex-pack": "start|end|center|justify|distribute",
|
|
1137
|
+
"-ms-flex-order": "<integer>",
|
|
1138
|
+
"-ms-flex-positive": "<'flex-grow'>",
|
|
1139
|
+
"-ms-flex-preferred-size": "<'flex-basis'>",
|
|
1140
|
+
"-ms-interpolation-mode": "nearest-neighbor|bicubic",
|
|
1141
|
+
"-ms-grid-column-align": "start|end|center|stretch",
|
|
1142
|
+
"-ms-grid-row-align": "start|end|center|stretch",
|
|
1143
|
+
"-ms-hyphenate-limit-last": "none|always|column|page|spread",
|
|
1144
|
+
"-webkit-column-break-after": "always|auto|avoid",
|
|
1145
|
+
"-webkit-column-break-before": "always|auto|avoid",
|
|
1146
|
+
"-webkit-column-break-inside": "always|auto|avoid",
|
|
1147
|
+
"-webkit-font-smoothing": "auto|none|antialiased|subpixel-antialiased",
|
|
1148
|
+
"-webkit-mask-box-image": "[<url>|<gradient>|none] [<length-percentage>{4} <-webkit-mask-box-repeat>{2}]?",
|
|
1149
|
+
"-webkit-print-color-adjust": "economy|exact",
|
|
1150
|
+
"-webkit-text-security": "none|circle|disc|square",
|
|
1151
|
+
"-webkit-user-drag": "none|element|auto",
|
|
1152
|
+
"alignment-baseline": "auto|baseline|before-edge|text-before-edge|middle|central|after-edge|text-after-edge|ideographic|alphabetic|hanging|mathematical",
|
|
1153
|
+
"baseline-shift": "baseline|sub|super|<svg-length>",
|
|
1154
|
+
"behavior": "<url>+",
|
|
1155
|
+
"cue": "<'cue-before'> <'cue-after'>?",
|
|
1156
|
+
"cue-after": "<url> <decibel>?|none",
|
|
1157
|
+
"cue-before": "<url> <decibel>?|none",
|
|
1158
|
+
"glyph-orientation-horizontal": "<angle>",
|
|
1159
|
+
"glyph-orientation-vertical": "<angle>",
|
|
1160
|
+
"kerning": "auto|<svg-length>",
|
|
1161
|
+
"pause": "<'pause-before'> <'pause-after'>?",
|
|
1162
|
+
"pause-after": "<time>|none|x-weak|weak|medium|strong|x-strong",
|
|
1163
|
+
"pause-before": "<time>|none|x-weak|weak|medium|strong|x-strong",
|
|
1164
|
+
"position-try-options": "<'position-try-fallbacks'>",
|
|
1165
|
+
"rest": "<'rest-before'> <'rest-after'>?",
|
|
1166
|
+
"rest-after": "<time>|none|x-weak|weak|medium|strong|x-strong",
|
|
1167
|
+
"rest-before": "<time>|none|x-weak|weak|medium|strong|x-strong",
|
|
1168
|
+
"src": "[<url> [format( <string># )]?|local( <family-name> )]#",
|
|
1169
|
+
"speak": "auto|never|always",
|
|
1170
|
+
"unicode-range": "<urange>#",
|
|
1171
|
+
"voice-balance": "<number>|left|center|right|leftwards|rightwards",
|
|
1172
|
+
"voice-duration": "auto|<time>",
|
|
1173
|
+
"voice-family": "[[<family-name>|<generic-voice>] ,]* [<family-name>|<generic-voice>]|preserve",
|
|
1174
|
+
"voice-pitch": "<frequency>&&absolute|[[x-low|low|medium|high|x-high]||[<frequency>|<semitones>|<percentage>]]",
|
|
1175
|
+
"voice-range": "<frequency>&&absolute|[[x-low|low|medium|high|x-high]||[<frequency>|<semitones>|<percentage>]]",
|
|
1176
|
+
"voice-rate": "[normal|x-slow|slow|medium|fast|x-fast]||<percentage>",
|
|
1177
|
+
"voice-stress": "normal|strong|moderate|none|reduced",
|
|
1178
|
+
"voice-volume": "silent|[[x-soft|soft|medium|loud|x-loud]||<decibel>]",
|
|
1179
|
+
"white-space-trim": "none|discard-before||discard-after||discard-inner"
|
|
1180
|
+
},
|
|
1181
|
+
"atrules": {
|
|
1182
|
+
"charset": {
|
|
1183
|
+
"prelude": "<string>",
|
|
1184
|
+
"descriptors": null
|
|
1185
|
+
},
|
|
1186
|
+
"counter-style": {
|
|
1187
|
+
"prelude": "<counter-style-name>",
|
|
1188
|
+
"descriptors": {
|
|
1189
|
+
"additive-symbols": "[<integer>&&<symbol>]#",
|
|
1190
|
+
"fallback": "<counter-style-name>",
|
|
1191
|
+
"negative": "<symbol> <symbol>?",
|
|
1192
|
+
"pad": "<integer>&&<symbol>",
|
|
1193
|
+
"prefix": "<symbol>",
|
|
1194
|
+
"range": "[[<integer>|infinite]{2}]#|auto",
|
|
1195
|
+
"speak-as": "auto|bullets|numbers|words|spell-out|<counter-style-name>",
|
|
1196
|
+
"suffix": "<symbol>",
|
|
1197
|
+
"symbols": "<symbol>+",
|
|
1198
|
+
"system": "cyclic|numeric|alphabetic|symbolic|additive|[fixed <integer>?]|[extends <counter-style-name>]"
|
|
1199
|
+
}
|
|
1200
|
+
},
|
|
1201
|
+
"document": {
|
|
1202
|
+
"prelude": "[<url>|url-prefix( <string> )|domain( <string> )|media-document( <string> )|regexp( <string> )]#",
|
|
1203
|
+
"descriptors": null
|
|
1204
|
+
},
|
|
1205
|
+
"font-face": {
|
|
1206
|
+
"prelude": null,
|
|
1207
|
+
"descriptors": {
|
|
1208
|
+
"ascent-override": "normal|<percentage>",
|
|
1209
|
+
"descent-override": "normal|<percentage>",
|
|
1210
|
+
"font-display": "auto|block|swap|fallback|optional",
|
|
1211
|
+
"font-family": "<family-name>",
|
|
1212
|
+
"font-feature-settings": "normal|<feature-tag-value>#",
|
|
1213
|
+
"font-stretch": "<font-stretch-absolute>{1,2}",
|
|
1214
|
+
"font-style": "normal|italic|oblique <angle>{0,2}",
|
|
1215
|
+
"font-variation-settings": "normal|[<string> <number>]#",
|
|
1216
|
+
"font-weight": "<font-weight-absolute>{1,2}",
|
|
1217
|
+
"line-gap-override": "normal|<percentage>",
|
|
1218
|
+
"size-adjust": "<percentage>",
|
|
1219
|
+
"src": "[<url> [format( <string># )]?|local( <family-name> )]#",
|
|
1220
|
+
"unicode-range": "<urange>#"
|
|
1221
|
+
}
|
|
1222
|
+
},
|
|
1223
|
+
"font-feature-values": {
|
|
1224
|
+
"prelude": "<family-name>#",
|
|
1225
|
+
"descriptors": null
|
|
1226
|
+
},
|
|
1227
|
+
"font-palette-values": {
|
|
1228
|
+
"prelude": "<dashed-ident>",
|
|
1229
|
+
"descriptors": {
|
|
1230
|
+
"base-palette": "light|dark|<integer [0,∞]>",
|
|
1231
|
+
"font-family": "<family-name>#",
|
|
1232
|
+
"override-colors": "[<integer [0,∞]> <color>]#"
|
|
1233
|
+
}
|
|
1234
|
+
},
|
|
1235
|
+
"import": {
|
|
1236
|
+
"prelude": "[<string>|<url>] [layer|layer( <layer-name> )]? [supports( [<supports-condition>|<declaration>] )]? <media-query-list>?",
|
|
1237
|
+
"descriptors": null
|
|
1238
|
+
},
|
|
1239
|
+
"keyframes": {
|
|
1240
|
+
"prelude": "<keyframes-name>",
|
|
1241
|
+
"descriptors": null
|
|
1242
|
+
},
|
|
1243
|
+
"layer": {
|
|
1244
|
+
"prelude": "[<layer-name>#|<layer-name>?]",
|
|
1245
|
+
"descriptors": null
|
|
1246
|
+
},
|
|
1247
|
+
"media": {
|
|
1248
|
+
"prelude": "<media-query-list>",
|
|
1249
|
+
"descriptors": null
|
|
1250
|
+
},
|
|
1251
|
+
"namespace": {
|
|
1252
|
+
"prelude": "<namespace-prefix>? [<string>|<url>]",
|
|
1253
|
+
"descriptors": null
|
|
1254
|
+
},
|
|
1255
|
+
"page": {
|
|
1256
|
+
"prelude": "<page-selector-list>",
|
|
1257
|
+
"descriptors": {
|
|
1258
|
+
"bleed": "auto|<length>",
|
|
1259
|
+
"marks": "none|[crop||cross]",
|
|
1260
|
+
"page-orientation": "upright|rotate-left|rotate-right",
|
|
1261
|
+
"size": "<length>{1,2}|auto|[<page-size>||[portrait|landscape]]"
|
|
1262
|
+
}
|
|
1263
|
+
},
|
|
1264
|
+
"position-try": {
|
|
1265
|
+
"prelude": "<dashed-ident>",
|
|
1266
|
+
"descriptors": {
|
|
1267
|
+
"top": "<'top'>",
|
|
1268
|
+
"left": "<'left'>",
|
|
1269
|
+
"bottom": "<'bottom'>",
|
|
1270
|
+
"right": "<'right'>",
|
|
1271
|
+
"inset-block-start": "<'inset-block-start'>",
|
|
1272
|
+
"inset-block-end": "<'inset-block-end'>",
|
|
1273
|
+
"inset-inline-start": "<'inset-inline-start'>",
|
|
1274
|
+
"inset-inline-end": "<'inset-inline-end'>",
|
|
1275
|
+
"inset-block": "<'inset-block'>",
|
|
1276
|
+
"inset-inline": "<'inset-inline'>",
|
|
1277
|
+
"inset": "<'inset'>",
|
|
1278
|
+
"margin-top": "<'margin-top'>",
|
|
1279
|
+
"margin-left": "<'margin-left'>",
|
|
1280
|
+
"margin-bottom": "<'margin-bottom'>",
|
|
1281
|
+
"margin-right": "<'margin-right'>",
|
|
1282
|
+
"margin-block-start": "<'margin-block-start'>",
|
|
1283
|
+
"margin-block-end": "<'margin-block-end'>",
|
|
1284
|
+
"margin-inline-start": "<'margin-inline-start'>",
|
|
1285
|
+
"margin-inline-end": "<'margin-inline-end'>",
|
|
1286
|
+
"margin": "<'margin'>",
|
|
1287
|
+
"margin-block": "<'margin-block'>",
|
|
1288
|
+
"margin-inline": "<'margin-inline'>",
|
|
1289
|
+
"width": "<'width'>",
|
|
1290
|
+
"height": "<'height'>",
|
|
1291
|
+
"min-width": "<'min-width'>",
|
|
1292
|
+
"min-height": "<'min-height'>",
|
|
1293
|
+
"max-width": "<'max-width'>",
|
|
1294
|
+
"max-height": "<'max-height'>",
|
|
1295
|
+
"block-size": "<'block-size'>",
|
|
1296
|
+
"inline-size": "<'inline-size'>",
|
|
1297
|
+
"min-block-size": "<'min-block-size'>",
|
|
1298
|
+
"min-inline-size": "<'min-inline-size'>",
|
|
1299
|
+
"max-block-size": "<'max-block-size'>",
|
|
1300
|
+
"max-inline-size": "<'max-inline-size'>",
|
|
1301
|
+
"align-self": "<'align-self'>|anchor-center",
|
|
1302
|
+
"justify-self": "<'justify-self'>|anchor-center"
|
|
1303
|
+
}
|
|
1304
|
+
},
|
|
1305
|
+
"property": {
|
|
1306
|
+
"prelude": "<custom-property-name>",
|
|
1307
|
+
"descriptors": {
|
|
1308
|
+
"inherits": "true|false",
|
|
1309
|
+
"initial-value": "<declaration-value>?",
|
|
1310
|
+
"syntax": "<string>"
|
|
1311
|
+
}
|
|
1312
|
+
},
|
|
1313
|
+
"scope": {
|
|
1314
|
+
"prelude": "[( <scope-start> )]? [to ( <scope-end> )]?",
|
|
1315
|
+
"descriptors": null
|
|
1316
|
+
},
|
|
1317
|
+
"starting-style": {
|
|
1318
|
+
"prelude": null,
|
|
1319
|
+
"descriptors": null
|
|
1320
|
+
},
|
|
1321
|
+
"supports": {
|
|
1322
|
+
"prelude": "<supports-condition>",
|
|
1323
|
+
"descriptors": null
|
|
1324
|
+
},
|
|
1325
|
+
"view-transition": {
|
|
1326
|
+
"prelude": null,
|
|
1327
|
+
"descriptors": {
|
|
1328
|
+
"navigation": "auto|none",
|
|
1329
|
+
"types": "none|<custom-ident>+"
|
|
1330
|
+
}
|
|
1331
|
+
},
|
|
1332
|
+
"container": {
|
|
1333
|
+
"prelude": "[<container-name>]? <container-condition>",
|
|
1334
|
+
"descriptors": null
|
|
1335
|
+
},
|
|
1336
|
+
"nest": {
|
|
1337
|
+
"prelude": "<complex-selector-list>",
|
|
1338
|
+
"descriptors": null
|
|
1339
|
+
}
|
|
1340
|
+
}
|
|
1341
|
+
};
|