cssstyle 5.3.4 → 5.3.6
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/lib/CSSStyleDeclaration.js +2 -2
- package/lib/generated/implementedProperties.js +245 -1096
- package/lib/generated/properties.js +1959 -2272
- package/lib/generated/propertyDefinitions.js +13033 -0
- package/lib/normalize.js +1259 -1095
- package/lib/parsers.js +588 -228
- package/lib/properties/background.js +89 -79
- package/lib/properties/backgroundAttachment.js +11 -14
- package/lib/properties/backgroundClip.js +11 -14
- package/lib/properties/backgroundColor.js +8 -13
- package/lib/properties/backgroundImage.js +11 -26
- package/lib/properties/backgroundOrigin.js +11 -14
- package/lib/properties/backgroundPosition.js +29 -18
- package/lib/properties/backgroundRepeat.js +11 -7
- package/lib/properties/backgroundSize.js +22 -16
- package/lib/properties/border.js +30 -87
- package/lib/properties/borderBottom.js +30 -86
- package/lib/properties/borderBottomColor.js +8 -14
- package/lib/properties/borderBottomStyle.js +8 -13
- package/lib/properties/borderBottomWidth.js +11 -23
- package/lib/properties/borderCollapse.js +4 -9
- package/lib/properties/borderColor.js +17 -23
- package/lib/properties/borderLeft.js +30 -86
- package/lib/properties/borderLeftColor.js +8 -14
- package/lib/properties/borderLeftStyle.js +8 -13
- package/lib/properties/borderLeftWidth.js +11 -23
- package/lib/properties/borderRight.js +30 -86
- package/lib/properties/borderRightColor.js +8 -14
- package/lib/properties/borderRightStyle.js +8 -13
- package/lib/properties/borderRightWidth.js +11 -23
- package/lib/properties/borderSpacing.js +12 -9
- package/lib/properties/borderStyle.js +17 -23
- package/lib/properties/borderTop.js +30 -86
- package/lib/properties/borderTopColor.js +8 -14
- package/lib/properties/borderTopStyle.js +8 -13
- package/lib/properties/borderTopWidth.js +11 -23
- package/lib/properties/borderWidth.js +18 -36
- package/lib/properties/bottom.js +6 -17
- package/lib/properties/clear.js +4 -9
- package/lib/properties/clip.js +11 -6
- package/lib/properties/color.js +4 -10
- package/lib/properties/display.js +11 -8
- package/lib/properties/flex.js +55 -53
- package/lib/properties/flexBasis.js +10 -20
- package/lib/properties/flexGrow.js +10 -19
- package/lib/properties/flexShrink.js +10 -19
- package/lib/properties/float.js +4 -9
- package/lib/properties/floodColor.js +4 -10
- package/lib/properties/font.js +46 -33
- package/lib/properties/fontFamily.js +16 -12
- package/lib/properties/fontSize.js +11 -22
- package/lib/properties/fontStyle.js +14 -8
- package/lib/properties/fontVariant.js +11 -18
- package/lib/properties/fontWeight.js +14 -25
- package/lib/properties/height.js +7 -17
- package/lib/properties/left.js +6 -17
- package/lib/properties/lightingColor.js +4 -10
- package/lib/properties/lineHeight.js +10 -24
- package/lib/properties/margin.js +14 -32
- package/lib/properties/marginBottom.js +10 -20
- package/lib/properties/marginLeft.js +10 -20
- package/lib/properties/marginRight.js +10 -20
- package/lib/properties/marginTop.js +10 -20
- package/lib/properties/opacity.js +6 -18
- package/lib/properties/outlineColor.js +4 -10
- package/lib/properties/padding.js +15 -30
- package/lib/properties/paddingBottom.js +11 -21
- package/lib/properties/paddingLeft.js +11 -21
- package/lib/properties/paddingRight.js +11 -21
- package/lib/properties/paddingTop.js +11 -21
- package/lib/properties/right.js +6 -17
- package/lib/properties/stopColor.js +4 -10
- package/lib/properties/top.js +7 -17
- package/lib/properties/webkitBorderAfterColor.js +4 -10
- package/lib/properties/webkitBorderBeforeColor.js +4 -10
- package/lib/properties/webkitBorderEndColor.js +4 -10
- package/lib/properties/webkitBorderStartColor.js +4 -10
- package/lib/properties/webkitColumnRuleColor.js +4 -10
- package/lib/properties/webkitTapHighlightColor.js +4 -10
- package/lib/properties/webkitTextEmphasisColor.js +4 -10
- package/lib/properties/webkitTextFillColor.js +4 -10
- package/lib/properties/webkitTextStrokeColor.js +4 -10
- package/lib/properties/width.js +7 -17
- package/lib/utils/propertyDescriptors.js +49 -13
- package/lib/utils/strings.js +6 -0
- package/package.json +16 -40
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// autogenerated - 2025-12-
|
|
2
|
+
// autogenerated - 2025-12-31
|
|
3
3
|
|
|
4
4
|
module.exports = new Map([
|
|
5
5
|
[
|
|
@@ -35,7 +35,6 @@ module.exports = new Map([
|
|
|
35
35
|
{
|
|
36
36
|
"name": "-webkit-text-fill-color",
|
|
37
37
|
"href": "https://compat.spec.whatwg.org/#propdef--webkit-text-fill-color",
|
|
38
|
-
"value": "<color>",
|
|
39
38
|
"initial": "currentcolor",
|
|
40
39
|
"appliesTo": "all elements",
|
|
41
40
|
"inherited": "yes",
|
|
@@ -48,7 +47,9 @@ module.exports = new Map([
|
|
|
48
47
|
"-webkit-text-fill-color",
|
|
49
48
|
"WebkitTextFillColor",
|
|
50
49
|
"webkitTextFillColor"
|
|
51
|
-
]
|
|
50
|
+
],
|
|
51
|
+
"syntax": "<color>",
|
|
52
|
+
"extended": []
|
|
52
53
|
}
|
|
53
54
|
],
|
|
54
55
|
[
|
|
@@ -56,7 +57,6 @@ module.exports = new Map([
|
|
|
56
57
|
{
|
|
57
58
|
"name": "-webkit-text-stroke-color",
|
|
58
59
|
"href": "https://compat.spec.whatwg.org/#propdef--webkit-text-stroke-color",
|
|
59
|
-
"value": "<color>",
|
|
60
60
|
"initial": "currentcolor",
|
|
61
61
|
"appliesTo": "all elements",
|
|
62
62
|
"inherited": "yes",
|
|
@@ -69,33 +69,35 @@ module.exports = new Map([
|
|
|
69
69
|
"-webkit-text-stroke-color",
|
|
70
70
|
"WebkitTextStrokeColor",
|
|
71
71
|
"webkitTextStrokeColor"
|
|
72
|
-
]
|
|
72
|
+
],
|
|
73
|
+
"syntax": "<color>",
|
|
74
|
+
"extended": []
|
|
73
75
|
}
|
|
74
76
|
],
|
|
75
77
|
[
|
|
76
78
|
"background",
|
|
77
79
|
{
|
|
78
80
|
"name": "background",
|
|
79
|
-
"href": "https://drafts.csswg.org/css-backgrounds-
|
|
80
|
-
"value": "<bg-layer>#? , <final-bg-layer>",
|
|
81
|
+
"href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background",
|
|
81
82
|
"initial": "see individual properties",
|
|
82
83
|
"appliesTo": "all elements",
|
|
83
84
|
"inherited": "no",
|
|
84
85
|
"percentages": "see individual properties",
|
|
85
86
|
"computedValue": "see individual properties",
|
|
86
|
-
"canonicalOrder": "per grammar",
|
|
87
87
|
"animationType": "see individual properties",
|
|
88
|
+
"canonicalOrder": "per grammar",
|
|
88
89
|
"styleDeclaration": [
|
|
89
90
|
"background"
|
|
90
|
-
]
|
|
91
|
+
],
|
|
92
|
+
"syntax": "<bg-layer>#? , <final-bg-layer>",
|
|
93
|
+
"extended": []
|
|
91
94
|
}
|
|
92
95
|
],
|
|
93
96
|
[
|
|
94
97
|
"background-attachment",
|
|
95
98
|
{
|
|
96
99
|
"name": "background-attachment",
|
|
97
|
-
"href": "https://drafts.csswg.org/css-backgrounds-
|
|
98
|
-
"value": "<attachment>#",
|
|
100
|
+
"href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-attachment",
|
|
99
101
|
"initial": "scroll",
|
|
100
102
|
"appliesTo": "all elements",
|
|
101
103
|
"inherited": "no",
|
|
@@ -103,83 +105,39 @@ module.exports = new Map([
|
|
|
103
105
|
"computedValue": "list, each item the keyword as specified",
|
|
104
106
|
"canonicalOrder": "per grammar",
|
|
105
107
|
"animationType": "discrete",
|
|
106
|
-
"values": [
|
|
107
|
-
{
|
|
108
|
-
"name": "fixed",
|
|
109
|
-
"prose": "The background is fixed with regard to the viewport. In paged media where there is no viewport, a fixed background is fixed with respect to the page box and therefore replicated on every page.",
|
|
110
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-attachment-fixed",
|
|
111
|
-
"type": "value",
|
|
112
|
-
"value": "fixed"
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
"name": "local",
|
|
116
|
-
"prose": "The background is fixed with regard to the box’s contents: if the box has a scrolling mechanism, the background scrolls with the box’s contents, and the background painting area and background positioning area are relative to the scrollable overflow area of the box rather than to the border framing them. Because the scrollable overflow area does not include the border area, for scroll containers the border-box value of background-clip may be treated the same as padding-box.",
|
|
117
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-attachment-local",
|
|
118
|
-
"type": "value",
|
|
119
|
-
"value": "local"
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"name": "scroll",
|
|
123
|
-
"prose": "The background is fixed with regard to the box itself and does not scroll with its contents. (It is effectively attached to the box’s border.)",
|
|
124
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-attachment-scroll",
|
|
125
|
-
"type": "value",
|
|
126
|
-
"value": "scroll"
|
|
127
|
-
}
|
|
128
|
-
],
|
|
129
108
|
"styleDeclaration": [
|
|
130
109
|
"background-attachment",
|
|
131
110
|
"backgroundAttachment"
|
|
132
|
-
]
|
|
111
|
+
],
|
|
112
|
+
"syntax": "<attachment>#",
|
|
113
|
+
"extended": []
|
|
133
114
|
}
|
|
134
115
|
],
|
|
135
116
|
[
|
|
136
117
|
"background-clip",
|
|
137
118
|
{
|
|
138
119
|
"name": "background-clip",
|
|
139
|
-
"href": "https://drafts.csswg.org/css-backgrounds-
|
|
140
|
-
"value": "<visual-box>#",
|
|
120
|
+
"href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-clip",
|
|
141
121
|
"initial": "border-box",
|
|
142
122
|
"appliesTo": "all elements",
|
|
143
123
|
"inherited": "no",
|
|
144
|
-
"percentages": "
|
|
145
|
-
"computedValue": "
|
|
124
|
+
"percentages": "n/a",
|
|
125
|
+
"computedValue": "as specified",
|
|
146
126
|
"canonicalOrder": "per grammar",
|
|
147
127
|
"animationType": "repeatable list",
|
|
148
|
-
"values": [
|
|
149
|
-
{
|
|
150
|
-
"name": "border-box",
|
|
151
|
-
"prose": "The background is painted within (clipped to) the border box.",
|
|
152
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-clip-border-box",
|
|
153
|
-
"type": "value",
|
|
154
|
-
"value": "border-box"
|
|
155
|
-
},
|
|
156
|
-
{
|
|
157
|
-
"name": "padding-box",
|
|
158
|
-
"prose": "The background is painted within (clipped to) the padding box.",
|
|
159
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-clip-padding-box",
|
|
160
|
-
"type": "value",
|
|
161
|
-
"value": "padding-box"
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
"name": "content-box",
|
|
165
|
-
"prose": "The background is painted within (clipped to) the content box.",
|
|
166
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-clip-content-box",
|
|
167
|
-
"type": "value",
|
|
168
|
-
"value": "content-box"
|
|
169
|
-
}
|
|
170
|
-
],
|
|
171
128
|
"styleDeclaration": [
|
|
172
129
|
"background-clip",
|
|
173
130
|
"backgroundClip"
|
|
174
|
-
]
|
|
131
|
+
],
|
|
132
|
+
"syntax": "<bg-clip>#",
|
|
133
|
+
"extended": []
|
|
175
134
|
}
|
|
176
135
|
],
|
|
177
136
|
[
|
|
178
137
|
"background-color",
|
|
179
138
|
{
|
|
180
139
|
"name": "background-color",
|
|
181
|
-
"href": "https://drafts.csswg.org/css-backgrounds-
|
|
182
|
-
"value": "<color>",
|
|
140
|
+
"href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-color",
|
|
183
141
|
"initial": "transparent",
|
|
184
142
|
"appliesTo": "all elements",
|
|
185
143
|
"inherited": "no",
|
|
@@ -190,15 +148,16 @@ module.exports = new Map([
|
|
|
190
148
|
"styleDeclaration": [
|
|
191
149
|
"background-color",
|
|
192
150
|
"backgroundColor"
|
|
193
|
-
]
|
|
151
|
+
],
|
|
152
|
+
"syntax": "<color>",
|
|
153
|
+
"extended": []
|
|
194
154
|
}
|
|
195
155
|
],
|
|
196
156
|
[
|
|
197
157
|
"background-image",
|
|
198
158
|
{
|
|
199
159
|
"name": "background-image",
|
|
200
|
-
"href": "https://drafts.csswg.org/css-backgrounds-
|
|
201
|
-
"value": "<bg-image>#",
|
|
160
|
+
"href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-image",
|
|
202
161
|
"initial": "none",
|
|
203
162
|
"appliesTo": "all elements",
|
|
204
163
|
"inherited": "no",
|
|
@@ -206,27 +165,19 @@ module.exports = new Map([
|
|
|
206
165
|
"computedValue": "list, each item either an <image> or the keyword none",
|
|
207
166
|
"canonicalOrder": "per grammar",
|
|
208
167
|
"animationType": "discrete",
|
|
209
|
-
"values": [
|
|
210
|
-
{
|
|
211
|
-
"name": "none",
|
|
212
|
-
"prose": "A value of none counts as a background image layer but draws nothing. An image that is empty (zero width or zero height), that fails to download, or that cannot be displayed (e.g., because it is not in a supported image format) likewise counts as a layer but draws nothing.",
|
|
213
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-image-none",
|
|
214
|
-
"type": "value",
|
|
215
|
-
"value": "none"
|
|
216
|
-
}
|
|
217
|
-
],
|
|
218
168
|
"styleDeclaration": [
|
|
219
169
|
"background-image",
|
|
220
170
|
"backgroundImage"
|
|
221
|
-
]
|
|
171
|
+
],
|
|
172
|
+
"syntax": "<bg-image>#",
|
|
173
|
+
"extended": []
|
|
222
174
|
}
|
|
223
175
|
],
|
|
224
176
|
[
|
|
225
177
|
"background-origin",
|
|
226
178
|
{
|
|
227
179
|
"name": "background-origin",
|
|
228
|
-
"href": "https://drafts.csswg.org/css-backgrounds-
|
|
229
|
-
"value": "<visual-box>#",
|
|
180
|
+
"href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-origin",
|
|
230
181
|
"initial": "padding-box",
|
|
231
182
|
"appliesTo": "all elements",
|
|
232
183
|
"inherited": "no",
|
|
@@ -234,111 +185,39 @@ module.exports = new Map([
|
|
|
234
185
|
"computedValue": "list, each item a keyword as specified",
|
|
235
186
|
"canonicalOrder": "per grammar",
|
|
236
187
|
"animationType": "repeatable list",
|
|
237
|
-
"values": [
|
|
238
|
-
{
|
|
239
|
-
"name": "padding-box",
|
|
240
|
-
"prose": "The position is relative to the padding box. (For single boxes 0 0 is the upper left corner of the padding edge, 100% 100% is the lower right corner.)",
|
|
241
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-origin-padding-box",
|
|
242
|
-
"type": "value",
|
|
243
|
-
"value": "padding-box"
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"name": "border-box",
|
|
247
|
-
"prose": "The position is relative to the border box.",
|
|
248
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-origin-border-box",
|
|
249
|
-
"type": "value",
|
|
250
|
-
"value": "border-box"
|
|
251
|
-
},
|
|
252
|
-
{
|
|
253
|
-
"name": "content-box",
|
|
254
|
-
"prose": "The position is relative to the content box.",
|
|
255
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-origin-content-box",
|
|
256
|
-
"type": "value",
|
|
257
|
-
"value": "content-box"
|
|
258
|
-
}
|
|
259
|
-
],
|
|
260
188
|
"styleDeclaration": [
|
|
261
189
|
"background-origin",
|
|
262
190
|
"backgroundOrigin"
|
|
263
|
-
]
|
|
191
|
+
],
|
|
192
|
+
"syntax": "<visual-box>#",
|
|
193
|
+
"extended": []
|
|
264
194
|
}
|
|
265
195
|
],
|
|
266
196
|
[
|
|
267
197
|
"background-position",
|
|
268
198
|
{
|
|
269
199
|
"name": "background-position",
|
|
270
|
-
"href": "https://drafts.csswg.org/css-backgrounds-
|
|
271
|
-
"value": "<bg-position>#",
|
|
200
|
+
"href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-position",
|
|
272
201
|
"initial": "0% 0%",
|
|
273
202
|
"appliesTo": "all elements",
|
|
274
203
|
"inherited": "no",
|
|
275
204
|
"percentages": "refer to size of background positioning area minus size of background image; see text",
|
|
276
|
-
"computedValue": "list, each item a pair of offsets (horizontal and vertical) from the top left origin each given as a computed <length-percentage> value",
|
|
205
|
+
"computedValue": "a list, each item a pair of offsets (horizontal and vertical) from the top left origin, each offset given as a computed <length-percentage> value",
|
|
277
206
|
"canonicalOrder": "per grammar",
|
|
278
207
|
"animationType": "repeatable list",
|
|
279
|
-
"values": [
|
|
280
|
-
{
|
|
281
|
-
"name": "<percentage>",
|
|
282
|
-
"prose": "A percentage for the horizontal offset is relative to (width of background positioning area - width of background image). A percentage for the vertical offset is relative to (height of background positioning area - height of background image), where the size of the image is the size given by background-size. For example, with a value pair of 0% 0%, the upper left corner of the image is aligned with the upper left corner of, usually, the box’s padding edge. A value pair of 100% 100% places the lower right corner of the image in the lower right corner of the area. With a value pair of 75% 50%, the point 75% across and 50% down the image is to be placed at the point 75% across and 50% down the area. Diagram of the meaning of background-position: 75% 50%.",
|
|
283
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-position-percentage",
|
|
284
|
-
"type": "value",
|
|
285
|
-
"value": "<percentage>"
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
"name": "<length>",
|
|
289
|
-
"prose": "A length value gives a fixed length as the offset. For example, with a value pair of 2cm 1cm, the upper left corner of the image is placed 2cm to the right and 1cm below the upper left corner of the background positioning area.",
|
|
290
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-position-length",
|
|
291
|
-
"type": "value",
|
|
292
|
-
"value": "<length>"
|
|
293
|
-
},
|
|
294
|
-
{
|
|
295
|
-
"name": "top",
|
|
296
|
-
"prose": "Computes to 0% for the vertical position if one or two values are given, otherwise specifies the top edge as the origin for the next offset.",
|
|
297
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-position-top",
|
|
298
|
-
"type": "value",
|
|
299
|
-
"value": "top"
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
"name": "right",
|
|
303
|
-
"prose": "Computes to 100% for the horizontal position if one or two values are given, otherwise specifies the right edge as the origin for the next offset.",
|
|
304
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-position-right",
|
|
305
|
-
"type": "value",
|
|
306
|
-
"value": "right"
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
"name": "bottom",
|
|
310
|
-
"prose": "Computes to 100% for the vertical position if one or two values are given, otherwise specifies the bottom edge as the origin for the next offset.",
|
|
311
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-position-bottom",
|
|
312
|
-
"type": "value",
|
|
313
|
-
"value": "bottom"
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
"name": "left",
|
|
317
|
-
"prose": "Computes to 0% for the horizontal position if one or two values are given, otherwise specifies the left edge as the origin for the next offset.",
|
|
318
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-position-left",
|
|
319
|
-
"type": "value",
|
|
320
|
-
"value": "left"
|
|
321
|
-
},
|
|
322
|
-
{
|
|
323
|
-
"name": "center",
|
|
324
|
-
"prose": "Computes to 50% (left 50%) for the horizontal position if the horizontal position is not otherwise specified, or 50% (top 50%) for the vertical position if it is.",
|
|
325
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-position-center",
|
|
326
|
-
"type": "value",
|
|
327
|
-
"value": "center"
|
|
328
|
-
}
|
|
329
|
-
],
|
|
330
208
|
"styleDeclaration": [
|
|
331
209
|
"background-position",
|
|
332
210
|
"backgroundPosition"
|
|
333
|
-
]
|
|
211
|
+
],
|
|
212
|
+
"syntax": "<bg-position>#",
|
|
213
|
+
"extended": []
|
|
334
214
|
}
|
|
335
215
|
],
|
|
336
216
|
[
|
|
337
217
|
"background-repeat",
|
|
338
218
|
{
|
|
339
219
|
"name": "background-repeat",
|
|
340
|
-
"href": "https://drafts.csswg.org/css-backgrounds-
|
|
341
|
-
"value": "<repeat-style>#",
|
|
220
|
+
"href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-repeat",
|
|
342
221
|
"initial": "repeat",
|
|
343
222
|
"appliesTo": "all elements",
|
|
344
223
|
"inherited": "no",
|
|
@@ -346,62 +225,19 @@ module.exports = new Map([
|
|
|
346
225
|
"computedValue": "list, each item a pair of keywords, one per dimension",
|
|
347
226
|
"canonicalOrder": "per grammar",
|
|
348
227
|
"animationType": "discrete",
|
|
349
|
-
"values": [
|
|
350
|
-
{
|
|
351
|
-
"name": "repeat-x",
|
|
352
|
-
"prose": "Computes to repeat no-repeat.",
|
|
353
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-repeat-x",
|
|
354
|
-
"type": "value",
|
|
355
|
-
"value": "repeat-x"
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
"name": "repeat-y",
|
|
359
|
-
"prose": "Computes to no-repeat repeat.",
|
|
360
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-repeat-y",
|
|
361
|
-
"type": "value",
|
|
362
|
-
"value": "repeat-y"
|
|
363
|
-
},
|
|
364
|
-
{
|
|
365
|
-
"name": "repeat",
|
|
366
|
-
"prose": "The image is repeated in this direction as often as needed to cover the background painting area.",
|
|
367
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-repeat",
|
|
368
|
-
"type": "value",
|
|
369
|
-
"value": "repeat"
|
|
370
|
-
},
|
|
371
|
-
{
|
|
372
|
-
"name": "space",
|
|
373
|
-
"prose": "The image is repeated as often as will fit within the background positioning area without being clipped, and then the images are spaced out to fill the area. The first and last images touch the edges of the area. If the background painting area is larger than the background positioning area, then the pattern repeats to fill the background painting area. The value of background-position for this direction is ignored unless there is not enough space for two copies of the image in this axis, in which case only one image is placed, and background-position determines its position in this axis.",
|
|
374
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-space",
|
|
375
|
-
"type": "value",
|
|
376
|
-
"value": "space"
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
"name": "round",
|
|
380
|
-
"prose": "The image is repeated as often as will fit within the background positioning area. If it doesn’t fit a whole number of times, it is rescaled so that it does. See the formula under background-size. If the background painting area is larger than the background positioning area, then the pattern repeats to fill the background painting area.",
|
|
381
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-round",
|
|
382
|
-
"type": "value",
|
|
383
|
-
"value": "round"
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
"name": "no-repeat",
|
|
387
|
-
"prose": "The image is placed once and not repeated in this direction.",
|
|
388
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-no-repeat",
|
|
389
|
-
"type": "value",
|
|
390
|
-
"value": "no-repeat"
|
|
391
|
-
}
|
|
392
|
-
],
|
|
393
228
|
"styleDeclaration": [
|
|
394
229
|
"background-repeat",
|
|
395
230
|
"backgroundRepeat"
|
|
396
|
-
]
|
|
231
|
+
],
|
|
232
|
+
"syntax": "<repeat-style>#",
|
|
233
|
+
"extended": []
|
|
397
234
|
}
|
|
398
235
|
],
|
|
399
236
|
[
|
|
400
237
|
"background-size",
|
|
401
238
|
{
|
|
402
239
|
"name": "background-size",
|
|
403
|
-
"href": "https://drafts.csswg.org/css-backgrounds-
|
|
404
|
-
"value": "<bg-size>#",
|
|
240
|
+
"href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-size",
|
|
405
241
|
"initial": "auto",
|
|
406
242
|
"appliesTo": "all elements",
|
|
407
243
|
"inherited": "no",
|
|
@@ -409,40 +245,12 @@ module.exports = new Map([
|
|
|
409
245
|
"computedValue": "list, each item a pair of sizes (one per axis) each represented as either a keyword or a computed <length-percentage> value",
|
|
410
246
|
"canonicalOrder": "per grammar",
|
|
411
247
|
"animationType": "repeatable list",
|
|
412
|
-
"values": [
|
|
413
|
-
{
|
|
414
|
-
"name": "contain",
|
|
415
|
-
"prose": "Scale the image, while preserving its natural aspect ratio (if any), to the largest size such that both its width and its height can fit inside the background positioning area.",
|
|
416
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-size-contain",
|
|
417
|
-
"type": "value",
|
|
418
|
-
"value": "contain"
|
|
419
|
-
},
|
|
420
|
-
{
|
|
421
|
-
"name": "cover",
|
|
422
|
-
"prose": "Scale the image, while preserving its natural aspect ratio (if any), to the smallest size such that both its width and its height can completely cover the background positioning area.",
|
|
423
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-size-cover",
|
|
424
|
-
"type": "value",
|
|
425
|
-
"value": "cover"
|
|
426
|
-
},
|
|
427
|
-
{
|
|
428
|
-
"name": "<length-percentage [0,∞]>",
|
|
429
|
-
"prose": "The first value gives the width of the corresponding image, the second value its height. If only one value is given the second is assumed to be auto. A <percentage> is relative to the background positioning area. An auto value for one dimension is resolved by using the image’s natural aspect ratio and the size of the other dimension, or failing that, using the image’s natural size, or failing that, treating it as 100%. If both values are auto then the natural width and/or height of the image should be used, if any, the missing dimension (if any) behaving as auto as described above. If the image has neither natural size, its size is determined as for contain. Negative values are invalid.",
|
|
430
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-size-length-percentage-0",
|
|
431
|
-
"type": "value",
|
|
432
|
-
"value": "<length-percentage [0,∞]>"
|
|
433
|
-
},
|
|
434
|
-
{
|
|
435
|
-
"name": "auto",
|
|
436
|
-
"prose": "The first value gives the width of the corresponding image, the second value its height. If only one value is given the second is assumed to be auto. A <percentage> is relative to the background positioning area. An auto value for one dimension is resolved by using the image’s natural aspect ratio and the size of the other dimension, or failing that, using the image’s natural size, or failing that, treating it as 100%. If both values are auto then the natural width and/or height of the image should be used, if any, the missing dimension (if any) behaving as auto as described above. If the image has neither natural size, its size is determined as for contain. Negative values are invalid.",
|
|
437
|
-
"href": "https://drafts.csswg.org/css-backgrounds-3/#valdef-background-size-auto",
|
|
438
|
-
"type": "value",
|
|
439
|
-
"value": "auto"
|
|
440
|
-
}
|
|
441
|
-
],
|
|
442
248
|
"styleDeclaration": [
|
|
443
249
|
"background-size",
|
|
444
250
|
"backgroundSize"
|
|
445
|
-
]
|
|
251
|
+
],
|
|
252
|
+
"syntax": "<bg-size>#",
|
|
253
|
+
"extended": []
|
|
446
254
|
}
|
|
447
255
|
],
|
|
448
256
|
[
|
|
@@ -450,7 +258,6 @@ module.exports = new Map([
|
|
|
450
258
|
{
|
|
451
259
|
"name": "border",
|
|
452
260
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border",
|
|
453
|
-
"value": "<line-width> || <line-style> || <color>",
|
|
454
261
|
"initial": "see individual properties",
|
|
455
262
|
"appliesTo": "see individual properties",
|
|
456
263
|
"inherited": "see individual properties",
|
|
@@ -460,7 +267,9 @@ module.exports = new Map([
|
|
|
460
267
|
"canonicalOrder": "per grammar",
|
|
461
268
|
"styleDeclaration": [
|
|
462
269
|
"border"
|
|
463
|
-
]
|
|
270
|
+
],
|
|
271
|
+
"syntax": "<line-width> || <line-style> || <color>",
|
|
272
|
+
"extended": []
|
|
464
273
|
}
|
|
465
274
|
],
|
|
466
275
|
[
|
|
@@ -468,7 +277,6 @@ module.exports = new Map([
|
|
|
468
277
|
{
|
|
469
278
|
"name": "border-bottom",
|
|
470
279
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-bottom",
|
|
471
|
-
"value": "<line-width> || <line-style> || <color>",
|
|
472
280
|
"initial": "See individual properties",
|
|
473
281
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
474
282
|
"inherited": "no",
|
|
@@ -479,7 +287,9 @@ module.exports = new Map([
|
|
|
479
287
|
"styleDeclaration": [
|
|
480
288
|
"border-bottom",
|
|
481
289
|
"borderBottom"
|
|
482
|
-
]
|
|
290
|
+
],
|
|
291
|
+
"syntax": "<line-width> || <line-style> || <color>",
|
|
292
|
+
"extended": []
|
|
483
293
|
}
|
|
484
294
|
],
|
|
485
295
|
[
|
|
@@ -487,7 +297,6 @@ module.exports = new Map([
|
|
|
487
297
|
{
|
|
488
298
|
"name": "border-bottom-color",
|
|
489
299
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-color",
|
|
490
|
-
"value": "<color> | <image-1D>",
|
|
491
300
|
"initial": "currentcolor",
|
|
492
301
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
493
302
|
"inherited": "no",
|
|
@@ -499,7 +308,9 @@ module.exports = new Map([
|
|
|
499
308
|
"styleDeclaration": [
|
|
500
309
|
"border-bottom-color",
|
|
501
310
|
"borderBottomColor"
|
|
502
|
-
]
|
|
311
|
+
],
|
|
312
|
+
"syntax": "<color> | <image-1D>",
|
|
313
|
+
"extended": []
|
|
503
314
|
}
|
|
504
315
|
],
|
|
505
316
|
[
|
|
@@ -507,7 +318,6 @@ module.exports = new Map([
|
|
|
507
318
|
{
|
|
508
319
|
"name": "border-bottom-style",
|
|
509
320
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-style",
|
|
510
|
-
"value": "<line-style>",
|
|
511
321
|
"initial": "none",
|
|
512
322
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
513
323
|
"inherited": "no",
|
|
@@ -519,7 +329,9 @@ module.exports = new Map([
|
|
|
519
329
|
"styleDeclaration": [
|
|
520
330
|
"border-bottom-style",
|
|
521
331
|
"borderBottomStyle"
|
|
522
|
-
]
|
|
332
|
+
],
|
|
333
|
+
"syntax": "<line-style>",
|
|
334
|
+
"extended": []
|
|
523
335
|
}
|
|
524
336
|
],
|
|
525
337
|
[
|
|
@@ -527,7 +339,6 @@ module.exports = new Map([
|
|
|
527
339
|
{
|
|
528
340
|
"name": "border-bottom-width",
|
|
529
341
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-width",
|
|
530
|
-
"value": "<line-width>",
|
|
531
342
|
"initial": "medium",
|
|
532
343
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
533
344
|
"inherited": "no",
|
|
@@ -539,7 +350,9 @@ module.exports = new Map([
|
|
|
539
350
|
"styleDeclaration": [
|
|
540
351
|
"border-bottom-width",
|
|
541
352
|
"borderBottomWidth"
|
|
542
|
-
]
|
|
353
|
+
],
|
|
354
|
+
"syntax": "<line-width>",
|
|
355
|
+
"extended": []
|
|
543
356
|
}
|
|
544
357
|
],
|
|
545
358
|
[
|
|
@@ -547,7 +360,6 @@ module.exports = new Map([
|
|
|
547
360
|
{
|
|
548
361
|
"name": "border-collapse",
|
|
549
362
|
"href": "https://drafts.csswg.org/css-tables-3/#propdef-border-collapse",
|
|
550
|
-
"value": "separate | collapse",
|
|
551
363
|
"initial": "separate",
|
|
552
364
|
"appliesTo": "table grid boxes",
|
|
553
365
|
"inherited": "yes",
|
|
@@ -558,7 +370,9 @@ module.exports = new Map([
|
|
|
558
370
|
"styleDeclaration": [
|
|
559
371
|
"border-collapse",
|
|
560
372
|
"borderCollapse"
|
|
561
|
-
]
|
|
373
|
+
],
|
|
374
|
+
"syntax": "separate | collapse",
|
|
375
|
+
"extended": []
|
|
562
376
|
}
|
|
563
377
|
],
|
|
564
378
|
[
|
|
@@ -566,7 +380,6 @@ module.exports = new Map([
|
|
|
566
380
|
{
|
|
567
381
|
"name": "border-color",
|
|
568
382
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-color",
|
|
569
|
-
"value": "[ <color> | <image-1D> ]{1,4}",
|
|
570
383
|
"initial": "see individual properties",
|
|
571
384
|
"appliesTo": "see individual properties",
|
|
572
385
|
"inherited": "see individual properties",
|
|
@@ -577,7 +390,9 @@ module.exports = new Map([
|
|
|
577
390
|
"styleDeclaration": [
|
|
578
391
|
"border-color",
|
|
579
392
|
"borderColor"
|
|
580
|
-
]
|
|
393
|
+
],
|
|
394
|
+
"syntax": "[ <color> | <image-1D> ]{1,4}",
|
|
395
|
+
"extended": []
|
|
581
396
|
}
|
|
582
397
|
],
|
|
583
398
|
[
|
|
@@ -585,7 +400,6 @@ module.exports = new Map([
|
|
|
585
400
|
{
|
|
586
401
|
"name": "border-left",
|
|
587
402
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-left",
|
|
588
|
-
"value": "<line-width> || <line-style> || <color>",
|
|
589
403
|
"initial": "See individual properties",
|
|
590
404
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
591
405
|
"inherited": "no",
|
|
@@ -596,7 +410,9 @@ module.exports = new Map([
|
|
|
596
410
|
"styleDeclaration": [
|
|
597
411
|
"border-left",
|
|
598
412
|
"borderLeft"
|
|
599
|
-
]
|
|
413
|
+
],
|
|
414
|
+
"syntax": "<line-width> || <line-style> || <color>",
|
|
415
|
+
"extended": []
|
|
600
416
|
}
|
|
601
417
|
],
|
|
602
418
|
[
|
|
@@ -604,7 +420,6 @@ module.exports = new Map([
|
|
|
604
420
|
{
|
|
605
421
|
"name": "border-left-color",
|
|
606
422
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-left-color",
|
|
607
|
-
"value": "<color> | <image-1D>",
|
|
608
423
|
"initial": "currentcolor",
|
|
609
424
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
610
425
|
"inherited": "no",
|
|
@@ -616,7 +431,9 @@ module.exports = new Map([
|
|
|
616
431
|
"styleDeclaration": [
|
|
617
432
|
"border-left-color",
|
|
618
433
|
"borderLeftColor"
|
|
619
|
-
]
|
|
434
|
+
],
|
|
435
|
+
"syntax": "<color> | <image-1D>",
|
|
436
|
+
"extended": []
|
|
620
437
|
}
|
|
621
438
|
],
|
|
622
439
|
[
|
|
@@ -624,7 +441,6 @@ module.exports = new Map([
|
|
|
624
441
|
{
|
|
625
442
|
"name": "border-left-style",
|
|
626
443
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-left-style",
|
|
627
|
-
"value": "<line-style>",
|
|
628
444
|
"initial": "none",
|
|
629
445
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
630
446
|
"inherited": "no",
|
|
@@ -636,7 +452,9 @@ module.exports = new Map([
|
|
|
636
452
|
"styleDeclaration": [
|
|
637
453
|
"border-left-style",
|
|
638
454
|
"borderLeftStyle"
|
|
639
|
-
]
|
|
455
|
+
],
|
|
456
|
+
"syntax": "<line-style>",
|
|
457
|
+
"extended": []
|
|
640
458
|
}
|
|
641
459
|
],
|
|
642
460
|
[
|
|
@@ -644,7 +462,6 @@ module.exports = new Map([
|
|
|
644
462
|
{
|
|
645
463
|
"name": "border-left-width",
|
|
646
464
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-left-width",
|
|
647
|
-
"value": "<line-width>",
|
|
648
465
|
"initial": "medium",
|
|
649
466
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
650
467
|
"inherited": "no",
|
|
@@ -656,7 +473,9 @@ module.exports = new Map([
|
|
|
656
473
|
"styleDeclaration": [
|
|
657
474
|
"border-left-width",
|
|
658
475
|
"borderLeftWidth"
|
|
659
|
-
]
|
|
476
|
+
],
|
|
477
|
+
"syntax": "<line-width>",
|
|
478
|
+
"extended": []
|
|
660
479
|
}
|
|
661
480
|
],
|
|
662
481
|
[
|
|
@@ -664,7 +483,6 @@ module.exports = new Map([
|
|
|
664
483
|
{
|
|
665
484
|
"name": "border-right",
|
|
666
485
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-right",
|
|
667
|
-
"value": "<line-width> || <line-style> || <color>",
|
|
668
486
|
"initial": "See individual properties",
|
|
669
487
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
670
488
|
"inherited": "no",
|
|
@@ -675,7 +493,9 @@ module.exports = new Map([
|
|
|
675
493
|
"styleDeclaration": [
|
|
676
494
|
"border-right",
|
|
677
495
|
"borderRight"
|
|
678
|
-
]
|
|
496
|
+
],
|
|
497
|
+
"syntax": "<line-width> || <line-style> || <color>",
|
|
498
|
+
"extended": []
|
|
679
499
|
}
|
|
680
500
|
],
|
|
681
501
|
[
|
|
@@ -683,7 +503,6 @@ module.exports = new Map([
|
|
|
683
503
|
{
|
|
684
504
|
"name": "border-right-color",
|
|
685
505
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-right-color",
|
|
686
|
-
"value": "<color> | <image-1D>",
|
|
687
506
|
"initial": "currentcolor",
|
|
688
507
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
689
508
|
"inherited": "no",
|
|
@@ -695,7 +514,9 @@ module.exports = new Map([
|
|
|
695
514
|
"styleDeclaration": [
|
|
696
515
|
"border-right-color",
|
|
697
516
|
"borderRightColor"
|
|
698
|
-
]
|
|
517
|
+
],
|
|
518
|
+
"syntax": "<color> | <image-1D>",
|
|
519
|
+
"extended": []
|
|
699
520
|
}
|
|
700
521
|
],
|
|
701
522
|
[
|
|
@@ -703,7 +524,6 @@ module.exports = new Map([
|
|
|
703
524
|
{
|
|
704
525
|
"name": "border-right-style",
|
|
705
526
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-right-style",
|
|
706
|
-
"value": "<line-style>",
|
|
707
527
|
"initial": "none",
|
|
708
528
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
709
529
|
"inherited": "no",
|
|
@@ -715,7 +535,9 @@ module.exports = new Map([
|
|
|
715
535
|
"styleDeclaration": [
|
|
716
536
|
"border-right-style",
|
|
717
537
|
"borderRightStyle"
|
|
718
|
-
]
|
|
538
|
+
],
|
|
539
|
+
"syntax": "<line-style>",
|
|
540
|
+
"extended": []
|
|
719
541
|
}
|
|
720
542
|
],
|
|
721
543
|
[
|
|
@@ -723,7 +545,6 @@ module.exports = new Map([
|
|
|
723
545
|
{
|
|
724
546
|
"name": "border-right-width",
|
|
725
547
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-right-width",
|
|
726
|
-
"value": "<line-width>",
|
|
727
548
|
"initial": "medium",
|
|
728
549
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
729
550
|
"inherited": "no",
|
|
@@ -735,7 +556,9 @@ module.exports = new Map([
|
|
|
735
556
|
"styleDeclaration": [
|
|
736
557
|
"border-right-width",
|
|
737
558
|
"borderRightWidth"
|
|
738
|
-
]
|
|
559
|
+
],
|
|
560
|
+
"syntax": "<line-width>",
|
|
561
|
+
"extended": []
|
|
739
562
|
}
|
|
740
563
|
],
|
|
741
564
|
[
|
|
@@ -743,7 +566,6 @@ module.exports = new Map([
|
|
|
743
566
|
{
|
|
744
567
|
"name": "border-spacing",
|
|
745
568
|
"href": "https://drafts.csswg.org/css-tables-3/#propdef-border-spacing",
|
|
746
|
-
"value": "<length>{1,2}",
|
|
747
569
|
"initial": "0px 0px",
|
|
748
570
|
"appliesTo": "table grid boxes when border-collapse is separate",
|
|
749
571
|
"inherited": "yes",
|
|
@@ -754,7 +576,9 @@ module.exports = new Map([
|
|
|
754
576
|
"styleDeclaration": [
|
|
755
577
|
"border-spacing",
|
|
756
578
|
"borderSpacing"
|
|
757
|
-
]
|
|
579
|
+
],
|
|
580
|
+
"syntax": "<length>{1,2}",
|
|
581
|
+
"extended": []
|
|
758
582
|
}
|
|
759
583
|
],
|
|
760
584
|
[
|
|
@@ -762,7 +586,6 @@ module.exports = new Map([
|
|
|
762
586
|
{
|
|
763
587
|
"name": "border-style",
|
|
764
588
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-style",
|
|
765
|
-
"value": "<'border-top-style'>{1,4}",
|
|
766
589
|
"initial": "see individual properties",
|
|
767
590
|
"appliesTo": "see individual properties",
|
|
768
591
|
"inherited": "see individual properties",
|
|
@@ -770,82 +593,12 @@ module.exports = new Map([
|
|
|
770
593
|
"computedValue": "see individual properties",
|
|
771
594
|
"animationType": "see individual properties",
|
|
772
595
|
"canonicalOrder": "per grammar",
|
|
773
|
-
"values": [
|
|
774
|
-
{
|
|
775
|
-
"name": "none",
|
|
776
|
-
"prose": "No border. Color and width are ignored (i.e., the border has width 0). Note this means that the initial value of border-image-width will also resolve to zero.",
|
|
777
|
-
"href": "https://drafts.csswg.org/css-borders-4/#valdef-line-style-none",
|
|
778
|
-
"type": "value",
|
|
779
|
-
"value": "none"
|
|
780
|
-
},
|
|
781
|
-
{
|
|
782
|
-
"name": "hidden",
|
|
783
|
-
"prose": "Same as none, but has different behavior in the border conflict resolution rules for border-collapsed tables [CSS2].",
|
|
784
|
-
"href": "https://drafts.csswg.org/css-borders-4/#valdef-line-style-hidden",
|
|
785
|
-
"type": "value",
|
|
786
|
-
"value": "hidden"
|
|
787
|
-
},
|
|
788
|
-
{
|
|
789
|
-
"name": "dotted",
|
|
790
|
-
"prose": "A series of round dots.",
|
|
791
|
-
"href": "https://drafts.csswg.org/css-borders-4/#valdef-line-style-dotted",
|
|
792
|
-
"type": "value",
|
|
793
|
-
"value": "dotted"
|
|
794
|
-
},
|
|
795
|
-
{
|
|
796
|
-
"name": "dashed",
|
|
797
|
-
"prose": "A series of square-ended dashes.",
|
|
798
|
-
"href": "https://drafts.csswg.org/css-borders-4/#valdef-line-style-dashed",
|
|
799
|
-
"type": "value",
|
|
800
|
-
"value": "dashed"
|
|
801
|
-
},
|
|
802
|
-
{
|
|
803
|
-
"name": "solid",
|
|
804
|
-
"prose": "A single line segment.",
|
|
805
|
-
"href": "https://drafts.csswg.org/css-borders-4/#valdef-line-style-solid",
|
|
806
|
-
"type": "value",
|
|
807
|
-
"value": "solid"
|
|
808
|
-
},
|
|
809
|
-
{
|
|
810
|
-
"name": "double",
|
|
811
|
-
"prose": "Two parallel solid lines with some space between them. (The thickness of the lines is not specified, but the sum of the lines and the space must equal border-width.)",
|
|
812
|
-
"href": "https://drafts.csswg.org/css-borders-4/#valdef-line-style-double",
|
|
813
|
-
"type": "value",
|
|
814
|
-
"value": "double"
|
|
815
|
-
},
|
|
816
|
-
{
|
|
817
|
-
"name": "groove",
|
|
818
|
-
"prose": "Looks as if it were carved in the canvas. (This is typically achieved by creating a “shadow” from two colors that are slightly lighter and darker than the specified border-color.)",
|
|
819
|
-
"href": "https://drafts.csswg.org/css-borders-4/#valdef-line-style-groove",
|
|
820
|
-
"type": "value",
|
|
821
|
-
"value": "groove"
|
|
822
|
-
},
|
|
823
|
-
{
|
|
824
|
-
"name": "ridge",
|
|
825
|
-
"prose": "Looks as if it were coming out of the canvas.",
|
|
826
|
-
"href": "https://drafts.csswg.org/css-borders-4/#valdef-line-style-ridge",
|
|
827
|
-
"type": "value",
|
|
828
|
-
"value": "ridge"
|
|
829
|
-
},
|
|
830
|
-
{
|
|
831
|
-
"name": "inset",
|
|
832
|
-
"prose": "Looks as if the content on the inside of the border is sunken into the canvas. Treated as ridge in the collapsing border model. [CSS2]",
|
|
833
|
-
"href": "https://drafts.csswg.org/css-borders-4/#valdef-line-style-inset",
|
|
834
|
-
"type": "value",
|
|
835
|
-
"value": "inset"
|
|
836
|
-
},
|
|
837
|
-
{
|
|
838
|
-
"name": "outset",
|
|
839
|
-
"prose": "Looks as if the content on the inside of the border is raised out of the canvas. Treated as groove in the collapsing border model. [CSS2]",
|
|
840
|
-
"href": "https://drafts.csswg.org/css-borders-4/#valdef-line-style-outset",
|
|
841
|
-
"type": "value",
|
|
842
|
-
"value": "outset"
|
|
843
|
-
}
|
|
844
|
-
],
|
|
845
596
|
"styleDeclaration": [
|
|
846
597
|
"border-style",
|
|
847
598
|
"borderStyle"
|
|
848
|
-
]
|
|
599
|
+
],
|
|
600
|
+
"syntax": "<'border-top-style'>{1,4}",
|
|
601
|
+
"extended": []
|
|
849
602
|
}
|
|
850
603
|
],
|
|
851
604
|
[
|
|
@@ -853,7 +606,6 @@ module.exports = new Map([
|
|
|
853
606
|
{
|
|
854
607
|
"name": "border-top",
|
|
855
608
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-top",
|
|
856
|
-
"value": "<line-width> || <line-style> || <color>",
|
|
857
609
|
"initial": "See individual properties",
|
|
858
610
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
859
611
|
"inherited": "no",
|
|
@@ -864,7 +616,9 @@ module.exports = new Map([
|
|
|
864
616
|
"styleDeclaration": [
|
|
865
617
|
"border-top",
|
|
866
618
|
"borderTop"
|
|
867
|
-
]
|
|
619
|
+
],
|
|
620
|
+
"syntax": "<line-width> || <line-style> || <color>",
|
|
621
|
+
"extended": []
|
|
868
622
|
}
|
|
869
623
|
],
|
|
870
624
|
[
|
|
@@ -872,7 +626,6 @@ module.exports = new Map([
|
|
|
872
626
|
{
|
|
873
627
|
"name": "border-top-color",
|
|
874
628
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-top-color",
|
|
875
|
-
"value": "<color> | <image-1D>",
|
|
876
629
|
"initial": "currentcolor",
|
|
877
630
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
878
631
|
"inherited": "no",
|
|
@@ -884,7 +637,9 @@ module.exports = new Map([
|
|
|
884
637
|
"styleDeclaration": [
|
|
885
638
|
"border-top-color",
|
|
886
639
|
"borderTopColor"
|
|
887
|
-
]
|
|
640
|
+
],
|
|
641
|
+
"syntax": "<color> | <image-1D>",
|
|
642
|
+
"extended": []
|
|
888
643
|
}
|
|
889
644
|
],
|
|
890
645
|
[
|
|
@@ -892,7 +647,6 @@ module.exports = new Map([
|
|
|
892
647
|
{
|
|
893
648
|
"name": "border-top-style",
|
|
894
649
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-top-style",
|
|
895
|
-
"value": "<line-style>",
|
|
896
650
|
"initial": "none",
|
|
897
651
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
898
652
|
"inherited": "no",
|
|
@@ -904,7 +658,9 @@ module.exports = new Map([
|
|
|
904
658
|
"styleDeclaration": [
|
|
905
659
|
"border-top-style",
|
|
906
660
|
"borderTopStyle"
|
|
907
|
-
]
|
|
661
|
+
],
|
|
662
|
+
"syntax": "<line-style>",
|
|
663
|
+
"extended": []
|
|
908
664
|
}
|
|
909
665
|
],
|
|
910
666
|
[
|
|
@@ -912,7 +668,6 @@ module.exports = new Map([
|
|
|
912
668
|
{
|
|
913
669
|
"name": "border-top-width",
|
|
914
670
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-top-width",
|
|
915
|
-
"value": "<line-width>",
|
|
916
671
|
"initial": "medium",
|
|
917
672
|
"appliesTo": "all elements except ruby base containers and ruby annotation containers",
|
|
918
673
|
"inherited": "no",
|
|
@@ -924,7 +679,9 @@ module.exports = new Map([
|
|
|
924
679
|
"styleDeclaration": [
|
|
925
680
|
"border-top-width",
|
|
926
681
|
"borderTopWidth"
|
|
927
|
-
]
|
|
682
|
+
],
|
|
683
|
+
"syntax": "<line-width>",
|
|
684
|
+
"extended": []
|
|
928
685
|
}
|
|
929
686
|
],
|
|
930
687
|
[
|
|
@@ -932,7 +689,6 @@ module.exports = new Map([
|
|
|
932
689
|
{
|
|
933
690
|
"name": "border-width",
|
|
934
691
|
"href": "https://drafts.csswg.org/css-borders-4/#propdef-border-width",
|
|
935
|
-
"value": "<'border-top-width'>{1,4}",
|
|
936
692
|
"initial": "see individual properties",
|
|
937
693
|
"appliesTo": "see individual properties",
|
|
938
694
|
"inherited": "see individual properties",
|
|
@@ -940,33 +696,12 @@ module.exports = new Map([
|
|
|
940
696
|
"computedValue": "see individual properties",
|
|
941
697
|
"animationType": "see individual properties",
|
|
942
698
|
"canonicalOrder": "per grammar",
|
|
943
|
-
"values": [
|
|
944
|
-
{
|
|
945
|
-
"name": "thin",
|
|
946
|
-
"prose": "Negative values are invalid. The thin, medium, and thick keywords are equivalent to 1px, 3px, and 5px, respectively.",
|
|
947
|
-
"href": "https://drafts.csswg.org/css-borders-4/#valdef-line-width-thin",
|
|
948
|
-
"type": "value",
|
|
949
|
-
"value": "thin"
|
|
950
|
-
},
|
|
951
|
-
{
|
|
952
|
-
"name": "medium",
|
|
953
|
-
"prose": "Negative values are invalid. The thin, medium, and thick keywords are equivalent to 1px, 3px, and 5px, respectively.",
|
|
954
|
-
"href": "https://drafts.csswg.org/css-borders-4/#valdef-line-width-medium",
|
|
955
|
-
"type": "value",
|
|
956
|
-
"value": "medium"
|
|
957
|
-
},
|
|
958
|
-
{
|
|
959
|
-
"name": "thick",
|
|
960
|
-
"prose": "Negative values are invalid. The thin, medium, and thick keywords are equivalent to 1px, 3px, and 5px, respectively.",
|
|
961
|
-
"href": "https://drafts.csswg.org/css-borders-4/#valdef-line-width-thick",
|
|
962
|
-
"type": "value",
|
|
963
|
-
"value": "thick"
|
|
964
|
-
}
|
|
965
|
-
],
|
|
966
699
|
"styleDeclaration": [
|
|
967
700
|
"border-width",
|
|
968
701
|
"borderWidth"
|
|
969
|
-
]
|
|
702
|
+
],
|
|
703
|
+
"syntax": "<'border-top-width'>{1,4}",
|
|
704
|
+
"extended": []
|
|
970
705
|
}
|
|
971
706
|
],
|
|
972
707
|
[
|
|
@@ -974,7 +709,6 @@ module.exports = new Map([
|
|
|
974
709
|
{
|
|
975
710
|
"name": "bottom",
|
|
976
711
|
"href": "https://drafts.csswg.org/css-position-3/#propdef-bottom",
|
|
977
|
-
"value": "auto | <length-percentage>",
|
|
978
712
|
"initial": "auto",
|
|
979
713
|
"appliesTo": "positioned elements",
|
|
980
714
|
"inherited": "no",
|
|
@@ -983,31 +717,12 @@ module.exports = new Map([
|
|
|
983
717
|
"canonicalOrder": "per grammar",
|
|
984
718
|
"animationType": "by computed value type",
|
|
985
719
|
"logicalPropertyGroup": "inset",
|
|
986
|
-
"values": [
|
|
987
|
-
{
|
|
988
|
-
"name": "<length>",
|
|
989
|
-
"prose": "The inset is a fixed distance from the reference edge. Negative values are allowed.",
|
|
990
|
-
"href": "https://drafts.csswg.org/css-position-3/#valdef-top-length",
|
|
991
|
-
"type": "value",
|
|
992
|
-
"value": "<length>"
|
|
993
|
-
},
|
|
994
|
-
{
|
|
995
|
-
"name": "<percentage>",
|
|
996
|
-
"prose": "The inset is a percentage relative to the containing block’s size in the corresponding axis (e.g. width for left or right, height for top and bottom). For sticky positioned boxes, the inset is instead relative to the relevant scrollport’s size. Negative values are allowed.",
|
|
997
|
-
"href": "https://drafts.csswg.org/css-position-3/#valdef-top-percentage",
|
|
998
|
-
"type": "value",
|
|
999
|
-
"value": "<percentage>"
|
|
1000
|
-
},
|
|
1001
|
-
{
|
|
1002
|
-
"name": "auto",
|
|
1003
|
-
"prose": "Represents an unconstrained inset; the exact meaning depends on the positioning scheme.",
|
|
1004
|
-
"href": "https://drafts.csswg.org/css-position-3/#valdef-top-auto",
|
|
1005
|
-
"type": "value",
|
|
1006
|
-
"value": "auto"
|
|
1007
|
-
}
|
|
1008
|
-
],
|
|
1009
720
|
"styleDeclaration": [
|
|
1010
721
|
"bottom"
|
|
722
|
+
],
|
|
723
|
+
"syntax": "auto | <length-percentage> | <anchor()> | <anchor-size()>",
|
|
724
|
+
"extended": [
|
|
725
|
+
"https://drafts.csswg.org/css-anchor-position-1/"
|
|
1011
726
|
]
|
|
1012
727
|
}
|
|
1013
728
|
],
|
|
@@ -1016,7 +731,6 @@ module.exports = new Map([
|
|
|
1016
731
|
{
|
|
1017
732
|
"name": "clear",
|
|
1018
733
|
"href": "https://drafts.csswg.org/css-page-floats-3/#propdef-clear",
|
|
1019
|
-
"value": "inline-start | inline-end | block-start | block-end | left | right | top | bottom | both-inline | both-block | both | none",
|
|
1020
734
|
"initial": "none",
|
|
1021
735
|
"appliesTo": "block-level elements, floats, regions, pages",
|
|
1022
736
|
"inherited": "no",
|
|
@@ -1024,95 +738,11 @@ module.exports = new Map([
|
|
|
1024
738
|
"computedValue": "specified keyword",
|
|
1025
739
|
"canonicalOrder": "per grammar",
|
|
1026
740
|
"animationType": "discrete",
|
|
1027
|
-
"values": [
|
|
1028
|
-
{
|
|
1029
|
-
"name": "inline-start",
|
|
1030
|
-
"prose": "If applied to an inline float, requires that the block-start outer edge of the box comes after the block-end outer edge of any inline-start-floats with an inline-start-float-reference that resulted from elements earlier in the source document. If applied to a page float, the float reference in which the page float is placed will be seen as full when determining whether it can host subsequent page floats that float in the inline-start direction.",
|
|
1031
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-clear-inline-start",
|
|
1032
|
-
"type": "value",
|
|
1033
|
-
"value": "inline-start"
|
|
1034
|
-
},
|
|
1035
|
-
{
|
|
1036
|
-
"name": "inline-end",
|
|
1037
|
-
"prose": "If applied to a block-level element or an inline float, requires that the block-start outer edge of the box comes after the block-end outer edge of any inline-end-floats with an inline-end-float-reference that resulted from elements earlier in the source document. If applied to a page float, the float reference in which the page float is placed will be seen as full when determining whether it can host subsequent page floats that float in the inline-end direction.",
|
|
1038
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-clear-inline-end",
|
|
1039
|
-
"type": "value",
|
|
1040
|
-
"value": "inline-end"
|
|
1041
|
-
},
|
|
1042
|
-
{
|
|
1043
|
-
"name": "block-start",
|
|
1044
|
-
"prose": "If applied to a block-level element or an inline float, behaves like inline-start. If applied to a page float, the float reference in which the page float is placed will be seen as full when determining whether it can host subsequent page floats that float in the block-start direction.",
|
|
1045
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-clear-block-start",
|
|
1046
|
-
"type": "value",
|
|
1047
|
-
"value": "block-start"
|
|
1048
|
-
},
|
|
1049
|
-
{
|
|
1050
|
-
"name": "block-end",
|
|
1051
|
-
"prose": "If applied to a block-level element or an inline float, behaves like inline-end. If applied to a page float, the float reference in which the page float is placed will be seen as full when determining whether it can host subsequent page floats that float in the block-end direction.",
|
|
1052
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-clear-block-end",
|
|
1053
|
-
"type": "value",
|
|
1054
|
-
"value": "block-end"
|
|
1055
|
-
},
|
|
1056
|
-
{
|
|
1057
|
-
"name": "left",
|
|
1058
|
-
"prose": "Behave like block-end, inline-start or inline-end depending on the float containing block’s direction and writing-mode.",
|
|
1059
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-clear-left",
|
|
1060
|
-
"type": "value",
|
|
1061
|
-
"value": "left"
|
|
1062
|
-
},
|
|
1063
|
-
{
|
|
1064
|
-
"name": "right",
|
|
1065
|
-
"prose": "Behave like block-start, inline-start or inline-end depending on the float containing block’s direction and writing-mode.",
|
|
1066
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-clear-right",
|
|
1067
|
-
"type": "value",
|
|
1068
|
-
"value": "right"
|
|
1069
|
-
},
|
|
1070
|
-
{
|
|
1071
|
-
"name": "top",
|
|
1072
|
-
"prose": "Behave like block-start or inline-start depending on the float containing block’s direction and writing-mode.",
|
|
1073
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-clear-top",
|
|
1074
|
-
"type": "value",
|
|
1075
|
-
"value": "top"
|
|
1076
|
-
},
|
|
1077
|
-
{
|
|
1078
|
-
"name": "bottom",
|
|
1079
|
-
"prose": "Behave like block-end or inline-end depending on the float containing block’s direction and writing-mode.",
|
|
1080
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-clear-bottom",
|
|
1081
|
-
"type": "value",
|
|
1082
|
-
"value": "bottom"
|
|
1083
|
-
},
|
|
1084
|
-
{
|
|
1085
|
-
"name": "both-inline",
|
|
1086
|
-
"prose": "Behave like inline-start and inline-end.",
|
|
1087
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-clear-both-inline",
|
|
1088
|
-
"type": "value",
|
|
1089
|
-
"value": "both-inline"
|
|
1090
|
-
},
|
|
1091
|
-
{
|
|
1092
|
-
"name": "both-block",
|
|
1093
|
-
"prose": "Behave like block-start and block-end.",
|
|
1094
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-clear-both-block",
|
|
1095
|
-
"type": "value",
|
|
1096
|
-
"value": "both-block"
|
|
1097
|
-
},
|
|
1098
|
-
{
|
|
1099
|
-
"name": "both",
|
|
1100
|
-
"prose": "Behave like both-inline.",
|
|
1101
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-clear-both",
|
|
1102
|
-
"type": "value",
|
|
1103
|
-
"value": "both"
|
|
1104
|
-
},
|
|
1105
|
-
{
|
|
1106
|
-
"name": "all",
|
|
1107
|
-
"prose": "Behave like both-block and both-inline.",
|
|
1108
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-clear-all",
|
|
1109
|
-
"type": "value",
|
|
1110
|
-
"value": "all"
|
|
1111
|
-
}
|
|
1112
|
-
],
|
|
1113
741
|
"styleDeclaration": [
|
|
1114
742
|
"clear"
|
|
1115
|
-
]
|
|
743
|
+
],
|
|
744
|
+
"syntax": "inline-start | inline-end | block-start | block-end | left | right | top | bottom | both-inline | both-block | both | none",
|
|
745
|
+
"extended": []
|
|
1116
746
|
}
|
|
1117
747
|
],
|
|
1118
748
|
[
|
|
@@ -1120,7 +750,6 @@ module.exports = new Map([
|
|
|
1120
750
|
{
|
|
1121
751
|
"name": "clip",
|
|
1122
752
|
"href": "https://drafts.fxtf.org/css-masking-1/#propdef-clip",
|
|
1123
|
-
"value": "<rect()> | auto",
|
|
1124
753
|
"initial": "auto",
|
|
1125
754
|
"appliesTo": "Absolutely positioned elements. In SVG, it applies to elements which establish a new viewport, pattern elements and mask elements.",
|
|
1126
755
|
"inherited": "no",
|
|
@@ -1129,41 +758,11 @@ module.exports = new Map([
|
|
|
1129
758
|
"canonicalOrder": "per grammar",
|
|
1130
759
|
"animationType": "by computed value",
|
|
1131
760
|
"media": "visual",
|
|
1132
|
-
"values": [
|
|
1133
|
-
{
|
|
1134
|
-
"name": "rect()",
|
|
1135
|
-
"value": "rect( <top>, <right>, <bottom>, <left> )",
|
|
1136
|
-
"href": "https://drafts.fxtf.org/css-masking-1/#funcdef-clip-rect",
|
|
1137
|
-
"type": "function"
|
|
1138
|
-
},
|
|
1139
|
-
{
|
|
1140
|
-
"name": "<top>",
|
|
1141
|
-
"prose": "<top>, <right>, <bottom>, and <left> may either have a <length> value or auto. Negative lengths are permitted. The value auto means that a given edge of the clipping region will be the same as the edge of the element’s generated border box (i.e., auto means the same as 0 for <top> and <left>, the same as the used value of the height plus the sum of vertical padding and border widths for <bottom>, and the same as the used value of the width plus the sum of the horizontal padding and border widths for <right>, such that four auto values result in the clipping region being the same as the element’s border box).",
|
|
1142
|
-
"href": "https://drafts.fxtf.org/css-masking-1/#typedef-clip-top",
|
|
1143
|
-
"type": "type"
|
|
1144
|
-
},
|
|
1145
|
-
{
|
|
1146
|
-
"name": "<right>",
|
|
1147
|
-
"prose": "<top>, <right>, <bottom>, and <left> may either have a <length> value or auto. Negative lengths are permitted. The value auto means that a given edge of the clipping region will be the same as the edge of the element’s generated border box (i.e., auto means the same as 0 for <top> and <left>, the same as the used value of the height plus the sum of vertical padding and border widths for <bottom>, and the same as the used value of the width plus the sum of the horizontal padding and border widths for <right>, such that four auto values result in the clipping region being the same as the element’s border box).",
|
|
1148
|
-
"href": "https://drafts.fxtf.org/css-masking-1/#typedef-clip-right",
|
|
1149
|
-
"type": "type"
|
|
1150
|
-
},
|
|
1151
|
-
{
|
|
1152
|
-
"name": "<bottom>",
|
|
1153
|
-
"prose": "<top>, <right>, <bottom>, and <left> may either have a <length> value or auto. Negative lengths are permitted. The value auto means that a given edge of the clipping region will be the same as the edge of the element’s generated border box (i.e., auto means the same as 0 for <top> and <left>, the same as the used value of the height plus the sum of vertical padding and border widths for <bottom>, and the same as the used value of the width plus the sum of the horizontal padding and border widths for <right>, such that four auto values result in the clipping region being the same as the element’s border box).",
|
|
1154
|
-
"href": "https://drafts.fxtf.org/css-masking-1/#typedef-clip-bottom",
|
|
1155
|
-
"type": "type"
|
|
1156
|
-
},
|
|
1157
|
-
{
|
|
1158
|
-
"name": "<left>",
|
|
1159
|
-
"prose": "<top>, <right>, <bottom>, and <left> may either have a <length> value or auto. Negative lengths are permitted. The value auto means that a given edge of the clipping region will be the same as the edge of the element’s generated border box (i.e., auto means the same as 0 for <top> and <left>, the same as the used value of the height plus the sum of vertical padding and border widths for <bottom>, and the same as the used value of the width plus the sum of the horizontal padding and border widths for <right>, such that four auto values result in the clipping region being the same as the element’s border box).",
|
|
1160
|
-
"href": "https://drafts.fxtf.org/css-masking-1/#typedef-clip-left",
|
|
1161
|
-
"type": "type"
|
|
1162
|
-
}
|
|
1163
|
-
],
|
|
1164
761
|
"styleDeclaration": [
|
|
1165
762
|
"clip"
|
|
1166
|
-
]
|
|
763
|
+
],
|
|
764
|
+
"syntax": "<rect()> | auto",
|
|
765
|
+
"extended": []
|
|
1167
766
|
}
|
|
1168
767
|
],
|
|
1169
768
|
[
|
|
@@ -1171,7 +770,6 @@ module.exports = new Map([
|
|
|
1171
770
|
{
|
|
1172
771
|
"name": "color",
|
|
1173
772
|
"href": "https://drafts.csswg.org/css-color-4/#propdef-color",
|
|
1174
|
-
"value": "<color>",
|
|
1175
773
|
"initial": "CanvasText",
|
|
1176
774
|
"appliesTo": "all elements and text",
|
|
1177
775
|
"inherited": "yes",
|
|
@@ -1181,16 +779,29 @@ module.exports = new Map([
|
|
|
1181
779
|
"animationType": "by computed value type",
|
|
1182
780
|
"styleDeclaration": [
|
|
1183
781
|
"color"
|
|
1184
|
-
]
|
|
782
|
+
],
|
|
783
|
+
"syntax": "<color>",
|
|
784
|
+
"extended": []
|
|
1185
785
|
}
|
|
1186
786
|
],
|
|
1187
787
|
[
|
|
1188
788
|
"display",
|
|
1189
789
|
{
|
|
1190
790
|
"name": "display",
|
|
1191
|
-
"
|
|
791
|
+
"href": "https://drafts.csswg.org/css-display-4/#propdef-display",
|
|
792
|
+
"initial": "inline",
|
|
793
|
+
"appliesTo": "all elements",
|
|
794
|
+
"inherited": "no",
|
|
795
|
+
"percentages": "n/a",
|
|
796
|
+
"computedValue": "a pair of keywords representing the inner and outer display types plus optional list-item flag, or a <display-internal> or <display-box> keyword; see prose in a variety of specs for computation rules",
|
|
797
|
+
"canonicalOrder": "per grammar",
|
|
798
|
+
"animationType": "see § 2.9 Animating and Interpolating display",
|
|
1192
799
|
"styleDeclaration": [
|
|
1193
800
|
"display"
|
|
801
|
+
],
|
|
802
|
+
"syntax": "[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy> | <display-outside> || [ <display-inside> | math ]",
|
|
803
|
+
"extended": [
|
|
804
|
+
"https://w3c.github.io/mathml-core/"
|
|
1194
805
|
]
|
|
1195
806
|
}
|
|
1196
807
|
],
|
|
@@ -1199,7 +810,6 @@ module.exports = new Map([
|
|
|
1199
810
|
{
|
|
1200
811
|
"name": "flex",
|
|
1201
812
|
"href": "https://drafts.csswg.org/css-flexbox-1/#propdef-flex",
|
|
1202
|
-
"value": "none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]",
|
|
1203
813
|
"initial": "0 1 auto",
|
|
1204
814
|
"appliesTo": "flex items",
|
|
1205
815
|
"inherited": "no",
|
|
@@ -1207,39 +817,11 @@ module.exports = new Map([
|
|
|
1207
817
|
"computedValue": "see individual properties",
|
|
1208
818
|
"animationType": "by computed value type",
|
|
1209
819
|
"canonicalOrder": "per grammar",
|
|
1210
|
-
"values": [
|
|
1211
|
-
{
|
|
1212
|
-
"name": "<'flex-grow'>",
|
|
1213
|
-
"prose": "This <number [0,∞]> component sets flex-grow longhand and specifies the flex grow factor, which determines how much the flex item will grow relative to the rest of the flex items in the flex container when positive free space is distributed. When omitted, it is set to 1.",
|
|
1214
|
-
"href": "https://drafts.csswg.org/css-flexbox-1/#valdef-flex-flex-grow",
|
|
1215
|
-
"type": "value",
|
|
1216
|
-
"value": "<'flex-grow'>"
|
|
1217
|
-
},
|
|
1218
|
-
{
|
|
1219
|
-
"name": "<'flex-shrink'>",
|
|
1220
|
-
"prose": "This <number [0,∞]> component sets flex-shrink longhand and specifies the flex shrink factor, which determines how much the flex item will shrink relative to the rest of the flex items in the flex container when negative free space is distributed. When omitted, it is set to 1.",
|
|
1221
|
-
"href": "https://drafts.csswg.org/css-flexbox-1/#valdef-flex-flex-shrink",
|
|
1222
|
-
"type": "value",
|
|
1223
|
-
"value": "<'flex-shrink'>"
|
|
1224
|
-
},
|
|
1225
|
-
{
|
|
1226
|
-
"name": "<'flex-basis'>",
|
|
1227
|
-
"prose": "This component sets the flex-basis longhand, which specifies the flex basis: the initial main size of the flex item, before free space is distributed according to the flex factors. <'flex-basis'> accepts the same values as the width and height properties (except that auto is treated differently) plus the content keyword: When omitted from the flex shorthand, its specified value is 0.",
|
|
1228
|
-
"href": "https://drafts.csswg.org/css-flexbox-1/#valdef-flex-flex-basis",
|
|
1229
|
-
"type": "value",
|
|
1230
|
-
"value": "<'flex-basis'>"
|
|
1231
|
-
},
|
|
1232
|
-
{
|
|
1233
|
-
"name": "none",
|
|
1234
|
-
"prose": "The keyword none expands to 0 0 auto.",
|
|
1235
|
-
"href": "https://drafts.csswg.org/css-flexbox-1/#valdef-flex-none",
|
|
1236
|
-
"type": "value",
|
|
1237
|
-
"value": "none"
|
|
1238
|
-
}
|
|
1239
|
-
],
|
|
1240
820
|
"styleDeclaration": [
|
|
1241
821
|
"flex"
|
|
1242
|
-
]
|
|
822
|
+
],
|
|
823
|
+
"syntax": "none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]",
|
|
824
|
+
"extended": []
|
|
1243
825
|
}
|
|
1244
826
|
],
|
|
1245
827
|
[
|
|
@@ -1247,7 +829,6 @@ module.exports = new Map([
|
|
|
1247
829
|
{
|
|
1248
830
|
"name": "flex-basis",
|
|
1249
831
|
"href": "https://drafts.csswg.org/css-flexbox-1/#propdef-flex-basis",
|
|
1250
|
-
"value": "content | <'width'>",
|
|
1251
832
|
"initial": "auto",
|
|
1252
833
|
"appliesTo": "flex items",
|
|
1253
834
|
"inherited": "no",
|
|
@@ -1255,26 +836,12 @@ module.exports = new Map([
|
|
|
1255
836
|
"computedValue": "specified keyword or a computed <length-percentage> value",
|
|
1256
837
|
"canonicalOrder": "per grammar",
|
|
1257
838
|
"animationType": "by computed value type",
|
|
1258
|
-
"values": [
|
|
1259
|
-
{
|
|
1260
|
-
"name": "auto",
|
|
1261
|
-
"prose": "When specified on a flex item, the auto keyword retrieves the value of the main size property as the used flex-basis. If that value is itself auto, then the used value is content.",
|
|
1262
|
-
"href": "https://drafts.csswg.org/css-flexbox-1/#valdef-flex-basis-auto",
|
|
1263
|
-
"type": "value",
|
|
1264
|
-
"value": "auto"
|
|
1265
|
-
},
|
|
1266
|
-
{
|
|
1267
|
-
"name": "content",
|
|
1268
|
-
"prose": "Indicates an automatic size based on the flex item’s content. (This is typically equivalent to the max-content size, but with adjustments to handle preferred aspect ratios, intrinsic sizing constraints, and orthogonal flows; see details in § 9 Flex Layout Algorithm.)",
|
|
1269
|
-
"href": "https://drafts.csswg.org/css-flexbox-1/#valdef-flex-basis-content",
|
|
1270
|
-
"type": "value",
|
|
1271
|
-
"value": "content"
|
|
1272
|
-
}
|
|
1273
|
-
],
|
|
1274
839
|
"styleDeclaration": [
|
|
1275
840
|
"flex-basis",
|
|
1276
841
|
"flexBasis"
|
|
1277
|
-
]
|
|
842
|
+
],
|
|
843
|
+
"syntax": "content | <'width'>",
|
|
844
|
+
"extended": []
|
|
1278
845
|
}
|
|
1279
846
|
],
|
|
1280
847
|
[
|
|
@@ -1282,7 +849,6 @@ module.exports = new Map([
|
|
|
1282
849
|
{
|
|
1283
850
|
"name": "flex-grow",
|
|
1284
851
|
"href": "https://drafts.csswg.org/css-flexbox-1/#propdef-flex-grow",
|
|
1285
|
-
"value": "<number [0,∞]>",
|
|
1286
852
|
"initial": "0",
|
|
1287
853
|
"appliesTo": "flex items",
|
|
1288
854
|
"inherited": "no",
|
|
@@ -1290,19 +856,12 @@ module.exports = new Map([
|
|
|
1290
856
|
"computedValue": "specified number",
|
|
1291
857
|
"canonicalOrder": "per grammar",
|
|
1292
858
|
"animationType": "by computed value type",
|
|
1293
|
-
"values": [
|
|
1294
|
-
{
|
|
1295
|
-
"name": "<number>",
|
|
1296
|
-
"prose": "The flex-grow property sets the flex grow factor to the provided <number>. Negative values are not allowed.",
|
|
1297
|
-
"href": "https://drafts.csswg.org/css-flexbox-1/#valdef-flex-grow-number",
|
|
1298
|
-
"type": "value",
|
|
1299
|
-
"value": "<number>"
|
|
1300
|
-
}
|
|
1301
|
-
],
|
|
1302
859
|
"styleDeclaration": [
|
|
1303
860
|
"flex-grow",
|
|
1304
861
|
"flexGrow"
|
|
1305
|
-
]
|
|
862
|
+
],
|
|
863
|
+
"syntax": "<number [0,∞]>",
|
|
864
|
+
"extended": []
|
|
1306
865
|
}
|
|
1307
866
|
],
|
|
1308
867
|
[
|
|
@@ -1310,7 +869,6 @@ module.exports = new Map([
|
|
|
1310
869
|
{
|
|
1311
870
|
"name": "flex-shrink",
|
|
1312
871
|
"href": "https://drafts.csswg.org/css-flexbox-1/#propdef-flex-shrink",
|
|
1313
|
-
"value": "<number [0,∞]>",
|
|
1314
872
|
"initial": "1",
|
|
1315
873
|
"appliesTo": "flex items",
|
|
1316
874
|
"inherited": "no",
|
|
@@ -1318,19 +876,12 @@ module.exports = new Map([
|
|
|
1318
876
|
"computedValue": "specified value",
|
|
1319
877
|
"canonicalOrder": "per grammar",
|
|
1320
878
|
"animationType": "number",
|
|
1321
|
-
"values": [
|
|
1322
|
-
{
|
|
1323
|
-
"name": "<number>",
|
|
1324
|
-
"prose": "The flex-shrink property sets the flex shrink factor to the provided <number>. Negative values are not allowed.",
|
|
1325
|
-
"href": "https://drafts.csswg.org/css-flexbox-1/#valdef-flex-shrink-number",
|
|
1326
|
-
"type": "value",
|
|
1327
|
-
"value": "<number>"
|
|
1328
|
-
}
|
|
1329
|
-
],
|
|
1330
879
|
"styleDeclaration": [
|
|
1331
880
|
"flex-shrink",
|
|
1332
881
|
"flexShrink"
|
|
1333
|
-
]
|
|
882
|
+
],
|
|
883
|
+
"syntax": "<number [0,∞]>",
|
|
884
|
+
"extended": []
|
|
1334
885
|
}
|
|
1335
886
|
],
|
|
1336
887
|
[
|
|
@@ -1338,7 +889,6 @@ module.exports = new Map([
|
|
|
1338
889
|
{
|
|
1339
890
|
"name": "float",
|
|
1340
891
|
"href": "https://drafts.csswg.org/css-page-floats-3/#propdef-float",
|
|
1341
|
-
"value": "block-start | block-end | inline-start | inline-end | snap-block | <snap-block()> | snap-inline | <snap-inline()> | left | right | top | bottom | none",
|
|
1342
892
|
"initial": "none",
|
|
1343
893
|
"appliesTo": "all elements.",
|
|
1344
894
|
"inherited": "no",
|
|
@@ -1346,99 +896,12 @@ module.exports = new Map([
|
|
|
1346
896
|
"computedValue": "as specified",
|
|
1347
897
|
"canonicalOrder": "per grammar",
|
|
1348
898
|
"animationType": "by computed value type",
|
|
1349
|
-
"values": [
|
|
1350
|
-
{
|
|
1351
|
-
"name": "inline-start",
|
|
1352
|
-
"prose": "If the float reference is a line box, the element generates a box that is floated to the line-start outer edge of the float reference and content flows on the line-end side of the box. If the float reference is not a line box, the element generates a box that is floated to the line-start and block-start outer edges of the float reference.",
|
|
1353
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-float-inline-start",
|
|
1354
|
-
"type": "value",
|
|
1355
|
-
"value": "inline-start"
|
|
1356
|
-
},
|
|
1357
|
-
{
|
|
1358
|
-
"name": "inline-end",
|
|
1359
|
-
"prose": "If the float reference is a line box, the element generates a box that is floated to the line-ebd outer edge of the float reference and content flows on the line-start side of the box. If the float reference is not a line box, the element generates a box that is floated to the line-end and block-end outer edges of the float reference.",
|
|
1360
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-float-inline-end",
|
|
1361
|
-
"type": "value",
|
|
1362
|
-
"value": "inline-end"
|
|
1363
|
-
},
|
|
1364
|
-
{
|
|
1365
|
-
"name": "block-start",
|
|
1366
|
-
"prose": "If the float reference is a line box, block-start behaves like inline-start. If the float reference is not a line box, the element generates a box that is floated to the block-start and line-start outer edges of the float reference. The initial value of the max-width or max-height property that refers to the inline size of the float is '100%'. Content flows on the block-end side of the box.",
|
|
1367
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-float-block-start",
|
|
1368
|
-
"type": "value",
|
|
1369
|
-
"value": "block-start"
|
|
1370
|
-
},
|
|
1371
|
-
{
|
|
1372
|
-
"name": "block-end",
|
|
1373
|
-
"prose": "If the float reference is a line box, block-end behaves like inline-end. If the float reference is not a line box, the element generates a box that is floated to the block-end and line-end outer edges of the float reference. The initial value of the max-width or max-height property that refers to the inline size of the float is '100%'. Content flows on the block-start side of the box.",
|
|
1374
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-float-block-end",
|
|
1375
|
-
"type": "value",
|
|
1376
|
-
"value": "block-end"
|
|
1377
|
-
},
|
|
1378
|
-
{
|
|
1379
|
-
"name": "left",
|
|
1380
|
-
"prose": "If the float reference is a line box, behaves like inline-start or inline-end, whichever corresponds to line-left for the float reference. Otherwise, behaves like block-end, inline-start or inline-end depending on the float containing block’s direction and writing-mode.",
|
|
1381
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-float-left",
|
|
1382
|
-
"type": "value",
|
|
1383
|
-
"value": "left"
|
|
1384
|
-
},
|
|
1385
|
-
{
|
|
1386
|
-
"name": "right",
|
|
1387
|
-
"prose": "If the float reference is a line box, behaves like inline-start or inline-end, whichever corresponds to line-right for the float reference. Otherwise, behaves like block-start, inline-start or inline-end depending on the float containing block’s direction and writing-mode.",
|
|
1388
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-float-right",
|
|
1389
|
-
"type": "value",
|
|
1390
|
-
"value": "right"
|
|
1391
|
-
},
|
|
1392
|
-
{
|
|
1393
|
-
"name": "top",
|
|
1394
|
-
"prose": "Behave like block-start or inline-start depending on the float containing block’s direction and writing-mode.",
|
|
1395
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-float-top",
|
|
1396
|
-
"type": "value",
|
|
1397
|
-
"value": "top"
|
|
1398
|
-
},
|
|
1399
|
-
{
|
|
1400
|
-
"name": "bottom",
|
|
1401
|
-
"prose": "Behave like block-end or inline-end depending on the float containing block’s direction and writing-mode.",
|
|
1402
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-float-bottom",
|
|
1403
|
-
"type": "value",
|
|
1404
|
-
"value": "bottom"
|
|
1405
|
-
},
|
|
1406
|
-
{
|
|
1407
|
-
"name": "snap-block()",
|
|
1408
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#funcdef-float-snap-block",
|
|
1409
|
-
"type": "function",
|
|
1410
|
-
"value": "snap-block( <length> , [ start | end | near ]? )"
|
|
1411
|
-
},
|
|
1412
|
-
{
|
|
1413
|
-
"name": "snap-block",
|
|
1414
|
-
"prose": "Behaves as snap-block(2em, near)",
|
|
1415
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-float-snap-block",
|
|
1416
|
-
"type": "value",
|
|
1417
|
-
"value": "snap-block"
|
|
1418
|
-
},
|
|
1419
|
-
{
|
|
1420
|
-
"name": "snap-inline()",
|
|
1421
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#funcdef-float-snap-inline",
|
|
1422
|
-
"type": "function",
|
|
1423
|
-
"value": "snap-inline( <length> , [ left | right | near ]? )"
|
|
1424
|
-
},
|
|
1425
|
-
{
|
|
1426
|
-
"name": "snap-inline",
|
|
1427
|
-
"prose": "same as snap-inline(2em, near)",
|
|
1428
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-float-snap-inline",
|
|
1429
|
-
"type": "value",
|
|
1430
|
-
"value": "snap-inline"
|
|
1431
|
-
},
|
|
1432
|
-
{
|
|
1433
|
-
"name": "none",
|
|
1434
|
-
"prose": "The box is not floated.",
|
|
1435
|
-
"href": "https://drafts.csswg.org/css-page-floats-3/#valdef-float-none",
|
|
1436
|
-
"type": "value",
|
|
1437
|
-
"value": "none"
|
|
1438
|
-
}
|
|
1439
|
-
],
|
|
1440
899
|
"styleDeclaration": [
|
|
1441
900
|
"float"
|
|
901
|
+
],
|
|
902
|
+
"syntax": "block-start | block-end | inline-start | inline-end | snap-block | <snap-block()> | snap-inline | <snap-inline()> | left | right | top | bottom | none | footnote",
|
|
903
|
+
"extended": [
|
|
904
|
+
"https://drafts.csswg.org/css-gcpm-3/"
|
|
1442
905
|
]
|
|
1443
906
|
}
|
|
1444
907
|
],
|
|
@@ -1447,7 +910,6 @@ module.exports = new Map([
|
|
|
1447
910
|
{
|
|
1448
911
|
"name": "flood-color",
|
|
1449
912
|
"href": "https://drafts.fxtf.org/filter-effects-1/#propdef-flood-color",
|
|
1450
|
-
"value": "<color>",
|
|
1451
913
|
"initial": "black",
|
|
1452
914
|
"appliesTo": "feFlood and feDropShadow elements",
|
|
1453
915
|
"inherited": "no",
|
|
@@ -1459,7 +921,9 @@ module.exports = new Map([
|
|
|
1459
921
|
"styleDeclaration": [
|
|
1460
922
|
"flood-color",
|
|
1461
923
|
"floodColor"
|
|
1462
|
-
]
|
|
924
|
+
],
|
|
925
|
+
"syntax": "<color>",
|
|
926
|
+
"extended": []
|
|
1463
927
|
}
|
|
1464
928
|
],
|
|
1465
929
|
[
|
|
@@ -1467,7 +931,6 @@ module.exports = new Map([
|
|
|
1467
931
|
{
|
|
1468
932
|
"name": "font",
|
|
1469
933
|
"href": "https://drafts.csswg.org/css-fonts-4/#propdef-font",
|
|
1470
|
-
"value": "[ [ <'font-style'> || <font-variant-css2> || <'font-weight'> || <font-width-css3> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'># ] | <system-family-name>",
|
|
1471
934
|
"initial": "see individual properties",
|
|
1472
935
|
"appliesTo": "all elements and text",
|
|
1473
936
|
"inherited": "yes",
|
|
@@ -1475,53 +938,11 @@ module.exports = new Map([
|
|
|
1475
938
|
"computedValue": "see individual properties",
|
|
1476
939
|
"canonicalOrder": "per grammar",
|
|
1477
940
|
"animationType": "see individual properties",
|
|
1478
|
-
"values": [
|
|
1479
|
-
{
|
|
1480
|
-
"name": "caption",
|
|
1481
|
-
"prose": "The font used for captioned controls (e.g., buttons, drop-downs, etc.).",
|
|
1482
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-caption",
|
|
1483
|
-
"type": "value",
|
|
1484
|
-
"value": "caption"
|
|
1485
|
-
},
|
|
1486
|
-
{
|
|
1487
|
-
"name": "icon",
|
|
1488
|
-
"prose": "The font used to label icons.",
|
|
1489
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-icon",
|
|
1490
|
-
"type": "value",
|
|
1491
|
-
"value": "icon"
|
|
1492
|
-
},
|
|
1493
|
-
{
|
|
1494
|
-
"name": "menu",
|
|
1495
|
-
"prose": "The font used in menus (e.g., dropdown menus and menu lists).",
|
|
1496
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-menu",
|
|
1497
|
-
"type": "value",
|
|
1498
|
-
"value": "menu"
|
|
1499
|
-
},
|
|
1500
|
-
{
|
|
1501
|
-
"name": "message-box",
|
|
1502
|
-
"prose": "The font used in dialog boxes.",
|
|
1503
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-message-box",
|
|
1504
|
-
"type": "value",
|
|
1505
|
-
"value": "message-box"
|
|
1506
|
-
},
|
|
1507
|
-
{
|
|
1508
|
-
"name": "small-caption",
|
|
1509
|
-
"prose": "The font used for labeling small controls.",
|
|
1510
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-small-caption",
|
|
1511
|
-
"type": "value",
|
|
1512
|
-
"value": "small-caption"
|
|
1513
|
-
},
|
|
1514
|
-
{
|
|
1515
|
-
"name": "status-bar",
|
|
1516
|
-
"prose": "The font used in window status bars.",
|
|
1517
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-status-bar",
|
|
1518
|
-
"type": "value",
|
|
1519
|
-
"value": "status-bar"
|
|
1520
|
-
}
|
|
1521
|
-
],
|
|
1522
941
|
"styleDeclaration": [
|
|
1523
942
|
"font"
|
|
1524
|
-
]
|
|
943
|
+
],
|
|
944
|
+
"syntax": "[ [ <'font-style'> || <font-variant-css2> || <'font-weight'> || <font-width-css3> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'># ] | <system-family-name>",
|
|
945
|
+
"extended": []
|
|
1525
946
|
}
|
|
1526
947
|
],
|
|
1527
948
|
[
|
|
@@ -1529,7 +950,6 @@ module.exports = new Map([
|
|
|
1529
950
|
{
|
|
1530
951
|
"name": "font-family",
|
|
1531
952
|
"href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-family",
|
|
1532
|
-
"value": "[ <family-name> | <generic-family> ]#",
|
|
1533
953
|
"initial": "depends on user agent",
|
|
1534
954
|
"appliesTo": "all elements and text",
|
|
1535
955
|
"inherited": "yes",
|
|
@@ -1540,7 +960,9 @@ module.exports = new Map([
|
|
|
1540
960
|
"styleDeclaration": [
|
|
1541
961
|
"font-family",
|
|
1542
962
|
"fontFamily"
|
|
1543
|
-
]
|
|
963
|
+
],
|
|
964
|
+
"syntax": "[ <family-name> | <generic-family> ]#",
|
|
965
|
+
"extended": []
|
|
1544
966
|
}
|
|
1545
967
|
],
|
|
1546
968
|
[
|
|
@@ -1548,7 +970,6 @@ module.exports = new Map([
|
|
|
1548
970
|
{
|
|
1549
971
|
"name": "font-size",
|
|
1550
972
|
"href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-size",
|
|
1551
|
-
"value": "<absolute-size> | <relative-size> | <length-percentage [0,∞]> | math",
|
|
1552
973
|
"initial": "medium",
|
|
1553
974
|
"appliesTo": "all elements and text",
|
|
1554
975
|
"inherited": "yes",
|
|
@@ -1556,38 +977,12 @@ module.exports = new Map([
|
|
|
1556
977
|
"computedValue": "an absolute length",
|
|
1557
978
|
"canonicalOrder": "per grammar",
|
|
1558
979
|
"animationType": "by computed value type",
|
|
1559
|
-
"values": [
|
|
1560
|
-
{
|
|
1561
|
-
"name": "<absolute-size>",
|
|
1562
|
-
"value": "<absolute-size>",
|
|
1563
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-size-absolute-size",
|
|
1564
|
-
"type": "value"
|
|
1565
|
-
},
|
|
1566
|
-
{
|
|
1567
|
-
"name": "<relative-size>",
|
|
1568
|
-
"value": "<relative-size>",
|
|
1569
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-size-relative-size",
|
|
1570
|
-
"type": "value"
|
|
1571
|
-
},
|
|
1572
|
-
{
|
|
1573
|
-
"name": "<length-percentage [0,∞]>",
|
|
1574
|
-
"prose": "A length value specifies an absolute font size (independent of the user agent’s font table). Negative lengths are invalid. A percentage value specifies an absolute font size relative to the parent element’s computed font-size. Negative percentages are invalid.",
|
|
1575
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-size-length-percentage-0",
|
|
1576
|
-
"type": "value",
|
|
1577
|
-
"value": "<length-percentage [0,∞]>"
|
|
1578
|
-
},
|
|
1579
|
-
{
|
|
1580
|
-
"name": "math",
|
|
1581
|
-
"prose": "Special mathematical scaling rules must be applied when determining the computed value of the font-size property.",
|
|
1582
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-size-math",
|
|
1583
|
-
"type": "value",
|
|
1584
|
-
"value": "math"
|
|
1585
|
-
}
|
|
1586
|
-
],
|
|
1587
980
|
"styleDeclaration": [
|
|
1588
981
|
"font-size",
|
|
1589
982
|
"fontSize"
|
|
1590
|
-
]
|
|
983
|
+
],
|
|
984
|
+
"syntax": "<absolute-size> | <relative-size> | <length-percentage [0,∞]> | math",
|
|
985
|
+
"extended": []
|
|
1591
986
|
}
|
|
1592
987
|
],
|
|
1593
988
|
[
|
|
@@ -1595,7 +990,6 @@ module.exports = new Map([
|
|
|
1595
990
|
{
|
|
1596
991
|
"name": "font-style",
|
|
1597
992
|
"href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-style",
|
|
1598
|
-
"value": "normal | italic | left | right | oblique <angle [-90deg,90deg]>?",
|
|
1599
993
|
"initial": "normal",
|
|
1600
994
|
"appliesTo": "all elements and text",
|
|
1601
995
|
"inherited": "yes",
|
|
@@ -1603,47 +997,12 @@ module.exports = new Map([
|
|
|
1603
997
|
"computedValue": "the keyword specified, plus angle in degrees if specified",
|
|
1604
998
|
"canonicalOrder": "per grammar",
|
|
1605
999
|
"animationType": "by computed value type;normal animates as oblique 0deg",
|
|
1606
|
-
"values": [
|
|
1607
|
-
{
|
|
1608
|
-
"name": "normal",
|
|
1609
|
-
"prose": "Matches against a face that is classified as a normal face, one that is neither italic or obliqued. This represents an oblique value of \"0\".",
|
|
1610
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-style-normal",
|
|
1611
|
-
"type": "value",
|
|
1612
|
-
"value": "normal"
|
|
1613
|
-
},
|
|
1614
|
-
{
|
|
1615
|
-
"name": "italic",
|
|
1616
|
-
"prose": "Matches against a font that is labeled as an italic face, or an oblique face if one does not exist. The angle and direction of slant is unspecified.",
|
|
1617
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-style-italic",
|
|
1618
|
-
"type": "value",
|
|
1619
|
-
"value": "italic"
|
|
1620
|
-
},
|
|
1621
|
-
{
|
|
1622
|
-
"name": "left",
|
|
1623
|
-
"prose": "Matches against a font that is labeled as an italic face, with a positive (clockwise) slant; or an oblique face with positive slant, if one does not exist.",
|
|
1624
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-style-left",
|
|
1625
|
-
"type": "value",
|
|
1626
|
-
"value": "left"
|
|
1627
|
-
},
|
|
1628
|
-
{
|
|
1629
|
-
"name": "right",
|
|
1630
|
-
"prose": "Matches against a font that is labeled as an italic face, with a negative (counter-clockwise) slant; or an oblique face with negative slant, if one does not exist.",
|
|
1631
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-style-right",
|
|
1632
|
-
"type": "value",
|
|
1633
|
-
"value": "right"
|
|
1634
|
-
},
|
|
1635
|
-
{
|
|
1636
|
-
"name": "oblique <angle [-90deg,90deg]>?",
|
|
1637
|
-
"prose": "Controls matching against an oblique face. Positive angles represent a clockwise slant; negative angles represent a counter-clockwise slant. The lack of an <angle> represents 14deg. (Note that a font might internally provide its own mapping for \"oblique\", but the mapping within the font is disregarded.) Fractional and negative values are accepted; however, values less than -90deg or values greater than 90deg are invalid. If no oblique faces exist, and font-synthesis-style has the value auto, a synthetic oblique face will be generated.",
|
|
1638
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-style-oblique-angle--90deg-90deg",
|
|
1639
|
-
"type": "value",
|
|
1640
|
-
"value": "oblique <angle [-90deg,90deg]>?"
|
|
1641
|
-
}
|
|
1642
|
-
],
|
|
1643
1000
|
"styleDeclaration": [
|
|
1644
1001
|
"font-style",
|
|
1645
1002
|
"fontStyle"
|
|
1646
|
-
]
|
|
1003
|
+
],
|
|
1004
|
+
"syntax": "normal | italic | left | right | oblique <angle [-90deg,90deg]>?",
|
|
1005
|
+
"extended": []
|
|
1647
1006
|
}
|
|
1648
1007
|
],
|
|
1649
1008
|
[
|
|
@@ -1651,7 +1010,6 @@ module.exports = new Map([
|
|
|
1651
1010
|
{
|
|
1652
1011
|
"name": "font-variant",
|
|
1653
1012
|
"href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-variant",
|
|
1654
|
-
"value": "normal | none | [ [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ] || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || [ 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>) ] || [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ] || [ <east-asian-variant-values> || <east-asian-width-values> || ruby ] || [ sub | super ] || [ text | emoji | unicode ] ]",
|
|
1655
1013
|
"initial": "normal",
|
|
1656
1014
|
"appliesTo": "all elements and text",
|
|
1657
1015
|
"inherited": "yes",
|
|
@@ -1659,26 +1017,12 @@ module.exports = new Map([
|
|
|
1659
1017
|
"computedValue": "as specified",
|
|
1660
1018
|
"canonicalOrder": "per grammar",
|
|
1661
1019
|
"animationType": "discrete",
|
|
1662
|
-
"values": [
|
|
1663
|
-
{
|
|
1664
|
-
"name": "normal",
|
|
1665
|
-
"prose": "The value normal resets all subproperties of font-variant to their initial value. The none value sets font-variant-ligatures to none and resets all other font feature properties to their initial value. Like other shorthands, using font-variant resets unspecified font-variant subproperties to their initial values.",
|
|
1666
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#font-variant-normal-value",
|
|
1667
|
-
"type": "value",
|
|
1668
|
-
"value": "normal"
|
|
1669
|
-
},
|
|
1670
|
-
{
|
|
1671
|
-
"name": "none",
|
|
1672
|
-
"prose": "The value normal resets all subproperties of font-variant to their initial value. The none value sets font-variant-ligatures to none and resets all other font feature properties to their initial value. Like other shorthands, using font-variant resets unspecified font-variant subproperties to their initial values.",
|
|
1673
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#font-variant-none-value",
|
|
1674
|
-
"type": "value",
|
|
1675
|
-
"value": "none"
|
|
1676
|
-
}
|
|
1677
|
-
],
|
|
1678
1020
|
"styleDeclaration": [
|
|
1679
1021
|
"font-variant",
|
|
1680
1022
|
"fontVariant"
|
|
1681
|
-
]
|
|
1023
|
+
],
|
|
1024
|
+
"syntax": "normal | none | [ [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ] || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || [ 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>) ] || [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ] || [ <east-asian-variant-values> || <east-asian-width-values> || ruby ] || [ sub | super ] || [ text | emoji | unicode ] ]",
|
|
1025
|
+
"extended": []
|
|
1682
1026
|
}
|
|
1683
1027
|
],
|
|
1684
1028
|
[
|
|
@@ -1686,7 +1030,6 @@ module.exports = new Map([
|
|
|
1686
1030
|
{
|
|
1687
1031
|
"name": "font-weight",
|
|
1688
1032
|
"href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-weight",
|
|
1689
|
-
"value": "<font-weight-absolute> | bolder | lighter",
|
|
1690
1033
|
"initial": "normal",
|
|
1691
1034
|
"appliesTo": "all elements and text",
|
|
1692
1035
|
"inherited": "yes",
|
|
@@ -1694,47 +1037,12 @@ module.exports = new Map([
|
|
|
1694
1037
|
"computedValue": "a number, see below",
|
|
1695
1038
|
"canonicalOrder": "per grammar",
|
|
1696
1039
|
"animationType": "by computed value type",
|
|
1697
|
-
"values": [
|
|
1698
|
-
{
|
|
1699
|
-
"name": "<number [1,1000]>",
|
|
1700
|
-
"prose": "Each number indicates a weight that is at least as dark as its predecessor. Only values greater than or equal to 1, and less than or equal to 1000, are valid, and all other values are invalid. Numeric values typically correspond to the commonly used weight names below. 100 - Thin 200 - Extra Light (Ultra Light) 300 - Light 400 - Normal 500 - Medium 600 - Semi Bold (Demi Bold) 700 - Bold 800 - Extra Bold (Ultra Bold) 900 - Black (Heavy)",
|
|
1701
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-weight-number-1-1000",
|
|
1702
|
-
"type": "value",
|
|
1703
|
-
"value": "<number [1,1000]>"
|
|
1704
|
-
},
|
|
1705
|
-
{
|
|
1706
|
-
"name": "normal",
|
|
1707
|
-
"prose": "Same as 400.",
|
|
1708
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-weight-normal",
|
|
1709
|
-
"type": "value",
|
|
1710
|
-
"value": "normal"
|
|
1711
|
-
},
|
|
1712
|
-
{
|
|
1713
|
-
"name": "bold",
|
|
1714
|
-
"prose": "Same as 700.",
|
|
1715
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-weight-bold",
|
|
1716
|
-
"type": "value",
|
|
1717
|
-
"value": "bold"
|
|
1718
|
-
},
|
|
1719
|
-
{
|
|
1720
|
-
"name": "bolder",
|
|
1721
|
-
"prose": "Specifies a bolder weight than the inherited value. See § 2.2.1 Relative Weights.",
|
|
1722
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-weight-bolder",
|
|
1723
|
-
"type": "value",
|
|
1724
|
-
"value": "bolder"
|
|
1725
|
-
},
|
|
1726
|
-
{
|
|
1727
|
-
"name": "lighter",
|
|
1728
|
-
"prose": "Specifies a lighter weight than the inherited value. See § 2.2.1 Relative Weights.",
|
|
1729
|
-
"href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-weight-lighter",
|
|
1730
|
-
"type": "value",
|
|
1731
|
-
"value": "lighter"
|
|
1732
|
-
}
|
|
1733
|
-
],
|
|
1734
1040
|
"styleDeclaration": [
|
|
1735
1041
|
"font-weight",
|
|
1736
1042
|
"fontWeight"
|
|
1737
|
-
]
|
|
1043
|
+
],
|
|
1044
|
+
"syntax": "<font-weight-absolute> | bolder | lighter",
|
|
1045
|
+
"extended": []
|
|
1738
1046
|
}
|
|
1739
1047
|
],
|
|
1740
1048
|
[
|
|
@@ -1742,7 +1050,6 @@ module.exports = new Map([
|
|
|
1742
1050
|
{
|
|
1743
1051
|
"name": "height",
|
|
1744
1052
|
"href": "https://drafts.csswg.org/css-sizing-3/#propdef-height",
|
|
1745
|
-
"value": "auto | <length-percentage [0,∞]> | min-content | max-content | fit-content(<length-percentage [0,∞]>) | <calc-size()>",
|
|
1746
1053
|
"initial": "auto",
|
|
1747
1054
|
"appliesTo": "all elements except non-replaced inlines",
|
|
1748
1055
|
"inherited": "no",
|
|
@@ -1751,49 +1058,13 @@ module.exports = new Map([
|
|
|
1751
1058
|
"canonicalOrder": "per grammar",
|
|
1752
1059
|
"animationType": "by computed value type, recursing into fit-content()",
|
|
1753
1060
|
"logicalPropertyGroup": "size",
|
|
1754
|
-
"values": [
|
|
1755
|
-
{
|
|
1756
|
-
"name": "<length-percentage [0,∞]>",
|
|
1757
|
-
"prose": "Specifies the size of the box using <length> and/or <percentage>. The box-sizing property indicates whether the content box or border box is measured. Percentages are resolved against the width/height, as appropriate, of the box’s containing block. If, in a particular axis, the containing block’s size depends on the box’s size, see the relevant layout module for special rules on how to resolve percentages. Negative values are invalid.",
|
|
1758
|
-
"href": "https://drafts.csswg.org/css-sizing-3/#valdef-width-length-percentage-0",
|
|
1759
|
-
"type": "value",
|
|
1760
|
-
"value": "<length-percentage [0,∞]>"
|
|
1761
|
-
},
|
|
1762
|
-
{
|
|
1763
|
-
"name": "auto",
|
|
1764
|
-
"prose": "For width/height, specifies an automatic size (automatic block size/automatic inline size). See the relevant layout module for how to calculate this. For min-width/min-height, specifies an automatic minimum size. Unless otherwise defined by the relevant layout module, however, it resolves to a used value of 0. For backwards-compatibility, the resolved value of this keyword is zero for boxes of all [CSS2] display types: block and inline boxes, inline blocks, and all the table layout boxes. It also resolves to zero when no box is generated.",
|
|
1765
|
-
"href": "https://drafts.csswg.org/css-sizing-3/#valdef-width-auto",
|
|
1766
|
-
"type": "value",
|
|
1767
|
-
"value": "auto"
|
|
1768
|
-
},
|
|
1769
|
-
{
|
|
1770
|
-
"name": "min-content",
|
|
1771
|
-
"prose": "Use the min-content size in the relevant axis; for a box’s block size, unless otherwise specified, this is equivalent to its automatic size.",
|
|
1772
|
-
"href": "https://drafts.csswg.org/css-sizing-3/#valdef-width-min-content",
|
|
1773
|
-
"type": "value",
|
|
1774
|
-
"value": "min-content"
|
|
1775
|
-
},
|
|
1776
|
-
{
|
|
1777
|
-
"name": "max-content",
|
|
1778
|
-
"prose": "Use the max-content size in the relevant axis; for a box’s block size, unless otherwise specified, this is equivalent to its automatic size.",
|
|
1779
|
-
"href": "https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content",
|
|
1780
|
-
"type": "value",
|
|
1781
|
-
"value": "max-content"
|
|
1782
|
-
},
|
|
1783
|
-
{
|
|
1784
|
-
"name": "fit-content()",
|
|
1785
|
-
"value": "fit-content(<length-percentage [0,∞]>)",
|
|
1786
|
-
"href": "https://drafts.csswg.org/css-sizing-3/#funcdef-width-fit-content",
|
|
1787
|
-
"type": "function"
|
|
1788
|
-
},
|
|
1789
|
-
{
|
|
1790
|
-
"name": "calc-size()",
|
|
1791
|
-
"href": "https://drafts.csswg.org/css-sizing-3/#funcdef-width-calc-size",
|
|
1792
|
-
"type": "function"
|
|
1793
|
-
}
|
|
1794
|
-
],
|
|
1795
1061
|
"styleDeclaration": [
|
|
1796
1062
|
"height"
|
|
1063
|
+
],
|
|
1064
|
+
"syntax": "auto | <length-percentage [0,∞]> | min-content | max-content | fit-content(<length-percentage [0,∞]>) | <calc-size()> | <anchor-size()> | stretch | fit-content | contain",
|
|
1065
|
+
"extended": [
|
|
1066
|
+
"https://drafts.csswg.org/css-anchor-position-1/",
|
|
1067
|
+
"https://drafts.csswg.org/css-sizing-4/"
|
|
1797
1068
|
]
|
|
1798
1069
|
}
|
|
1799
1070
|
],
|
|
@@ -1802,7 +1073,6 @@ module.exports = new Map([
|
|
|
1802
1073
|
{
|
|
1803
1074
|
"name": "left",
|
|
1804
1075
|
"href": "https://drafts.csswg.org/css-position-3/#propdef-left",
|
|
1805
|
-
"value": "auto | <length-percentage>",
|
|
1806
1076
|
"initial": "auto",
|
|
1807
1077
|
"appliesTo": "positioned elements",
|
|
1808
1078
|
"inherited": "no",
|
|
@@ -1811,31 +1081,12 @@ module.exports = new Map([
|
|
|
1811
1081
|
"canonicalOrder": "per grammar",
|
|
1812
1082
|
"animationType": "by computed value type",
|
|
1813
1083
|
"logicalPropertyGroup": "inset",
|
|
1814
|
-
"values": [
|
|
1815
|
-
{
|
|
1816
|
-
"name": "<length>",
|
|
1817
|
-
"prose": "The inset is a fixed distance from the reference edge. Negative values are allowed.",
|
|
1818
|
-
"href": "https://drafts.csswg.org/css-position-3/#valdef-top-length",
|
|
1819
|
-
"type": "value",
|
|
1820
|
-
"value": "<length>"
|
|
1821
|
-
},
|
|
1822
|
-
{
|
|
1823
|
-
"name": "<percentage>",
|
|
1824
|
-
"prose": "The inset is a percentage relative to the containing block’s size in the corresponding axis (e.g. width for left or right, height for top and bottom). For sticky positioned boxes, the inset is instead relative to the relevant scrollport’s size. Negative values are allowed.",
|
|
1825
|
-
"href": "https://drafts.csswg.org/css-position-3/#valdef-top-percentage",
|
|
1826
|
-
"type": "value",
|
|
1827
|
-
"value": "<percentage>"
|
|
1828
|
-
},
|
|
1829
|
-
{
|
|
1830
|
-
"name": "auto",
|
|
1831
|
-
"prose": "Represents an unconstrained inset; the exact meaning depends on the positioning scheme.",
|
|
1832
|
-
"href": "https://drafts.csswg.org/css-position-3/#valdef-top-auto",
|
|
1833
|
-
"type": "value",
|
|
1834
|
-
"value": "auto"
|
|
1835
|
-
}
|
|
1836
|
-
],
|
|
1837
1084
|
"styleDeclaration": [
|
|
1838
1085
|
"left"
|
|
1086
|
+
],
|
|
1087
|
+
"syntax": "auto | <length-percentage> | <anchor()> | <anchor-size()>",
|
|
1088
|
+
"extended": [
|
|
1089
|
+
"https://drafts.csswg.org/css-anchor-position-1/"
|
|
1839
1090
|
]
|
|
1840
1091
|
}
|
|
1841
1092
|
],
|
|
@@ -1844,7 +1095,6 @@ module.exports = new Map([
|
|
|
1844
1095
|
{
|
|
1845
1096
|
"name": "lighting-color",
|
|
1846
1097
|
"href": "https://drafts.fxtf.org/filter-effects-1/#propdef-lighting-color",
|
|
1847
|
-
"value": "<color>",
|
|
1848
1098
|
"initial": "white",
|
|
1849
1099
|
"appliesTo": "feDiffuseLighting and feSpecularLighting elements",
|
|
1850
1100
|
"inherited": "no",
|
|
@@ -1856,7 +1106,9 @@ module.exports = new Map([
|
|
|
1856
1106
|
"styleDeclaration": [
|
|
1857
1107
|
"lighting-color",
|
|
1858
1108
|
"lightingColor"
|
|
1859
|
-
]
|
|
1109
|
+
],
|
|
1110
|
+
"syntax": "<color>",
|
|
1111
|
+
"extended": []
|
|
1860
1112
|
}
|
|
1861
1113
|
],
|
|
1862
1114
|
[
|
|
@@ -1864,7 +1116,6 @@ module.exports = new Map([
|
|
|
1864
1116
|
{
|
|
1865
1117
|
"name": "line-height",
|
|
1866
1118
|
"href": "https://drafts.csswg.org/css-inline-3/#propdef-line-height",
|
|
1867
|
-
"value": "normal | <number [0,∞]> | <length-percentage [0,∞]>",
|
|
1868
1119
|
"initial": "normal",
|
|
1869
1120
|
"appliesTo": "non-replaced inline boxes and SVG text content elements",
|
|
1870
1121
|
"inherited": "yes",
|
|
@@ -1872,40 +1123,12 @@ module.exports = new Map([
|
|
|
1872
1123
|
"computedValue": "the specified keyword, a number, or a computed <length> value",
|
|
1873
1124
|
"canonicalOrder": "per grammar",
|
|
1874
1125
|
"animationType": "by computed value type",
|
|
1875
|
-
"values": [
|
|
1876
|
-
{
|
|
1877
|
-
"name": "normal",
|
|
1878
|
-
"prose": "Determine the preferred line height automatically based on font metrics.",
|
|
1879
|
-
"href": "https://drafts.csswg.org/css-inline-3/#valdef-line-height-normal",
|
|
1880
|
-
"type": "value",
|
|
1881
|
-
"value": "normal"
|
|
1882
|
-
},
|
|
1883
|
-
{
|
|
1884
|
-
"name": "<length [0,∞]>",
|
|
1885
|
-
"prose": "The specified length is used as the preferred line height. Negative values are illegal.",
|
|
1886
|
-
"href": "https://drafts.csswg.org/css-inline-3/#valdef-line-height-length-0",
|
|
1887
|
-
"type": "value",
|
|
1888
|
-
"value": "<length [0,∞]>"
|
|
1889
|
-
},
|
|
1890
|
-
{
|
|
1891
|
-
"name": "<number [0,∞]>",
|
|
1892
|
-
"prose": "The preferred line height is this number multiplied by the element’s computed font-size. Negative values are illegal. The computed value is the same as the specified value.",
|
|
1893
|
-
"href": "https://drafts.csswg.org/css-inline-3/#valdef-line-height-number-0",
|
|
1894
|
-
"type": "value",
|
|
1895
|
-
"value": "<number [0,∞]>"
|
|
1896
|
-
},
|
|
1897
|
-
{
|
|
1898
|
-
"name": "<percentage [0,∞]>",
|
|
1899
|
-
"prose": "The preferred line height and computed value of the property is this percentage of the element’s computed font-size. Negative values are illegal.",
|
|
1900
|
-
"href": "https://drafts.csswg.org/css-inline-3/#valdef-line-height-percentage-0",
|
|
1901
|
-
"type": "value",
|
|
1902
|
-
"value": "<percentage [0,∞]>"
|
|
1903
|
-
}
|
|
1904
|
-
],
|
|
1905
1126
|
"styleDeclaration": [
|
|
1906
1127
|
"line-height",
|
|
1907
1128
|
"lineHeight"
|
|
1908
|
-
]
|
|
1129
|
+
],
|
|
1130
|
+
"syntax": "normal | <number [0,∞]> | <length-percentage [0,∞]>",
|
|
1131
|
+
"extended": []
|
|
1909
1132
|
}
|
|
1910
1133
|
],
|
|
1911
1134
|
[
|
|
@@ -1913,7 +1136,6 @@ module.exports = new Map([
|
|
|
1913
1136
|
{
|
|
1914
1137
|
"name": "margin",
|
|
1915
1138
|
"href": "https://drafts.csswg.org/css-box-4/#propdef-margin",
|
|
1916
|
-
"value": "<'margin-top'>{1,4}",
|
|
1917
1139
|
"initial": "0",
|
|
1918
1140
|
"appliesTo": "all elements except internal table elements, ruby base containers, and ruby annotation containers",
|
|
1919
1141
|
"inherited": "no",
|
|
@@ -1923,7 +1145,9 @@ module.exports = new Map([
|
|
|
1923
1145
|
"animationType": "by computed value type",
|
|
1924
1146
|
"styleDeclaration": [
|
|
1925
1147
|
"margin"
|
|
1926
|
-
]
|
|
1148
|
+
],
|
|
1149
|
+
"syntax": "<'margin-top'>{1,4}",
|
|
1150
|
+
"extended": []
|
|
1927
1151
|
}
|
|
1928
1152
|
],
|
|
1929
1153
|
[
|
|
@@ -1931,7 +1155,6 @@ module.exports = new Map([
|
|
|
1931
1155
|
{
|
|
1932
1156
|
"name": "margin-bottom",
|
|
1933
1157
|
"href": "https://drafts.csswg.org/css-box-4/#propdef-margin-bottom",
|
|
1934
|
-
"value": "<length-percentage> | auto",
|
|
1935
1158
|
"initial": "0",
|
|
1936
1159
|
"appliesTo": "all elements except internal table elements, ruby base containers, and ruby annotation containers",
|
|
1937
1160
|
"inherited": "no",
|
|
@@ -1943,6 +1166,10 @@ module.exports = new Map([
|
|
|
1943
1166
|
"styleDeclaration": [
|
|
1944
1167
|
"margin-bottom",
|
|
1945
1168
|
"marginBottom"
|
|
1169
|
+
],
|
|
1170
|
+
"syntax": "<length-percentage> | auto | <anchor-size()>",
|
|
1171
|
+
"extended": [
|
|
1172
|
+
"https://drafts.csswg.org/css-anchor-position-1/"
|
|
1946
1173
|
]
|
|
1947
1174
|
}
|
|
1948
1175
|
],
|
|
@@ -1951,7 +1178,6 @@ module.exports = new Map([
|
|
|
1951
1178
|
{
|
|
1952
1179
|
"name": "margin-left",
|
|
1953
1180
|
"href": "https://drafts.csswg.org/css-box-4/#propdef-margin-left",
|
|
1954
|
-
"value": "<length-percentage> | auto",
|
|
1955
1181
|
"initial": "0",
|
|
1956
1182
|
"appliesTo": "all elements except internal table elements, ruby base containers, and ruby annotation containers",
|
|
1957
1183
|
"inherited": "no",
|
|
@@ -1963,6 +1189,10 @@ module.exports = new Map([
|
|
|
1963
1189
|
"styleDeclaration": [
|
|
1964
1190
|
"margin-left",
|
|
1965
1191
|
"marginLeft"
|
|
1192
|
+
],
|
|
1193
|
+
"syntax": "<length-percentage> | auto | <anchor-size()>",
|
|
1194
|
+
"extended": [
|
|
1195
|
+
"https://drafts.csswg.org/css-anchor-position-1/"
|
|
1966
1196
|
]
|
|
1967
1197
|
}
|
|
1968
1198
|
],
|
|
@@ -1971,7 +1201,6 @@ module.exports = new Map([
|
|
|
1971
1201
|
{
|
|
1972
1202
|
"name": "margin-right",
|
|
1973
1203
|
"href": "https://drafts.csswg.org/css-box-4/#propdef-margin-right",
|
|
1974
|
-
"value": "<length-percentage> | auto",
|
|
1975
1204
|
"initial": "0",
|
|
1976
1205
|
"appliesTo": "all elements except internal table elements, ruby base containers, and ruby annotation containers",
|
|
1977
1206
|
"inherited": "no",
|
|
@@ -1983,6 +1212,10 @@ module.exports = new Map([
|
|
|
1983
1212
|
"styleDeclaration": [
|
|
1984
1213
|
"margin-right",
|
|
1985
1214
|
"marginRight"
|
|
1215
|
+
],
|
|
1216
|
+
"syntax": "<length-percentage> | auto | <anchor-size()>",
|
|
1217
|
+
"extended": [
|
|
1218
|
+
"https://drafts.csswg.org/css-anchor-position-1/"
|
|
1986
1219
|
]
|
|
1987
1220
|
}
|
|
1988
1221
|
],
|
|
@@ -1991,7 +1224,6 @@ module.exports = new Map([
|
|
|
1991
1224
|
{
|
|
1992
1225
|
"name": "margin-top",
|
|
1993
1226
|
"href": "https://drafts.csswg.org/css-box-4/#propdef-margin-top",
|
|
1994
|
-
"value": "<length-percentage> | auto",
|
|
1995
1227
|
"initial": "0",
|
|
1996
1228
|
"appliesTo": "all elements except internal table elements, ruby base containers, and ruby annotation containers",
|
|
1997
1229
|
"inherited": "no",
|
|
@@ -2003,6 +1235,10 @@ module.exports = new Map([
|
|
|
2003
1235
|
"styleDeclaration": [
|
|
2004
1236
|
"margin-top",
|
|
2005
1237
|
"marginTop"
|
|
1238
|
+
],
|
|
1239
|
+
"syntax": "<length-percentage> | auto | <anchor-size()>",
|
|
1240
|
+
"extended": [
|
|
1241
|
+
"https://drafts.csswg.org/css-anchor-position-1/"
|
|
2006
1242
|
]
|
|
2007
1243
|
}
|
|
2008
1244
|
],
|
|
@@ -2011,7 +1247,6 @@ module.exports = new Map([
|
|
|
2011
1247
|
{
|
|
2012
1248
|
"name": "opacity",
|
|
2013
1249
|
"href": "https://drafts.csswg.org/css-color-4/#propdef-opacity",
|
|
2014
|
-
"value": "<opacity-value>",
|
|
2015
1250
|
"initial": "1",
|
|
2016
1251
|
"appliesTo": "all elements",
|
|
2017
1252
|
"inherited": "no",
|
|
@@ -2019,18 +1254,11 @@ module.exports = new Map([
|
|
|
2019
1254
|
"computedValue": "specified number, clamped to the range [0,1]",
|
|
2020
1255
|
"canonicalOrder": "per grammar",
|
|
2021
1256
|
"animationType": "by computed value type",
|
|
2022
|
-
"values": [
|
|
2023
|
-
{
|
|
2024
|
-
"name": "<opacity-value>",
|
|
2025
|
-
"prose": "The opacity to be applied to the element. The resulting opacity is applied to the entire element, rather than a particular color. Opacity values outside the range [0,1] are not invalid, and are preserved in specified values, but are clamped to the range [0, 1] in computed values.",
|
|
2026
|
-
"href": "https://drafts.csswg.org/css-color-4/#typedef-opacity-opacity-value",
|
|
2027
|
-
"type": "type",
|
|
2028
|
-
"value": "<number> | <percentage>"
|
|
2029
|
-
}
|
|
2030
|
-
],
|
|
2031
1257
|
"styleDeclaration": [
|
|
2032
1258
|
"opacity"
|
|
2033
|
-
]
|
|
1259
|
+
],
|
|
1260
|
+
"syntax": "<opacity-value>",
|
|
1261
|
+
"extended": []
|
|
2034
1262
|
}
|
|
2035
1263
|
],
|
|
2036
1264
|
[
|
|
@@ -2038,7 +1266,6 @@ module.exports = new Map([
|
|
|
2038
1266
|
{
|
|
2039
1267
|
"name": "outline-color",
|
|
2040
1268
|
"href": "https://drafts.csswg.org/css-ui-4/#propdef-outline-color",
|
|
2041
|
-
"value": "auto | <'border-top-color'>",
|
|
2042
1269
|
"initial": "auto",
|
|
2043
1270
|
"appliesTo": "all elements",
|
|
2044
1271
|
"inherited": "no",
|
|
@@ -2046,19 +1273,12 @@ module.exports = new Map([
|
|
|
2046
1273
|
"computedValue": "see below",
|
|
2047
1274
|
"canonicalOrder": "per grammar",
|
|
2048
1275
|
"animationType": "by computed value",
|
|
2049
|
-
"values": [
|
|
2050
|
-
{
|
|
2051
|
-
"name": "auto",
|
|
2052
|
-
"prose": "When outline-style is auto, outline-color: auto computes to auto and represents the accent color. Otherwise, outline-color: auto computes to currentColor.",
|
|
2053
|
-
"href": "https://drafts.csswg.org/css-ui-4/#valdef-outline-color-auto",
|
|
2054
|
-
"type": "value",
|
|
2055
|
-
"value": "auto"
|
|
2056
|
-
}
|
|
2057
|
-
],
|
|
2058
1276
|
"styleDeclaration": [
|
|
2059
1277
|
"outline-color",
|
|
2060
1278
|
"outlineColor"
|
|
2061
|
-
]
|
|
1279
|
+
],
|
|
1280
|
+
"syntax": "auto | <'border-top-color'>",
|
|
1281
|
+
"extended": []
|
|
2062
1282
|
}
|
|
2063
1283
|
],
|
|
2064
1284
|
[
|
|
@@ -2066,7 +1286,6 @@ module.exports = new Map([
|
|
|
2066
1286
|
{
|
|
2067
1287
|
"name": "padding",
|
|
2068
1288
|
"href": "https://drafts.csswg.org/css-box-4/#propdef-padding",
|
|
2069
|
-
"value": "<'padding-top'>{1,4}",
|
|
2070
1289
|
"initial": "0",
|
|
2071
1290
|
"appliesTo": "all elements except: internal table elements other than table cells, ruby base containers, and ruby annotation containers",
|
|
2072
1291
|
"inherited": "no",
|
|
@@ -2076,7 +1295,9 @@ module.exports = new Map([
|
|
|
2076
1295
|
"animationType": "by computed value type",
|
|
2077
1296
|
"styleDeclaration": [
|
|
2078
1297
|
"padding"
|
|
2079
|
-
]
|
|
1298
|
+
],
|
|
1299
|
+
"syntax": "<'padding-top'>{1,4}",
|
|
1300
|
+
"extended": []
|
|
2080
1301
|
}
|
|
2081
1302
|
],
|
|
2082
1303
|
[
|
|
@@ -2084,7 +1305,6 @@ module.exports = new Map([
|
|
|
2084
1305
|
{
|
|
2085
1306
|
"name": "padding-bottom",
|
|
2086
1307
|
"href": "https://drafts.csswg.org/css-box-4/#propdef-padding-bottom",
|
|
2087
|
-
"value": "<length-percentage [0,∞]>",
|
|
2088
1308
|
"initial": "0",
|
|
2089
1309
|
"appliesTo": "all elements except: internal table elements other than table cells, ruby base containers, and ruby annotation containers",
|
|
2090
1310
|
"inherited": "no",
|
|
@@ -2096,7 +1316,9 @@ module.exports = new Map([
|
|
|
2096
1316
|
"styleDeclaration": [
|
|
2097
1317
|
"padding-bottom",
|
|
2098
1318
|
"paddingBottom"
|
|
2099
|
-
]
|
|
1319
|
+
],
|
|
1320
|
+
"syntax": "<length-percentage [0,∞]>",
|
|
1321
|
+
"extended": []
|
|
2100
1322
|
}
|
|
2101
1323
|
],
|
|
2102
1324
|
[
|
|
@@ -2104,7 +1326,6 @@ module.exports = new Map([
|
|
|
2104
1326
|
{
|
|
2105
1327
|
"name": "padding-left",
|
|
2106
1328
|
"href": "https://drafts.csswg.org/css-box-4/#propdef-padding-left",
|
|
2107
|
-
"value": "<length-percentage [0,∞]>",
|
|
2108
1329
|
"initial": "0",
|
|
2109
1330
|
"appliesTo": "all elements except: internal table elements other than table cells, ruby base containers, and ruby annotation containers",
|
|
2110
1331
|
"inherited": "no",
|
|
@@ -2116,7 +1337,9 @@ module.exports = new Map([
|
|
|
2116
1337
|
"styleDeclaration": [
|
|
2117
1338
|
"padding-left",
|
|
2118
1339
|
"paddingLeft"
|
|
2119
|
-
]
|
|
1340
|
+
],
|
|
1341
|
+
"syntax": "<length-percentage [0,∞]>",
|
|
1342
|
+
"extended": []
|
|
2120
1343
|
}
|
|
2121
1344
|
],
|
|
2122
1345
|
[
|
|
@@ -2124,7 +1347,6 @@ module.exports = new Map([
|
|
|
2124
1347
|
{
|
|
2125
1348
|
"name": "padding-right",
|
|
2126
1349
|
"href": "https://drafts.csswg.org/css-box-4/#propdef-padding-right",
|
|
2127
|
-
"value": "<length-percentage [0,∞]>",
|
|
2128
1350
|
"initial": "0",
|
|
2129
1351
|
"appliesTo": "all elements except: internal table elements other than table cells, ruby base containers, and ruby annotation containers",
|
|
2130
1352
|
"inherited": "no",
|
|
@@ -2136,7 +1358,9 @@ module.exports = new Map([
|
|
|
2136
1358
|
"styleDeclaration": [
|
|
2137
1359
|
"padding-right",
|
|
2138
1360
|
"paddingRight"
|
|
2139
|
-
]
|
|
1361
|
+
],
|
|
1362
|
+
"syntax": "<length-percentage [0,∞]>",
|
|
1363
|
+
"extended": []
|
|
2140
1364
|
}
|
|
2141
1365
|
],
|
|
2142
1366
|
[
|
|
@@ -2144,7 +1368,6 @@ module.exports = new Map([
|
|
|
2144
1368
|
{
|
|
2145
1369
|
"name": "padding-top",
|
|
2146
1370
|
"href": "https://drafts.csswg.org/css-box-4/#propdef-padding-top",
|
|
2147
|
-
"value": "<length-percentage [0,∞]>",
|
|
2148
1371
|
"initial": "0",
|
|
2149
1372
|
"appliesTo": "all elements except: internal table elements other than table cells, ruby base containers, and ruby annotation containers",
|
|
2150
1373
|
"inherited": "no",
|
|
@@ -2156,7 +1379,9 @@ module.exports = new Map([
|
|
|
2156
1379
|
"styleDeclaration": [
|
|
2157
1380
|
"padding-top",
|
|
2158
1381
|
"paddingTop"
|
|
2159
|
-
]
|
|
1382
|
+
],
|
|
1383
|
+
"syntax": "<length-percentage [0,∞]>",
|
|
1384
|
+
"extended": []
|
|
2160
1385
|
}
|
|
2161
1386
|
],
|
|
2162
1387
|
[
|
|
@@ -2164,7 +1389,6 @@ module.exports = new Map([
|
|
|
2164
1389
|
{
|
|
2165
1390
|
"name": "right",
|
|
2166
1391
|
"href": "https://drafts.csswg.org/css-position-3/#propdef-right",
|
|
2167
|
-
"value": "auto | <length-percentage>",
|
|
2168
1392
|
"initial": "auto",
|
|
2169
1393
|
"appliesTo": "positioned elements",
|
|
2170
1394
|
"inherited": "no",
|
|
@@ -2173,31 +1397,12 @@ module.exports = new Map([
|
|
|
2173
1397
|
"canonicalOrder": "per grammar",
|
|
2174
1398
|
"animationType": "by computed value type",
|
|
2175
1399
|
"logicalPropertyGroup": "inset",
|
|
2176
|
-
"values": [
|
|
2177
|
-
{
|
|
2178
|
-
"name": "<length>",
|
|
2179
|
-
"prose": "The inset is a fixed distance from the reference edge. Negative values are allowed.",
|
|
2180
|
-
"href": "https://drafts.csswg.org/css-position-3/#valdef-top-length",
|
|
2181
|
-
"type": "value",
|
|
2182
|
-
"value": "<length>"
|
|
2183
|
-
},
|
|
2184
|
-
{
|
|
2185
|
-
"name": "<percentage>",
|
|
2186
|
-
"prose": "The inset is a percentage relative to the containing block’s size in the corresponding axis (e.g. width for left or right, height for top and bottom). For sticky positioned boxes, the inset is instead relative to the relevant scrollport’s size. Negative values are allowed.",
|
|
2187
|
-
"href": "https://drafts.csswg.org/css-position-3/#valdef-top-percentage",
|
|
2188
|
-
"type": "value",
|
|
2189
|
-
"value": "<percentage>"
|
|
2190
|
-
},
|
|
2191
|
-
{
|
|
2192
|
-
"name": "auto",
|
|
2193
|
-
"prose": "Represents an unconstrained inset; the exact meaning depends on the positioning scheme.",
|
|
2194
|
-
"href": "https://drafts.csswg.org/css-position-3/#valdef-top-auto",
|
|
2195
|
-
"type": "value",
|
|
2196
|
-
"value": "auto"
|
|
2197
|
-
}
|
|
2198
|
-
],
|
|
2199
1400
|
"styleDeclaration": [
|
|
2200
1401
|
"right"
|
|
1402
|
+
],
|
|
1403
|
+
"syntax": "auto | <length-percentage> | <anchor()> | <anchor-size()>",
|
|
1404
|
+
"extended": [
|
|
1405
|
+
"https://drafts.csswg.org/css-anchor-position-1/"
|
|
2201
1406
|
]
|
|
2202
1407
|
}
|
|
2203
1408
|
],
|
|
@@ -2209,7 +1414,8 @@ module.exports = new Map([
|
|
|
2209
1414
|
"styleDeclaration": [
|
|
2210
1415
|
"stop-color",
|
|
2211
1416
|
"stopColor"
|
|
2212
|
-
]
|
|
1417
|
+
],
|
|
1418
|
+
"extended": []
|
|
2213
1419
|
}
|
|
2214
1420
|
],
|
|
2215
1421
|
[
|
|
@@ -2217,7 +1423,6 @@ module.exports = new Map([
|
|
|
2217
1423
|
{
|
|
2218
1424
|
"name": "top",
|
|
2219
1425
|
"href": "https://drafts.csswg.org/css-position-3/#propdef-top",
|
|
2220
|
-
"value": "auto | <length-percentage>",
|
|
2221
1426
|
"initial": "auto",
|
|
2222
1427
|
"appliesTo": "positioned elements",
|
|
2223
1428
|
"inherited": "no",
|
|
@@ -2226,31 +1431,12 @@ module.exports = new Map([
|
|
|
2226
1431
|
"canonicalOrder": "per grammar",
|
|
2227
1432
|
"animationType": "by computed value type",
|
|
2228
1433
|
"logicalPropertyGroup": "inset",
|
|
2229
|
-
"values": [
|
|
2230
|
-
{
|
|
2231
|
-
"name": "<length>",
|
|
2232
|
-
"prose": "The inset is a fixed distance from the reference edge. Negative values are allowed.",
|
|
2233
|
-
"href": "https://drafts.csswg.org/css-position-3/#valdef-top-length",
|
|
2234
|
-
"type": "value",
|
|
2235
|
-
"value": "<length>"
|
|
2236
|
-
},
|
|
2237
|
-
{
|
|
2238
|
-
"name": "<percentage>",
|
|
2239
|
-
"prose": "The inset is a percentage relative to the containing block’s size in the corresponding axis (e.g. width for left or right, height for top and bottom). For sticky positioned boxes, the inset is instead relative to the relevant scrollport’s size. Negative values are allowed.",
|
|
2240
|
-
"href": "https://drafts.csswg.org/css-position-3/#valdef-top-percentage",
|
|
2241
|
-
"type": "value",
|
|
2242
|
-
"value": "<percentage>"
|
|
2243
|
-
},
|
|
2244
|
-
{
|
|
2245
|
-
"name": "auto",
|
|
2246
|
-
"prose": "Represents an unconstrained inset; the exact meaning depends on the positioning scheme.",
|
|
2247
|
-
"href": "https://drafts.csswg.org/css-position-3/#valdef-top-auto",
|
|
2248
|
-
"type": "value",
|
|
2249
|
-
"value": "auto"
|
|
2250
|
-
}
|
|
2251
|
-
],
|
|
2252
1434
|
"styleDeclaration": [
|
|
2253
1435
|
"top"
|
|
1436
|
+
],
|
|
1437
|
+
"syntax": "auto | <length-percentage> | <anchor()> | <anchor-size()>",
|
|
1438
|
+
"extended": [
|
|
1439
|
+
"https://drafts.csswg.org/css-anchor-position-1/"
|
|
2254
1440
|
]
|
|
2255
1441
|
}
|
|
2256
1442
|
],
|
|
@@ -2259,7 +1445,6 @@ module.exports = new Map([
|
|
|
2259
1445
|
{
|
|
2260
1446
|
"name": "width",
|
|
2261
1447
|
"href": "https://drafts.csswg.org/css-sizing-3/#propdef-width",
|
|
2262
|
-
"value": "auto | <length-percentage [0,∞]> | min-content | max-content | fit-content(<length-percentage [0,∞]>) | <calc-size()>",
|
|
2263
1448
|
"initial": "auto",
|
|
2264
1449
|
"appliesTo": "all elements except non-replaced inlines",
|
|
2265
1450
|
"inherited": "no",
|
|
@@ -2268,49 +1453,13 @@ module.exports = new Map([
|
|
|
2268
1453
|
"canonicalOrder": "per grammar",
|
|
2269
1454
|
"animationType": "by computed value type, recursing into fit-content()",
|
|
2270
1455
|
"logicalPropertyGroup": "size",
|
|
2271
|
-
"values": [
|
|
2272
|
-
{
|
|
2273
|
-
"name": "<length-percentage [0,∞]>",
|
|
2274
|
-
"prose": "Specifies the size of the box using <length> and/or <percentage>. The box-sizing property indicates whether the content box or border box is measured. Percentages are resolved against the width/height, as appropriate, of the box’s containing block. If, in a particular axis, the containing block’s size depends on the box’s size, see the relevant layout module for special rules on how to resolve percentages. Negative values are invalid.",
|
|
2275
|
-
"href": "https://drafts.csswg.org/css-sizing-3/#valdef-width-length-percentage-0",
|
|
2276
|
-
"type": "value",
|
|
2277
|
-
"value": "<length-percentage [0,∞]>"
|
|
2278
|
-
},
|
|
2279
|
-
{
|
|
2280
|
-
"name": "auto",
|
|
2281
|
-
"prose": "For width/height, specifies an automatic size (automatic block size/automatic inline size). See the relevant layout module for how to calculate this. For min-width/min-height, specifies an automatic minimum size. Unless otherwise defined by the relevant layout module, however, it resolves to a used value of 0. For backwards-compatibility, the resolved value of this keyword is zero for boxes of all [CSS2] display types: block and inline boxes, inline blocks, and all the table layout boxes. It also resolves to zero when no box is generated.",
|
|
2282
|
-
"href": "https://drafts.csswg.org/css-sizing-3/#valdef-width-auto",
|
|
2283
|
-
"type": "value",
|
|
2284
|
-
"value": "auto"
|
|
2285
|
-
},
|
|
2286
|
-
{
|
|
2287
|
-
"name": "min-content",
|
|
2288
|
-
"prose": "Use the min-content size in the relevant axis; for a box’s block size, unless otherwise specified, this is equivalent to its automatic size.",
|
|
2289
|
-
"href": "https://drafts.csswg.org/css-sizing-3/#valdef-width-min-content",
|
|
2290
|
-
"type": "value",
|
|
2291
|
-
"value": "min-content"
|
|
2292
|
-
},
|
|
2293
|
-
{
|
|
2294
|
-
"name": "max-content",
|
|
2295
|
-
"prose": "Use the max-content size in the relevant axis; for a box’s block size, unless otherwise specified, this is equivalent to its automatic size.",
|
|
2296
|
-
"href": "https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content",
|
|
2297
|
-
"type": "value",
|
|
2298
|
-
"value": "max-content"
|
|
2299
|
-
},
|
|
2300
|
-
{
|
|
2301
|
-
"name": "fit-content()",
|
|
2302
|
-
"value": "fit-content(<length-percentage [0,∞]>)",
|
|
2303
|
-
"href": "https://drafts.csswg.org/css-sizing-3/#funcdef-width-fit-content",
|
|
2304
|
-
"type": "function"
|
|
2305
|
-
},
|
|
2306
|
-
{
|
|
2307
|
-
"name": "calc-size()",
|
|
2308
|
-
"href": "https://drafts.csswg.org/css-sizing-3/#funcdef-width-calc-size",
|
|
2309
|
-
"type": "function"
|
|
2310
|
-
}
|
|
2311
|
-
],
|
|
2312
1456
|
"styleDeclaration": [
|
|
2313
1457
|
"width"
|
|
1458
|
+
],
|
|
1459
|
+
"syntax": "auto | <length-percentage [0,∞]> | min-content | max-content | fit-content(<length-percentage [0,∞]>) | <calc-size()> | <anchor-size()> | stretch | fit-content | contain",
|
|
1460
|
+
"extended": [
|
|
1461
|
+
"https://drafts.csswg.org/css-anchor-position-1/",
|
|
1462
|
+
"https://drafts.csswg.org/css-sizing-4/"
|
|
2314
1463
|
]
|
|
2315
1464
|
}
|
|
2316
1465
|
]
|