UNPKG

896 kBTypeScriptView Raw
1export {};
2export type PropertyValue<TValue> = TValue extends Array<infer AValue> ? Array<AValue extends infer TUnpacked & {} ? TUnpacked : AValue> : TValue extends infer TUnpacked & {} ? TUnpacked : TValue;
3export type Fallback<T> = {
4 [P in keyof T]: T[P] | NonNullable<T[P]>[];
5};
6export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime = string & {}> {
7 /**
8 * The **`accent-color`** CSS property sets the color of the elements accent. An accent appears in elements such as `<input>` of `type="checkbox"`, or `type="radio"`.
9 *
10 * **Syntax**: `auto | <color>`
11 *
12 * **Initial value**: `auto`
13 *
14 * | Chrome | Firefox | Safari | Edge | IE |
15 * | :----: | :-----: | :----: | :----: | :-: |
16 * | **93** | **92** | No | **93** | No |
17 *
18 * @see https://developer.mozilla.org/docs/Web/CSS/accent-color
19 */
20 accentColor?: Property.AccentColor | undefined;
21 /**
22 * The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.
23 *
24 * **Syntax**: `normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>`
25 *
26 * **Initial value**: `normal`
27 *
28 * ---
29 *
30 * _Supported in Flex Layout_
31 *
32 * | Chrome | Firefox | Safari | Edge | IE |
33 * | :------: | :-----: | :-----: | :----: | :----: |
34 * | **29** | **28** | **9** | **12** | **11** |
35 * | 21 _-x-_ | | 7 _-x-_ | | |
36 *
37 * ---
38 *
39 * _Supported in Grid Layout_
40 *
41 * | Chrome | Firefox | Safari | Edge | IE |
42 * | :----: | :-----: | :------: | :----: | :-: |
43 * | **57** | **52** | **10.1** | **16** | No |
44 *
45 * ---
46 *
47 * @see https://developer.mozilla.org/docs/Web/CSS/align-content
48 */
49 alignContent?: Property.AlignContent | undefined;
50 /**
51 * The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area.
52 *
53 * **Syntax**: `normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]`
54 *
55 * **Initial value**: `normal`
56 *
57 * ---
58 *
59 * _Supported in Flex Layout_
60 *
61 * | Chrome | Firefox | Safari | Edge | IE |
62 * | :------: | :-----: | :-----: | :----: | :----: |
63 * | **52** | **20** | **9** | **12** | **11** |
64 * | 21 _-x-_ | | 7 _-x-_ | | |
65 *
66 * ---
67 *
68 * _Supported in Grid Layout_
69 *
70 * | Chrome | Firefox | Safari | Edge | IE |
71 * | :----: | :-----: | :------: | :----: | :-: |
72 * | **57** | **52** | **10.1** | **16** | No |
73 *
74 * ---
75 *
76 * @see https://developer.mozilla.org/docs/Web/CSS/align-items
77 */
78 alignItems?: Property.AlignItems | undefined;
79 /**
80 * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.
81 *
82 * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`
83 *
84 * **Initial value**: `auto`
85 *
86 * ---
87 *
88 * _Supported in Flex Layout_
89 *
90 * | Chrome | Firefox | Safari | Edge | IE |
91 * | :------: | :-----: | :-------: | :----: | :----: |
92 * | **36** | **20** | **9** | **12** | **11** |
93 * | 21 _-x-_ | | 6.1 _-x-_ | | |
94 *
95 * ---
96 *
97 * _Supported in Grid Layout_
98 *
99 * | Chrome | Firefox | Safari | Edge | IE |
100 * | :----: | :-----: | :------: | :----: | :----------: |
101 * | **57** | **52** | **10.1** | **16** | **10** _-x-_ |
102 *
103 * ---
104 *
105 * @see https://developer.mozilla.org/docs/Web/CSS/align-self
106 */
107 alignSelf?: Property.AlignSelf | undefined;
108 /**
109 * The **`align-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their block axis.
110 *
111 * **Syntax**: `[ normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position> ]#`
112 *
113 * **Initial value**: `normal`
114 *
115 * | Chrome | Firefox | Safari | Edge | IE |
116 * | :----: | :-----: | :----: | :--: | :-: |
117 * | No | n/a | No | No | No |
118 *
119 * @see https://developer.mozilla.org/docs/Web/CSS/align-tracks
120 */
121 alignTracks?: Property.AlignTracks | undefined;
122 /**
123 * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
124 *
125 * **Syntax**: `<time>#`
126 *
127 * **Initial value**: `0s`
128 *
129 * | Chrome | Firefox | Safari | Edge | IE |
130 * | :-----: | :-----: | :-----: | :----: | :----: |
131 * | **43** | **16** | **9** | **12** | **10** |
132 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
133 *
134 * @see https://developer.mozilla.org/docs/Web/CSS/animation-delay
135 */
136 animationDelay?: Property.AnimationDelay<TTime> | undefined;
137 /**
138 * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
139 *
140 * **Syntax**: `<single-animation-direction>#`
141 *
142 * **Initial value**: `normal`
143 *
144 * | Chrome | Firefox | Safari | Edge | IE |
145 * | :-----: | :-----: | :-----: | :----: | :----: |
146 * | **43** | **16** | **9** | **12** | **10** |
147 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
148 *
149 * @see https://developer.mozilla.org/docs/Web/CSS/animation-direction
150 */
151 animationDirection?: Property.AnimationDirection | undefined;
152 /**
153 * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
154 *
155 * **Syntax**: `<time>#`
156 *
157 * **Initial value**: `0s`
158 *
159 * | Chrome | Firefox | Safari | Edge | IE |
160 * | :-----: | :-----: | :-----: | :----: | :----: |
161 * | **43** | **16** | **9** | **12** | **10** |
162 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
163 *
164 * @see https://developer.mozilla.org/docs/Web/CSS/animation-duration
165 */
166 animationDuration?: Property.AnimationDuration<TTime> | undefined;
167 /**
168 * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
169 *
170 * **Syntax**: `<single-animation-fill-mode>#`
171 *
172 * **Initial value**: `none`
173 *
174 * | Chrome | Firefox | Safari | Edge | IE |
175 * | :-----: | :-----: | :-----: | :----: | :----: |
176 * | **43** | **16** | **9** | **12** | **10** |
177 * | 3 _-x-_ | 5 _-x-_ | 5 _-x-_ | | |
178 *
179 * @see https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode
180 */
181 animationFillMode?: Property.AnimationFillMode | undefined;
182 /**
183 * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
184 *
185 * **Syntax**: `<single-animation-iteration-count>#`
186 *
187 * **Initial value**: `1`
188 *
189 * | Chrome | Firefox | Safari | Edge | IE |
190 * | :-----: | :-----: | :-----: | :----: | :----: |
191 * | **43** | **16** | **9** | **12** | **10** |
192 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
193 *
194 * @see https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count
195 */
196 animationIterationCount?: Property.AnimationIterationCount | undefined;
197 /**
198 * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
199 *
200 * **Syntax**: `[ none | <keyframes-name> ]#`
201 *
202 * **Initial value**: `none`
203 *
204 * | Chrome | Firefox | Safari | Edge | IE |
205 * | :-----: | :-----: | :-----: | :----: | :----: |
206 * | **43** | **16** | **9** | **12** | **10** |
207 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
208 *
209 * @see https://developer.mozilla.org/docs/Web/CSS/animation-name
210 */
211 animationName?: Property.AnimationName | undefined;
212 /**
213 * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
214 *
215 * **Syntax**: `<single-animation-play-state>#`
216 *
217 * **Initial value**: `running`
218 *
219 * | Chrome | Firefox | Safari | Edge | IE |
220 * | :-----: | :-----: | :-----: | :----: | :----: |
221 * | **43** | **16** | **9** | **12** | **10** |
222 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
223 *
224 * @see https://developer.mozilla.org/docs/Web/CSS/animation-play-state
225 */
226 animationPlayState?: Property.AnimationPlayState | undefined;
227 /**
228 * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
229 *
230 * **Syntax**: `<easing-function>#`
231 *
232 * **Initial value**: `ease`
233 *
234 * | Chrome | Firefox | Safari | Edge | IE |
235 * | :-----: | :-----: | :-----: | :----: | :----: |
236 * | **43** | **16** | **9** | **12** | **10** |
237 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
238 *
239 * @see https://developer.mozilla.org/docs/Web/CSS/animation-timing-function
240 */
241 animationTimingFunction?: Property.AnimationTimingFunction | undefined;
242 /**
243 * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.
244 *
245 * **Syntax**: `none | auto | textfield | menulist-button | <compat-auto>`
246 *
247 * **Initial value**: `auto`
248 *
249 * | Chrome | Firefox | Safari | Edge | IE |
250 * | :-----: | :-----: | :---------: | :------: | :-: |
251 * | **84** | **80** | **3** _-x-_ | **84** | No |
252 * | 1 _-x-_ | 1 _-x-_ | | 12 _-x-_ | |
253 *
254 * @see https://developer.mozilla.org/docs/Web/CSS/appearance
255 */
256 appearance?: Property.Appearance | undefined;
257 /**
258 * The **`aspect-ratio`**  CSS property sets a **preferred aspect ratio** for the box, which will be used in the calculation of auto sizes and some other layout functions.
259 *
260 * **Syntax**: `auto | <ratio>`
261 *
262 * **Initial value**: `auto`
263 *
264 * | Chrome | Firefox | Safari | Edge | IE |
265 * | :----: | :-----: | :----: | :----: | :-: |
266 * | **88** | **89** | **15** | **88** | No |
267 *
268 * @see https://developer.mozilla.org/docs/Web/CSS/aspect-ratio
269 */
270 aspectRatio?: Property.AspectRatio | undefined;
271 /**
272 * The **`backdrop-filter`** CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything _behind_ the element, to see the effect you must make the element or its background at least partially transparent.
273 *
274 * **Syntax**: `none | <filter-function-list>`
275 *
276 * **Initial value**: `none`
277 *
278 * | Chrome | Firefox | Safari | Edge | IE |
279 * | :----: | :-----: | :---------: | :----: | :-: |
280 * | **76** | n/a | **9** _-x-_ | **17** | No |
281 *
282 * @see https://developer.mozilla.org/docs/Web/CSS/backdrop-filter
283 */
284 backdropFilter?: Property.BackdropFilter | undefined;
285 /**
286 * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
287 *
288 * **Syntax**: `visible | hidden`
289 *
290 * **Initial value**: `visible`
291 *
292 * | Chrome | Firefox | Safari | Edge | IE |
293 * | :------: | :------: | :-----------: | :----: | :----: |
294 * | **36** | **16** | **5.1** _-x-_ | **12** | **10** |
295 * | 12 _-x-_ | 10 _-x-_ | | | |
296 *
297 * @see https://developer.mozilla.org/docs/Web/CSS/backface-visibility
298 */
299 backfaceVisibility?: Property.BackfaceVisibility | undefined;
300 /**
301 * The **`background-attachment`** CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block.
302 *
303 * **Syntax**: `<attachment>#`
304 *
305 * **Initial value**: `scroll`
306 *
307 * | Chrome | Firefox | Safari | Edge | IE |
308 * | :----: | :-----: | :----: | :----: | :---: |
309 * | **1** | **1** | **1** | **12** | **4** |
310 *
311 * @see https://developer.mozilla.org/docs/Web/CSS/background-attachment
312 */
313 backgroundAttachment?: Property.BackgroundAttachment | undefined;
314 /**
315 * The **`background-blend-mode`** CSS property sets how an element's background images should blend with each other and with the element's background color.
316 *
317 * **Syntax**: `<blend-mode>#`
318 *
319 * **Initial value**: `normal`
320 *
321 * | Chrome | Firefox | Safari | Edge | IE |
322 * | :----: | :-----: | :----: | :----: | :-: |
323 * | **35** | **30** | **8** | **79** | No |
324 *
325 * @see https://developer.mozilla.org/docs/Web/CSS/background-blend-mode
326 */
327 backgroundBlendMode?: Property.BackgroundBlendMode | undefined;
328 /**
329 * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
330 *
331 * **Syntax**: `<box>#`
332 *
333 * **Initial value**: `border-box`
334 *
335 * | Chrome | Firefox | Safari | Edge | IE |
336 * | :----: | :-----: | :---------: | :----: | :---: |
337 * | **1** | **4** | **3** _-x-_ | **12** | **9** |
338 *
339 * @see https://developer.mozilla.org/docs/Web/CSS/background-clip
340 */
341 backgroundClip?: Property.BackgroundClip | undefined;
342 /**
343 * The **`background-color`** CSS property sets the background color of an element.
344 *
345 * **Syntax**: `<color>`
346 *
347 * **Initial value**: `transparent`
348 *
349 * | Chrome | Firefox | Safari | Edge | IE |
350 * | :----: | :-----: | :----: | :----: | :---: |
351 * | **1** | **1** | **1** | **12** | **4** |
352 *
353 * @see https://developer.mozilla.org/docs/Web/CSS/background-color
354 */
355 backgroundColor?: Property.BackgroundColor | undefined;
356 /**
357 * The **`background-image`** CSS property sets one or more background images on an element.
358 *
359 * **Syntax**: `<bg-image>#`
360 *
361 * **Initial value**: `none`
362 *
363 * | Chrome | Firefox | Safari | Edge | IE |
364 * | :----: | :-----: | :----: | :----: | :---: |
365 * | **1** | **1** | **1** | **12** | **4** |
366 *
367 * @see https://developer.mozilla.org/docs/Web/CSS/background-image
368 */
369 backgroundImage?: Property.BackgroundImage | undefined;
370 /**
371 * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
372 *
373 * **Syntax**: `<box>#`
374 *
375 * **Initial value**: `padding-box`
376 *
377 * | Chrome | Firefox | Safari | Edge | IE |
378 * | :----: | :-----: | :----: | :----: | :---: |
379 * | **1** | **4** | **3** | **12** | **9** |
380 *
381 * @see https://developer.mozilla.org/docs/Web/CSS/background-origin
382 */
383 backgroundOrigin?: Property.BackgroundOrigin | undefined;
384 /**
385 * The **`background-position-x`** CSS property sets the initial horizontal position for each background image. The position is relative to the position layer set by `background-origin`.
386 *
387 * **Syntax**: `[ center | [ [ left | right | x-start | x-end ]? <length-percentage>? ]! ]#`
388 *
389 * **Initial value**: `left`
390 *
391 * | Chrome | Firefox | Safari | Edge | IE |
392 * | :----: | :-----: | :----: | :----: | :---: |
393 * | **1** | **49** | **1** | **12** | **6** |
394 *
395 * @see https://developer.mozilla.org/docs/Web/CSS/background-position-x
396 */
397 backgroundPositionX?: Property.BackgroundPositionX<TLength> | undefined;
398 /**
399 * The **`background-position-y`** CSS property sets the initial vertical position for each background image. The position is relative to the position layer set by `background-origin`.
400 *
401 * **Syntax**: `[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#`
402 *
403 * **Initial value**: `top`
404 *
405 * | Chrome | Firefox | Safari | Edge | IE |
406 * | :----: | :-----: | :----: | :----: | :---: |
407 * | **1** | **49** | **1** | **12** | **6** |
408 *
409 * @see https://developer.mozilla.org/docs/Web/CSS/background-position-y
410 */
411 backgroundPositionY?: Property.BackgroundPositionY<TLength> | undefined;
412 /**
413 * The **`background-repeat`** CSS property sets how background images are repeated. A background image can be repeated along the horizontal and vertical axes, or not repeated at all.
414 *
415 * **Syntax**: `<repeat-style>#`
416 *
417 * **Initial value**: `repeat`
418 *
419 * | Chrome | Firefox | Safari | Edge | IE |
420 * | :----: | :-----: | :----: | :----: | :---: |
421 * | **1** | **1** | **1** | **12** | **4** |
422 *
423 * @see https://developer.mozilla.org/docs/Web/CSS/background-repeat
424 */
425 backgroundRepeat?: Property.BackgroundRepeat | undefined;
426 /**
427 * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
428 *
429 * **Syntax**: `<bg-size>#`
430 *
431 * **Initial value**: `auto auto`
432 *
433 * | Chrome | Firefox | Safari | Edge | IE |
434 * | :-----: | :-----: | :-----: | :----: | :---: |
435 * | **3** | **4** | **5** | **12** | **9** |
436 * | 1 _-x-_ | | 3 _-x-_ | | |
437 *
438 * @see https://developer.mozilla.org/docs/Web/CSS/background-size
439 */
440 backgroundSize?: Property.BackgroundSize<TLength> | undefined;
441 /**
442 * **Syntax**: `clip | ellipsis | <string>`
443 *
444 * **Initial value**: `clip`
445 */
446 blockOverflow?: Property.BlockOverflow | undefined;
447 /**
448 * The **`block-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.
449 *
450 * **Syntax**: `<'width'>`
451 *
452 * **Initial value**: `auto`
453 *
454 * | Chrome | Firefox | Safari | Edge | IE |
455 * | :----: | :-----: | :------: | :----: | :-: |
456 * | **57** | **41** | **12.1** | **79** | No |
457 *
458 * @see https://developer.mozilla.org/docs/Web/CSS/block-size
459 */
460 blockSize?: Property.BlockSize<TLength> | undefined;
461 /**
462 * The **`border-block-color`** CSS property defines the color of the logical block borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
463 *
464 * **Syntax**: `<'border-top-color'>{1,2}`
465 *
466 * **Initial value**: `currentcolor`
467 *
468 * | Chrome | Firefox | Safari | Edge | IE |
469 * | :----: | :-----: | :------: | :----: | :-: |
470 * | **87** | **66** | **14.1** | **87** | No |
471 *
472 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-color
473 */
474 borderBlockColor?: Property.BorderBlockColor | undefined;
475 /**
476 * The **`border-block-end-color`** CSS property defines the color of the logical block-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
477 *
478 * **Syntax**: `<'border-top-color'>`
479 *
480 * **Initial value**: `currentcolor`
481 *
482 * | Chrome | Firefox | Safari | Edge | IE |
483 * | :----: | :-----: | :------: | :----: | :-: |
484 * | **69** | **41** | **12.1** | **79** | No |
485 *
486 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-color
487 */
488 borderBlockEndColor?: Property.BorderBlockEndColor | undefined;
489 /**
490 * The **`border-block-end-style`** CSS property defines the style of the logical block-end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
491 *
492 * **Syntax**: `<'border-top-style'>`
493 *
494 * **Initial value**: `none`
495 *
496 * | Chrome | Firefox | Safari | Edge | IE |
497 * | :----: | :-----: | :------: | :----: | :-: |
498 * | **69** | **41** | **12.1** | **79** | No |
499 *
500 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-style
501 */
502 borderBlockEndStyle?: Property.BorderBlockEndStyle | undefined;
503 /**
504 * The **`border-block-end-width`** CSS property defines the width of the logical block-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
505 *
506 * **Syntax**: `<'border-top-width'>`
507 *
508 * **Initial value**: `medium`
509 *
510 * | Chrome | Firefox | Safari | Edge | IE |
511 * | :----: | :-----: | :------: | :----: | :-: |
512 * | **69** | **41** | **12.1** | **79** | No |
513 *
514 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-width
515 */
516 borderBlockEndWidth?: Property.BorderBlockEndWidth<TLength> | undefined;
517 /**
518 * The **`border-block-start-color`** CSS property defines the color of the logical block-start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
519 *
520 * **Syntax**: `<'border-top-color'>`
521 *
522 * **Initial value**: `currentcolor`
523 *
524 * | Chrome | Firefox | Safari | Edge | IE |
525 * | :----: | :-----: | :------: | :----: | :-: |
526 * | **69** | **41** | **12.1** | **79** | No |
527 *
528 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-color
529 */
530 borderBlockStartColor?: Property.BorderBlockStartColor | undefined;
531 /**
532 * The **`border-block-start-style`** CSS property defines the style of the logical block start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
533 *
534 * **Syntax**: `<'border-top-style'>`
535 *
536 * **Initial value**: `none`
537 *
538 * | Chrome | Firefox | Safari | Edge | IE |
539 * | :----: | :-----: | :------: | :----: | :-: |
540 * | **69** | **41** | **12.1** | **79** | No |
541 *
542 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-style
543 */
544 borderBlockStartStyle?: Property.BorderBlockStartStyle | undefined;
545 /**
546 * The **`border-block-start-width`** CSS property defines the width of the logical block-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
547 *
548 * **Syntax**: `<'border-top-width'>`
549 *
550 * **Initial value**: `medium`
551 *
552 * | Chrome | Firefox | Safari | Edge | IE |
553 * | :----: | :-----: | :------: | :----: | :-: |
554 * | **69** | **41** | **12.1** | **79** | No |
555 *
556 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-width
557 */
558 borderBlockStartWidth?: Property.BorderBlockStartWidth<TLength> | undefined;
559 /**
560 * The **`border-block-style`** CSS property defines the style of the logical block borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
561 *
562 * **Syntax**: `<'border-top-style'>`
563 *
564 * **Initial value**: `none`
565 *
566 * | Chrome | Firefox | Safari | Edge | IE |
567 * | :----: | :-----: | :------: | :----: | :-: |
568 * | **87** | **66** | **14.1** | **87** | No |
569 *
570 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-style
571 */
572 borderBlockStyle?: Property.BorderBlockStyle | undefined;
573 /**
574 * The **`border-block-width`** CSS property defines the width of the logical block borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
575 *
576 * **Syntax**: `<'border-top-width'>`
577 *
578 * **Initial value**: `medium`
579 *
580 * | Chrome | Firefox | Safari | Edge | IE |
581 * | :----: | :-----: | :------: | :----: | :-: |
582 * | **87** | **66** | **14.1** | **87** | No |
583 *
584 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-width
585 */
586 borderBlockWidth?: Property.BorderBlockWidth<TLength> | undefined;
587 /**
588 * The **`border-bottom-color`** CSS property sets the color of an element's bottom border. It can also be set with the shorthand CSS properties `border-color` or `border-bottom`.
589 *
590 * **Syntax**: `<'border-top-color'>`
591 *
592 * **Initial value**: `currentcolor`
593 *
594 * | Chrome | Firefox | Safari | Edge | IE |
595 * | :----: | :-----: | :----: | :----: | :---: |
596 * | **1** | **1** | **1** | **12** | **4** |
597 *
598 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-color
599 */
600 borderBottomColor?: Property.BorderBottomColor | undefined;
601 /**
602 * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
603 *
604 * **Syntax**: `<length-percentage>{1,2}`
605 *
606 * **Initial value**: `0`
607 *
608 * | Chrome | Firefox | Safari | Edge | IE |
609 * | :-----: | :-----: | :-----: | :----: | :---: |
610 * | **4** | **4** | **5** | **12** | **9** |
611 * | 1 _-x-_ | | 3 _-x-_ | | |
612 *
613 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius
614 */
615 borderBottomLeftRadius?: Property.BorderBottomLeftRadius<TLength> | undefined;
616 /**
617 * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
618 *
619 * **Syntax**: `<length-percentage>{1,2}`
620 *
621 * **Initial value**: `0`
622 *
623 * | Chrome | Firefox | Safari | Edge | IE |
624 * | :-----: | :-----: | :-----: | :----: | :---: |
625 * | **4** | **4** | **5** | **12** | **9** |
626 * | 1 _-x-_ | | 3 _-x-_ | | |
627 *
628 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius
629 */
630 borderBottomRightRadius?: Property.BorderBottomRightRadius<TLength> | undefined;
631 /**
632 * The **`border-bottom-style`** CSS property sets the line style of an element's bottom `border`.
633 *
634 * **Syntax**: `<line-style>`
635 *
636 * **Initial value**: `none`
637 *
638 * | Chrome | Firefox | Safari | Edge | IE |
639 * | :----: | :-----: | :----: | :----: | :-----: |
640 * | **1** | **1** | **1** | **12** | **5.5** |
641 *
642 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-style
643 */
644 borderBottomStyle?: Property.BorderBottomStyle | undefined;
645 /**
646 * The **`border-bottom-width`** CSS property sets the width of the bottom border of an element.
647 *
648 * **Syntax**: `<line-width>`
649 *
650 * **Initial value**: `medium`
651 *
652 * | Chrome | Firefox | Safari | Edge | IE |
653 * | :----: | :-----: | :----: | :----: | :---: |
654 * | **1** | **1** | **1** | **12** | **4** |
655 *
656 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-width
657 */
658 borderBottomWidth?: Property.BorderBottomWidth<TLength> | undefined;
659 /**
660 * The **`border-collapse`** CSS property sets whether cells inside a `<table>` have shared or separate borders.
661 *
662 * **Syntax**: `collapse | separate`
663 *
664 * **Initial value**: `separate`
665 *
666 * | Chrome | Firefox | Safari | Edge | IE |
667 * | :----: | :-----: | :-----: | :----: | :---: |
668 * | **1** | **1** | **1.2** | **12** | **5** |
669 *
670 * @see https://developer.mozilla.org/docs/Web/CSS/border-collapse
671 */
672 borderCollapse?: Property.BorderCollapse | undefined;
673 /**
674 * The **`border-end-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
675 *
676 * **Syntax**: `<length-percentage>{1,2}`
677 *
678 * **Initial value**: `0`
679 *
680 * | Chrome | Firefox | Safari | Edge | IE |
681 * | :----: | :-----: | :----: | :----: | :-: |
682 * | **89** | **66** | **15** | **89** | No |
683 *
684 * @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius
685 */
686 borderEndEndRadius?: Property.BorderEndEndRadius<TLength> | undefined;
687 /**
688 * The **`border-end-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
689 *
690 * **Syntax**: `<length-percentage>{1,2}`
691 *
692 * **Initial value**: `0`
693 *
694 * | Chrome | Firefox | Safari | Edge | IE |
695 * | :----: | :-----: | :----: | :----: | :-: |
696 * | **89** | **66** | **15** | **89** | No |
697 *
698 * @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius
699 */
700 borderEndStartRadius?: Property.BorderEndStartRadius<TLength> | undefined;
701 /**
702 * The **`border-image-outset`** CSS property sets the distance by which an element's border image is set out from its border box.
703 *
704 * **Syntax**: `[ <length> | <number> ]{1,4}`
705 *
706 * **Initial value**: `0`
707 *
708 * | Chrome | Firefox | Safari | Edge | IE |
709 * | :----: | :-----: | :----: | :----: | :----: |
710 * | **15** | **15** | **6** | **12** | **11** |
711 *
712 * @see https://developer.mozilla.org/docs/Web/CSS/border-image-outset
713 */
714 borderImageOutset?: Property.BorderImageOutset<TLength> | undefined;
715 /**
716 * The **`border-image-repeat`** CSS property defines how the edge regions of a source image are adjusted to fit the dimensions of an element's border image.
717 *
718 * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`
719 *
720 * **Initial value**: `stretch`
721 *
722 * | Chrome | Firefox | Safari | Edge | IE |
723 * | :----: | :-----: | :----: | :----: | :----: |
724 * | **15** | **15** | **6** | **12** | **11** |
725 *
726 * @see https://developer.mozilla.org/docs/Web/CSS/border-image-repeat
727 */
728 borderImageRepeat?: Property.BorderImageRepeat | undefined;
729 /**
730 * The **`border-image-slice`** CSS property divides the image specified by `border-image-source` into regions. These regions form the components of an element's border image.
731 *
732 * **Syntax**: `<number-percentage>{1,4} && fill?`
733 *
734 * **Initial value**: `100%`
735 *
736 * | Chrome | Firefox | Safari | Edge | IE |
737 * | :----: | :-----: | :----: | :----: | :----: |
738 * | **15** | **15** | **6** | **12** | **11** |
739 *
740 * @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice
741 */
742 borderImageSlice?: Property.BorderImageSlice | undefined;
743 /**
744 * The **`border-image-source`** CSS property sets the source image used to create an element's border image.
745 *
746 * **Syntax**: `none | <image>`
747 *
748 * **Initial value**: `none`
749 *
750 * | Chrome | Firefox | Safari | Edge | IE |
751 * | :----: | :-----: | :----: | :----: | :----: |
752 * | **15** | **15** | **6** | **12** | **11** |
753 *
754 * @see https://developer.mozilla.org/docs/Web/CSS/border-image-source
755 */
756 borderImageSource?: Property.BorderImageSource | undefined;
757 /**
758 * The **`border-image-width`** CSS property sets the width of an element's border image.
759 *
760 * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`
761 *
762 * **Initial value**: `1`
763 *
764 * | Chrome | Firefox | Safari | Edge | IE |
765 * | :----: | :-----: | :----: | :----: | :----: |
766 * | **15** | **13** | **6** | **12** | **11** |
767 *
768 * @see https://developer.mozilla.org/docs/Web/CSS/border-image-width
769 */
770 borderImageWidth?: Property.BorderImageWidth<TLength> | undefined;
771 /**
772 * The **`border-inline-color`** CSS property defines the color of the logical inline borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
773 *
774 * **Syntax**: `<'border-top-color'>{1,2}`
775 *
776 * **Initial value**: `currentcolor`
777 *
778 * | Chrome | Firefox | Safari | Edge | IE |
779 * | :----: | :-----: | :------: | :----: | :-: |
780 * | **87** | **66** | **14.1** | **87** | No |
781 *
782 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color
783 */
784 borderInlineColor?: Property.BorderInlineColor | undefined;
785 /**
786 * The **`border-inline-end-color`** CSS property defines the color of the logical inline-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
787 *
788 * **Syntax**: `<'border-top-color'>`
789 *
790 * **Initial value**: `currentcolor`
791 *
792 * | Chrome | Firefox | Safari | Edge | IE |
793 * | :----: | :-------------------------: | :------: | :----: | :-: |
794 * | **69** | **41** | **12.1** | **79** | No |
795 * | | 3 _(-moz-border-end-color)_ | | | |
796 *
797 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color
798 */
799 borderInlineEndColor?: Property.BorderInlineEndColor | undefined;
800 /**
801 * The **`border-inline-end-style`** CSS property defines the style of the logical inline end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
802 *
803 * **Syntax**: `<'border-top-style'>`
804 *
805 * **Initial value**: `none`
806 *
807 * | Chrome | Firefox | Safari | Edge | IE |
808 * | :----: | :-------------------------: | :------: | :----: | :-: |
809 * | **69** | **41** | **12.1** | **79** | No |
810 * | | 3 _(-moz-border-end-style)_ | | | |
811 *
812 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style
813 */
814 borderInlineEndStyle?: Property.BorderInlineEndStyle | undefined;
815 /**
816 * The **`border-inline-end-width`** CSS property defines the width of the logical inline-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
817 *
818 * **Syntax**: `<'border-top-width'>`
819 *
820 * **Initial value**: `medium`
821 *
822 * | Chrome | Firefox | Safari | Edge | IE |
823 * | :----: | :-------------------------: | :------: | :----: | :-: |
824 * | **69** | **41** | **12.1** | **79** | No |
825 * | | 3 _(-moz-border-end-width)_ | | | |
826 *
827 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width
828 */
829 borderInlineEndWidth?: Property.BorderInlineEndWidth<TLength> | undefined;
830 /**
831 * The **`border-inline-start-color`** CSS property defines the color of the logical inline start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
832 *
833 * **Syntax**: `<'border-top-color'>`
834 *
835 * **Initial value**: `currentcolor`
836 *
837 * | Chrome | Firefox | Safari | Edge | IE |
838 * | :----: | :---------------------------: | :------: | :----: | :-: |
839 * | **69** | **41** | **12.1** | **79** | No |
840 * | | 3 _(-moz-border-start-color)_ | | | |
841 *
842 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color
843 */
844 borderInlineStartColor?: Property.BorderInlineStartColor | undefined;
845 /**
846 * The **`border-inline-start-style`** CSS property defines the style of the logical inline start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
847 *
848 * **Syntax**: `<'border-top-style'>`
849 *
850 * **Initial value**: `none`
851 *
852 * | Chrome | Firefox | Safari | Edge | IE |
853 * | :----: | :---------------------------: | :------: | :----: | :-: |
854 * | **69** | **41** | **12.1** | **79** | No |
855 * | | 3 _(-moz-border-start-style)_ | | | |
856 *
857 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style
858 */
859 borderInlineStartStyle?: Property.BorderInlineStartStyle | undefined;
860 /**
861 * The **`border-inline-start-width`** CSS property defines the width of the logical inline-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
862 *
863 * **Syntax**: `<'border-top-width'>`
864 *
865 * **Initial value**: `medium`
866 *
867 * | Chrome | Firefox | Safari | Edge | IE |
868 * | :----: | :-----: | :------: | :----: | :-: |
869 * | **69** | **41** | **12.1** | **79** | No |
870 *
871 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width
872 */
873 borderInlineStartWidth?: Property.BorderInlineStartWidth<TLength> | undefined;
874 /**
875 * The **`border-inline-style`** CSS property defines the style of the logical inline borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
876 *
877 * **Syntax**: `<'border-top-style'>`
878 *
879 * **Initial value**: `none`
880 *
881 * | Chrome | Firefox | Safari | Edge | IE |
882 * | :----: | :-----: | :------: | :----: | :-: |
883 * | **87** | **66** | **14.1** | **87** | No |
884 *
885 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style
886 */
887 borderInlineStyle?: Property.BorderInlineStyle | undefined;
888 /**
889 * The **`border-inline-width`** CSS property defines the width of the logical inline borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
890 *
891 * **Syntax**: `<'border-top-width'>`
892 *
893 * **Initial value**: `medium`
894 *
895 * | Chrome | Firefox | Safari | Edge | IE |
896 * | :----: | :-----: | :------: | :----: | :-: |
897 * | **87** | **66** | **14.1** | **87** | No |
898 *
899 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width
900 */
901 borderInlineWidth?: Property.BorderInlineWidth<TLength> | undefined;
902 /**
903 * The **`border-left-color`** CSS property sets the color of an element's left border. It can also be set with the shorthand CSS properties `border-color` or `border-left`.
904 *
905 * **Syntax**: `<color>`
906 *
907 * **Initial value**: `currentcolor`
908 *
909 * | Chrome | Firefox | Safari | Edge | IE |
910 * | :----: | :-----: | :----: | :----: | :---: |
911 * | **1** | **1** | **1** | **12** | **4** |
912 *
913 * @see https://developer.mozilla.org/docs/Web/CSS/border-left-color
914 */
915 borderLeftColor?: Property.BorderLeftColor | undefined;
916 /**
917 * The **`border-left-style`** CSS property sets the line style of an element's left `border`.
918 *
919 * **Syntax**: `<line-style>`
920 *
921 * **Initial value**: `none`
922 *
923 * | Chrome | Firefox | Safari | Edge | IE |
924 * | :----: | :-----: | :----: | :----: | :-----: |
925 * | **1** | **1** | **1** | **12** | **5.5** |
926 *
927 * @see https://developer.mozilla.org/docs/Web/CSS/border-left-style
928 */
929 borderLeftStyle?: Property.BorderLeftStyle | undefined;
930 /**
931 * The **`border-left-width`** CSS property sets the width of the left border of an element.
932 *
933 * **Syntax**: `<line-width>`
934 *
935 * **Initial value**: `medium`
936 *
937 * | Chrome | Firefox | Safari | Edge | IE |
938 * | :----: | :-----: | :----: | :----: | :---: |
939 * | **1** | **1** | **1** | **12** | **4** |
940 *
941 * @see https://developer.mozilla.org/docs/Web/CSS/border-left-width
942 */
943 borderLeftWidth?: Property.BorderLeftWidth<TLength> | undefined;
944 /**
945 * The **`border-right-color`** CSS property sets the color of an element's right border. It can also be set with the shorthand CSS properties `border-color` or `border-right`.
946 *
947 * **Syntax**: `<color>`
948 *
949 * **Initial value**: `currentcolor`
950 *
951 * | Chrome | Firefox | Safari | Edge | IE |
952 * | :----: | :-----: | :----: | :----: | :---: |
953 * | **1** | **1** | **1** | **12** | **4** |
954 *
955 * @see https://developer.mozilla.org/docs/Web/CSS/border-right-color
956 */
957 borderRightColor?: Property.BorderRightColor | undefined;
958 /**
959 * The **`border-right-style`** CSS property sets the line style of an element's right `border`.
960 *
961 * **Syntax**: `<line-style>`
962 *
963 * **Initial value**: `none`
964 *
965 * | Chrome | Firefox | Safari | Edge | IE |
966 * | :----: | :-----: | :----: | :----: | :-----: |
967 * | **1** | **1** | **1** | **12** | **5.5** |
968 *
969 * @see https://developer.mozilla.org/docs/Web/CSS/border-right-style
970 */
971 borderRightStyle?: Property.BorderRightStyle | undefined;
972 /**
973 * The **`border-right-width`** CSS property sets the width of the right border of an element.
974 *
975 * **Syntax**: `<line-width>`
976 *
977 * **Initial value**: `medium`
978 *
979 * | Chrome | Firefox | Safari | Edge | IE |
980 * | :----: | :-----: | :----: | :----: | :---: |
981 * | **1** | **1** | **1** | **12** | **4** |
982 *
983 * @see https://developer.mozilla.org/docs/Web/CSS/border-right-width
984 */
985 borderRightWidth?: Property.BorderRightWidth<TLength> | undefined;
986 /**
987 * The **`border-spacing`** CSS property sets the distance between the borders of adjacent `<table>` cells. This property applies only when `border-collapse` is `separate`.
988 *
989 * **Syntax**: `<length> <length>?`
990 *
991 * **Initial value**: `0`
992 *
993 * | Chrome | Firefox | Safari | Edge | IE |
994 * | :----: | :-----: | :----: | :----: | :---: |
995 * | **1** | **1** | **1** | **12** | **8** |
996 *
997 * @see https://developer.mozilla.org/docs/Web/CSS/border-spacing
998 */
999 borderSpacing?: Property.BorderSpacing<TLength> | undefined;
1000 /**
1001 * The **`border-start-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
1002 *
1003 * **Syntax**: `<length-percentage>{1,2}`
1004 *
1005 * **Initial value**: `0`
1006 *
1007 * | Chrome | Firefox | Safari | Edge | IE |
1008 * | :----: | :-----: | :----: | :----: | :-: |
1009 * | **89** | **66** | **15** | **89** | No |
1010 *
1011 * @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius
1012 */
1013 borderStartEndRadius?: Property.BorderStartEndRadius<TLength> | undefined;
1014 /**
1015 * The **`border-start-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
1016 *
1017 * **Syntax**: `<length-percentage>{1,2}`
1018 *
1019 * **Initial value**: `0`
1020 *
1021 * | Chrome | Firefox | Safari | Edge | IE |
1022 * | :----: | :-----: | :----: | :----: | :-: |
1023 * | **89** | **66** | **15** | **89** | No |
1024 *
1025 * @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius
1026 */
1027 borderStartStartRadius?: Property.BorderStartStartRadius<TLength> | undefined;
1028 /**
1029 * The **`border-top-color`** CSS property sets the color of an element's top border. It can also be set with the shorthand CSS properties `border-color` or `border-top`.
1030 *
1031 * **Syntax**: `<color>`
1032 *
1033 * **Initial value**: `currentcolor`
1034 *
1035 * | Chrome | Firefox | Safari | Edge | IE |
1036 * | :----: | :-----: | :----: | :----: | :---: |
1037 * | **1** | **1** | **1** | **12** | **4** |
1038 *
1039 * @see https://developer.mozilla.org/docs/Web/CSS/border-top-color
1040 */
1041 borderTopColor?: Property.BorderTopColor | undefined;
1042 /**
1043 * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
1044 *
1045 * **Syntax**: `<length-percentage>{1,2}`
1046 *
1047 * **Initial value**: `0`
1048 *
1049 * | Chrome | Firefox | Safari | Edge | IE |
1050 * | :-----: | :-----: | :-----: | :----: | :---: |
1051 * | **4** | **4** | **5** | **12** | **9** |
1052 * | 1 _-x-_ | | 3 _-x-_ | | |
1053 *
1054 * @see https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius
1055 */
1056 borderTopLeftRadius?: Property.BorderTopLeftRadius<TLength> | undefined;
1057 /**
1058 * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
1059 *
1060 * **Syntax**: `<length-percentage>{1,2}`
1061 *
1062 * **Initial value**: `0`
1063 *
1064 * | Chrome | Firefox | Safari | Edge | IE |
1065 * | :-----: | :-----: | :-----: | :----: | :---: |
1066 * | **4** | **4** | **5** | **12** | **9** |
1067 * | 1 _-x-_ | | 3 _-x-_ | | |
1068 *
1069 * @see https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius
1070 */
1071 borderTopRightRadius?: Property.BorderTopRightRadius<TLength> | undefined;
1072 /**
1073 * The **`border-top-style`** CSS property sets the line style of an element's top `border`.
1074 *
1075 * **Syntax**: `<line-style>`
1076 *
1077 * **Initial value**: `none`
1078 *
1079 * | Chrome | Firefox | Safari | Edge | IE |
1080 * | :----: | :-----: | :----: | :----: | :-----: |
1081 * | **1** | **1** | **1** | **12** | **5.5** |
1082 *
1083 * @see https://developer.mozilla.org/docs/Web/CSS/border-top-style
1084 */
1085 borderTopStyle?: Property.BorderTopStyle | undefined;
1086 /**
1087 * The **`border-top-width`** CSS property sets the width of the top border of an element.
1088 *
1089 * **Syntax**: `<line-width>`
1090 *
1091 * **Initial value**: `medium`
1092 *
1093 * | Chrome | Firefox | Safari | Edge | IE |
1094 * | :----: | :-----: | :----: | :----: | :---: |
1095 * | **1** | **1** | **1** | **12** | **4** |
1096 *
1097 * @see https://developer.mozilla.org/docs/Web/CSS/border-top-width
1098 */
1099 borderTopWidth?: Property.BorderTopWidth<TLength> | undefined;
1100 /**
1101 * The **`bottom`** CSS property participates in setting the vertical position of a positioned element. It has no effect on non-positioned elements.
1102 *
1103 * **Syntax**: `<length> | <percentage> | auto`
1104 *
1105 * **Initial value**: `auto`
1106 *
1107 * | Chrome | Firefox | Safari | Edge | IE |
1108 * | :----: | :-----: | :----: | :----: | :---: |
1109 * | **1** | **1** | **1** | **12** | **5** |
1110 *
1111 * @see https://developer.mozilla.org/docs/Web/CSS/bottom
1112 */
1113 bottom?: Property.Bottom<TLength> | undefined;
1114 /**
1115 * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
1116 *
1117 * **Syntax**: `slice | clone`
1118 *
1119 * **Initial value**: `slice`
1120 *
1121 * | Chrome | Firefox | Safari | Edge | IE |
1122 * | :----------: | :-----: | :---------: | :----------: | :-: |
1123 * | **22** _-x-_ | **32** | **7** _-x-_ | **79** _-x-_ | No |
1124 *
1125 * @see https://developer.mozilla.org/docs/Web/CSS/box-decoration-break
1126 */
1127 boxDecorationBreak?: Property.BoxDecorationBreak | undefined;
1128 /**
1129 * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.
1130 *
1131 * **Syntax**: `none | <shadow>#`
1132 *
1133 * **Initial value**: `none`
1134 *
1135 * | Chrome | Firefox | Safari | Edge | IE |
1136 * | :-----: | :-----: | :-----: | :----: | :---: |
1137 * | **10** | **4** | **5.1** | **12** | **9** |
1138 * | 1 _-x-_ | | 3 _-x-_ | | |
1139 *
1140 * @see https://developer.mozilla.org/docs/Web/CSS/box-shadow
1141 */
1142 boxShadow?: Property.BoxShadow | undefined;
1143 /**
1144 * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
1145 *
1146 * **Syntax**: `content-box | border-box`
1147 *
1148 * **Initial value**: `content-box`
1149 *
1150 * | Chrome | Firefox | Safari | Edge | IE |
1151 * | :-----: | :-----: | :-----: | :----: | :---: |
1152 * | **10** | **29** | **5.1** | **12** | **8** |
1153 * | 1 _-x-_ | 1 _-x-_ | 3 _-x-_ | | |
1154 *
1155 * @see https://developer.mozilla.org/docs/Web/CSS/box-sizing
1156 */
1157 boxSizing?: Property.BoxSizing | undefined;
1158 /**
1159 * The **`break-after`** CSS property sets how page, column, or region breaks should behave after a generated box. If there is no generated box, the property is ignored.
1160 *
1161 * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`
1162 *
1163 * **Initial value**: `auto`
1164 *
1165 * ---
1166 *
1167 * _Supported in Multi-column Layout_
1168 *
1169 * | Chrome | Firefox | Safari | Edge | IE |
1170 * | :----: | :-----: | :----: | :----: | :----: |
1171 * | **50** | **65** | No | **12** | **10** |
1172 *
1173 * ---
1174 *
1175 * _Supported in Paged Media_
1176 *
1177 * | Chrome | Firefox | Safari | Edge | IE |
1178 * | :----: | :-----: | :----: | :----: | :----: |
1179 * | **50** | **65** | **10** | **12** | **10** |
1180 *
1181 * ---
1182 *
1183 * @see https://developer.mozilla.org/docs/Web/CSS/break-after
1184 */
1185 breakAfter?: Property.BreakAfter | undefined;
1186 /**
1187 * The **`break-before`** CSS property sets how page, column, or region breaks should behave before a generated box. If there is no generated box, the property is ignored.
1188 *
1189 * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`
1190 *
1191 * **Initial value**: `auto`
1192 *
1193 * ---
1194 *
1195 * _Supported in Multi-column Layout_
1196 *
1197 * | Chrome | Firefox | Safari | Edge | IE |
1198 * | :----: | :-----: | :----: | :----: | :----: |
1199 * | **50** | **65** | No | **12** | **10** |
1200 *
1201 * ---
1202 *
1203 * _Supported in Paged Media_
1204 *
1205 * | Chrome | Firefox | Safari | Edge | IE |
1206 * | :----: | :-----: | :----: | :----: | :----: |
1207 * | **50** | **65** | **10** | **12** | **10** |
1208 *
1209 * ---
1210 *
1211 * @see https://developer.mozilla.org/docs/Web/CSS/break-before
1212 */
1213 breakBefore?: Property.BreakBefore | undefined;
1214 /**
1215 * The **`break-inside`** CSS property sets how page, column, or region breaks should behave inside a generated box. If there is no generated box, the property is ignored.
1216 *
1217 * **Syntax**: `auto | avoid | avoid-page | avoid-column | avoid-region`
1218 *
1219 * **Initial value**: `auto`
1220 *
1221 * ---
1222 *
1223 * _Supported in Multi-column Layout_
1224 *
1225 * | Chrome | Firefox | Safari | Edge | IE |
1226 * | :----: | :-----: | :----: | :----: | :----: |
1227 * | **50** | **65** | **10** | **12** | **10** |
1228 *
1229 * ---
1230 *
1231 * _Supported in Paged Media_
1232 *
1233 * | Chrome | Firefox | Safari | Edge | IE |
1234 * | :----: | :-----: | :----: | :----: | :----: |
1235 * | **50** | **65** | **10** | **12** | **10** |
1236 *
1237 * ---
1238 *
1239 * @see https://developer.mozilla.org/docs/Web/CSS/break-inside
1240 */
1241 breakInside?: Property.BreakInside | undefined;
1242 /**
1243 * The **`caption-side`** CSS property puts the content of a table's `<caption>` on the specified side. The values are relative to the `writing-mode` of the table.
1244 *
1245 * **Syntax**: `top | bottom | block-start | block-end | inline-start | inline-end`
1246 *
1247 * **Initial value**: `top`
1248 *
1249 * | Chrome | Firefox | Safari | Edge | IE |
1250 * | :----: | :-----: | :----: | :----: | :---: |
1251 * | **1** | **1** | **1** | **12** | **8** |
1252 *
1253 * @see https://developer.mozilla.org/docs/Web/CSS/caption-side
1254 */
1255 captionSide?: Property.CaptionSide | undefined;
1256 /**
1257 * The **`caret-color`** CSS property sets the color of the **insertion caret**, the visible marker where the next character typed will be inserted. This is sometimes referred to as the **text input cursor**. The caret appears in elements such as `<input>` or those with the `contenteditable` attribute. The caret is typically a thin vertical line that flashes to help make it more noticeable. By default, it is black, but its color can be altered with this property.
1258 *
1259 * **Syntax**: `auto | <color>`
1260 *
1261 * **Initial value**: `auto`
1262 *
1263 * | Chrome | Firefox | Safari | Edge | IE |
1264 * | :----: | :-----: | :------: | :----: | :-: |
1265 * | **57** | **53** | **11.1** | **79** | No |
1266 *
1267 * @see https://developer.mozilla.org/docs/Web/CSS/caret-color
1268 */
1269 caretColor?: Property.CaretColor | undefined;
1270 /**
1271 * The **`clear`** CSS property sets whether an element must be moved below (cleared) floating elements that precede it. The `clear` property applies to floating and non-floating elements.
1272 *
1273 * **Syntax**: `none | left | right | both | inline-start | inline-end`
1274 *
1275 * **Initial value**: `none`
1276 *
1277 * | Chrome | Firefox | Safari | Edge | IE |
1278 * | :----: | :-----: | :----: | :----: | :---: |
1279 * | **1** | **1** | **1** | **12** | **4** |
1280 *
1281 * @see https://developer.mozilla.org/docs/Web/CSS/clear
1282 */
1283 clear?: Property.Clear | undefined;
1284 /**
1285 * The `**clip-path**` CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden.
1286 *
1287 * **Syntax**: `<clip-source> | [ <basic-shape> || <geometry-box> ] | none`
1288 *
1289 * **Initial value**: `none`
1290 *
1291 * | Chrome | Firefox | Safari | Edge | IE |
1292 * | :------: | :-----: | :-------: | :----: | :----: |
1293 * | **55** | **3.5** | **9.1** | **12** | **10** |
1294 * | 23 _-x-_ | | 6.1 _-x-_ | | |
1295 *
1296 * @see https://developer.mozilla.org/docs/Web/CSS/clip-path
1297 */
1298 clipPath?: Property.ClipPath | undefined;
1299 /**
1300 * The **`color`** CSS property sets the foreground color value of an element's text and text decorations, and sets the `<currentcolor>` value. `currentcolor` may be used as an indirect value on _other_ properties and is the default for other color properties, such as `border-color`.
1301 *
1302 * **Syntax**: `<color>`
1303 *
1304 * **Initial value**: Varies from one browser to another
1305 *
1306 * | Chrome | Firefox | Safari | Edge | IE |
1307 * | :----: | :-----: | :----: | :----: | :---: |
1308 * | **1** | **1** | **1** | **12** | **3** |
1309 *
1310 * @see https://developer.mozilla.org/docs/Web/CSS/color
1311 */
1312 color?: Property.Color | undefined;
1313 /**
1314 * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.
1315 *
1316 * **Syntax**: `economy | exact`
1317 *
1318 * **Initial value**: `economy`
1319 *
1320 * | Chrome | Firefox | Safari | Edge | IE |
1321 * | :-----------------------------------: | :-----: | :----------------------------------: | :-----------------------------------: | :-: |
1322 * | **49** _(-webkit-print-color-adjust)_ | **48** | **6** _(-webkit-print-color-adjust)_ | **79** _(-webkit-print-color-adjust)_ | No |
1323 *
1324 * @see https://developer.mozilla.org/docs/Web/CSS/color-adjust
1325 */
1326 colorAdjust?: Property.ColorAdjust | undefined;
1327 /**
1328 * The **`color-scheme`** CSS property allows an element to indicate which color schemes it can comfortably be rendered in.
1329 *
1330 * **Syntax**: `normal | [ light | dark | <custom-ident> ]+`
1331 *
1332 * **Initial value**: `normal`
1333 *
1334 * | Chrome | Firefox | Safari | Edge | IE |
1335 * | :----: | :-----: | :----: | :----: | :-: |
1336 * | **81** | No | **13** | **81** | No |
1337 *
1338 * @see https://developer.mozilla.org/docs/Web/CSS/color-scheme
1339 */
1340 colorScheme?: Property.ColorScheme | undefined;
1341 /**
1342 * The **`column-count`** CSS property breaks an element's content into the specified number of columns.
1343 *
1344 * **Syntax**: `<integer> | auto`
1345 *
1346 * **Initial value**: `auto`
1347 *
1348 * | Chrome | Firefox | Safari | Edge | IE |
1349 * | :-----: | :-----: | :-----: | :----: | :----: |
1350 * | **50** | **52** | **9** | **12** | **10** |
1351 * | 1 _-x-_ | | 3 _-x-_ | | |
1352 *
1353 * @see https://developer.mozilla.org/docs/Web/CSS/column-count
1354 */
1355 columnCount?: Property.ColumnCount | undefined;
1356 /**
1357 * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.
1358 *
1359 * **Syntax**: `auto | balance | balance-all`
1360 *
1361 * **Initial value**: `balance`
1362 *
1363 * | Chrome | Firefox | Safari | Edge | IE |
1364 * | :----: | :-----: | :-----: | :----: | :----: |
1365 * | **50** | **52** | **9** | **12** | **10** |
1366 * | | | 8 _-x-_ | | |
1367 *
1368 * @see https://developer.mozilla.org/docs/Web/CSS/column-fill
1369 */
1370 columnFill?: Property.ColumnFill | undefined;
1371 /**
1372 * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
1373 *
1374 * **Syntax**: `normal | <length-percentage>`
1375 *
1376 * **Initial value**: `normal`
1377 *
1378 * ---
1379 *
1380 * _Supported in Flex Layout_
1381 *
1382 * | Chrome | Firefox | Safari | Edge | IE |
1383 * | :----: | :-----: | :------: | :----: | :-: |
1384 * | **84** | **63** | **14.1** | **84** | No |
1385 *
1386 * ---
1387 *
1388 * _Supported in Grid Layout_
1389 *
1390 * | Chrome | Firefox | Safari | Edge | IE |
1391 * | :--------------------: | :--------------------: | :----------------------: | :----: | :-: |
1392 * | **66** | **61** | **12** | **16** | No |
1393 * | 57 _(grid-column-gap)_ | 52 _(grid-column-gap)_ | 10.1 _(grid-column-gap)_ | | |
1394 *
1395 * ---
1396 *
1397 * _Supported in Multi-column Layout_
1398 *
1399 * | Chrome | Firefox | Safari | Edge | IE |
1400 * | :-----: | :-----: | :-----: | :----: | :----: |
1401 * | **50** | **52** | **10** | **12** | **10** |
1402 * | 1 _-x-_ | | 3 _-x-_ | | |
1403 *
1404 * ---
1405 *
1406 * @see https://developer.mozilla.org/docs/Web/CSS/column-gap
1407 */
1408 columnGap?: Property.ColumnGap<TLength> | undefined;
1409 /**
1410 * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.
1411 *
1412 * **Syntax**: `<color>`
1413 *
1414 * **Initial value**: `currentcolor`
1415 *
1416 * | Chrome | Firefox | Safari | Edge | IE |
1417 * | :-----: | :-----: | :-----: | :----: | :----: |
1418 * | **50** | **52** | **9** | **12** | **10** |
1419 * | 1 _-x-_ | | 3 _-x-_ | | |
1420 *
1421 * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-color
1422 */
1423 columnRuleColor?: Property.ColumnRuleColor | undefined;
1424 /**
1425 * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.
1426 *
1427 * **Syntax**: `<'border-style'>`
1428 *
1429 * **Initial value**: `none`
1430 *
1431 * | Chrome | Firefox | Safari | Edge | IE |
1432 * | :-----: | :-----: | :-----: | :----: | :----: |
1433 * | **50** | **52** | **9** | **12** | **10** |
1434 * | 1 _-x-_ | | 3 _-x-_ | | |
1435 *
1436 * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-style
1437 */
1438 columnRuleStyle?: Property.ColumnRuleStyle | undefined;
1439 /**
1440 * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
1441 *
1442 * **Syntax**: `<'border-width'>`
1443 *
1444 * **Initial value**: `medium`
1445 *
1446 * | Chrome | Firefox | Safari | Edge | IE |
1447 * | :-----: | :-----: | :-----: | :----: | :----: |
1448 * | **50** | **52** | **9** | **12** | **10** |
1449 * | 1 _-x-_ | | 3 _-x-_ | | |
1450 *
1451 * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-width
1452 */
1453 columnRuleWidth?: Property.ColumnRuleWidth<TLength> | undefined;
1454 /**
1455 * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`.
1456 *
1457 * **Syntax**: `none | all`
1458 *
1459 * **Initial value**: `none`
1460 *
1461 * | Chrome | Firefox | Safari | Edge | IE |
1462 * | :-----: | :-----: | :-------: | :----: | :----: |
1463 * | **50** | **71** | **9** | **12** | **10** |
1464 * | 6 _-x-_ | | 5.1 _-x-_ | | |
1465 *
1466 * @see https://developer.mozilla.org/docs/Web/CSS/column-span
1467 */
1468 columnSpan?: Property.ColumnSpan | undefined;
1469 /**
1470 * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.
1471 *
1472 * **Syntax**: `<length> | auto`
1473 *
1474 * **Initial value**: `auto`
1475 *
1476 * | Chrome | Firefox | Safari | Edge | IE |
1477 * | :-----: | :-----: | :-----: | :----: | :----: |
1478 * | **50** | **50** | **9** | **12** | **10** |
1479 * | 1 _-x-_ | | 3 _-x-_ | | |
1480 *
1481 * @see https://developer.mozilla.org/docs/Web/CSS/column-width
1482 */
1483 columnWidth?: Property.ColumnWidth<TLength> | undefined;
1484 /**
1485 * The **`contain`** CSS property allows an author to indicate that an element and its contents are, as much as possible, _independent_ of the rest of the document tree. This allows the browser to recalculate layout, style, paint, size, or any combination of them for a limited area of the DOM and not the entire page, leading to obvious performance benefits.
1486 *
1487 * **Syntax**: `none | strict | content | [ size || layout || style || paint ]`
1488 *
1489 * **Initial value**: `none`
1490 *
1491 * | Chrome | Firefox | Safari | Edge | IE |
1492 * | :----: | :-----: | :----: | :----: | :-: |
1493 * | **52** | **69** | No | **79** | No |
1494 *
1495 * @see https://developer.mozilla.org/docs/Web/CSS/contain
1496 */
1497 contain?: Property.Contain | undefined;
1498 /**
1499 * The **`content`** CSS property replaces an element with a generated value. Objects inserted using the `content` property are **anonymous replaced elements**_._
1500 *
1501 * **Syntax**: `normal | none | [ <content-replacement> | <content-list> ] [/ <string> ]?`
1502 *
1503 * **Initial value**: `normal`
1504 *
1505 * | Chrome | Firefox | Safari | Edge | IE |
1506 * | :----: | :-----: | :----: | :----: | :---: |
1507 * | **1** | **1** | **1** | **12** | **8** |
1508 *
1509 * @see https://developer.mozilla.org/docs/Web/CSS/content
1510 */
1511 content?: Property.Content | undefined;
1512 /**
1513 * The **`content-visibility`** CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. Basically it enables the user agent to skip an element's rendering work, including layout and painting, until it is needed, makes the initial page load much faster.
1514 *
1515 * **Syntax**: `visible | auto | hidden`
1516 *
1517 * **Initial value**: `visible`
1518 *
1519 * | Chrome | Firefox | Safari | Edge | IE |
1520 * | :----: | :-----: | :----: | :----: | :-: |
1521 * | **85** | No | No | **85** | No |
1522 *
1523 * @see https://developer.mozilla.org/docs/Web/CSS/content-visibility
1524 */
1525 contentVisibility?: Property.ContentVisibility | undefined;
1526 /**
1527 * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value.
1528 *
1529 * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`
1530 *
1531 * **Initial value**: `none`
1532 *
1533 * | Chrome | Firefox | Safari | Edge | IE |
1534 * | :----: | :-----: | :----: | :----: | :---: |
1535 * | **2** | **1** | **3** | **12** | **8** |
1536 *
1537 * @see https://developer.mozilla.org/docs/Web/CSS/counter-increment
1538 */
1539 counterIncrement?: Property.CounterIncrement | undefined;
1540 /**
1541 * The **`counter-reset`** CSS property resets a CSS counter to a given value.
1542 *
1543 * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`
1544 *
1545 * **Initial value**: `none`
1546 *
1547 * | Chrome | Firefox | Safari | Edge | IE |
1548 * | :----: | :-----: | :----: | :----: | :---: |
1549 * | **2** | **1** | **3** | **12** | **8** |
1550 *
1551 * @see https://developer.mozilla.org/docs/Web/CSS/counter-reset
1552 */
1553 counterReset?: Property.CounterReset | undefined;
1554 /**
1555 * The **`counter-set`** CSS property sets a CSS counter to a given value. It manipulates the value of existing counters, and will only create new counters if there isn't already a counter of the given name on the element.
1556 *
1557 * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`
1558 *
1559 * **Initial value**: `none`
1560 *
1561 * | Chrome | Firefox | Safari | Edge | IE |
1562 * | :----: | :-----: | :----: | :----: | :-: |
1563 * | **85** | **68** | No | **85** | No |
1564 *
1565 * @see https://developer.mozilla.org/docs/Web/CSS/counter-set
1566 */
1567 counterSet?: Property.CounterSet | undefined;
1568 /**
1569 * The **`cursor`** CSS property sets the type of mouse cursor, if any, to show when the mouse pointer is over an element.
1570 *
1571 * **Syntax**: `[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]`
1572 *
1573 * **Initial value**: `auto`
1574 *
1575 * | Chrome | Firefox | Safari | Edge | IE |
1576 * | :----: | :-----: | :-----: | :----: | :---: |
1577 * | **1** | **1** | **1.2** | **12** | **4** |
1578 *
1579 * @see https://developer.mozilla.org/docs/Web/CSS/cursor
1580 */
1581 cursor?: Property.Cursor | undefined;
1582 /**
1583 * The **`direction`** CSS property sets the direction of text, table columns, and horizontal overflow. Use `rtl` for languages written from right to left (like Hebrew or Arabic), and `ltr` for those written from left to right (like English and most other languages).
1584 *
1585 * **Syntax**: `ltr | rtl`
1586 *
1587 * **Initial value**: `ltr`
1588 *
1589 * | Chrome | Firefox | Safari | Edge | IE |
1590 * | :----: | :-----: | :----: | :----: | :-----: |
1591 * | **2** | **1** | **1** | **12** | **5.5** |
1592 *
1593 * @see https://developer.mozilla.org/docs/Web/CSS/direction
1594 */
1595 direction?: Property.Direction | undefined;
1596 /**
1597 * The **`display`** CSS property sets whether an element is treated as a block or inline element and the layout used for its children, such as flow layout, grid or flex.
1598 *
1599 * **Syntax**: `[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy>`
1600 *
1601 * **Initial value**: `inline`
1602 *
1603 * | Chrome | Firefox | Safari | Edge | IE |
1604 * | :----: | :-----: | :----: | :----: | :---: |
1605 * | **1** | **1** | **1** | **12** | **4** |
1606 *
1607 * @see https://developer.mozilla.org/docs/Web/CSS/display
1608 */
1609 display?: Property.Display | undefined;
1610 /**
1611 * The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `<table>` cells that have no visible content.
1612 *
1613 * **Syntax**: `show | hide`
1614 *
1615 * **Initial value**: `show`
1616 *
1617 * | Chrome | Firefox | Safari | Edge | IE |
1618 * | :----: | :-----: | :-----: | :----: | :---: |
1619 * | **1** | **1** | **1.2** | **12** | **8** |
1620 *
1621 * @see https://developer.mozilla.org/docs/Web/CSS/empty-cells
1622 */
1623 emptyCells?: Property.EmptyCells | undefined;
1624 /**
1625 * The **`filter`** CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders.
1626 *
1627 * **Syntax**: `none | <filter-function-list>`
1628 *
1629 * **Initial value**: `none`
1630 *
1631 * | Chrome | Firefox | Safari | Edge | IE |
1632 * | :------: | :-----: | :-----: | :----: | :-: |
1633 * | **53** | **35** | **9.1** | **12** | No |
1634 * | 18 _-x-_ | | 6 _-x-_ | | |
1635 *
1636 * @see https://developer.mozilla.org/docs/Web/CSS/filter
1637 */
1638 filter?: Property.Filter | undefined;
1639 /**
1640 * The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`.
1641 *
1642 * **Syntax**: `content | <'width'>`
1643 *
1644 * **Initial value**: `auto`
1645 *
1646 * | Chrome | Firefox | Safari | Edge | IE |
1647 * | :------: | :-----: | :-----: | :----: | :----: |
1648 * | **29** | **22** | **9** | **12** | **11** |
1649 * | 22 _-x-_ | | 7 _-x-_ | | |
1650 *
1651 * @see https://developer.mozilla.org/docs/Web/CSS/flex-basis
1652 */
1653 flexBasis?: Property.FlexBasis<TLength> | undefined;
1654 /**
1655 * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).
1656 *
1657 * **Syntax**: `row | row-reverse | column | column-reverse`
1658 *
1659 * **Initial value**: `row`
1660 *
1661 * | Chrome | Firefox | Safari | Edge | IE |
1662 * | :------: | :-----: | :-----: | :----: | :------: |
1663 * | **29** | **20** | **9** | **12** | **11** |
1664 * | 21 _-x-_ | | 7 _-x-_ | | 10 _-x-_ |
1665 *
1666 * @see https://developer.mozilla.org/docs/Web/CSS/flex-direction
1667 */
1668 flexDirection?: Property.FlexDirection | undefined;
1669 /**
1670 * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.
1671 *
1672 * **Syntax**: `<number>`
1673 *
1674 * **Initial value**: `0`
1675 *
1676 * | Chrome | Firefox | Safari | Edge | IE |
1677 * | :------: | :-----: | :-----: | :----: | :----------------------: |
1678 * | **29** | **20** | **9** | **12** | **11** |
1679 * | 22 _-x-_ | | 7 _-x-_ | | 10 _(-ms-flex-positive)_ |
1680 *
1681 * @see https://developer.mozilla.org/docs/Web/CSS/flex-grow
1682 */
1683 flexGrow?: Property.FlexGrow | undefined;
1684 /**
1685 * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of all flex items is larger than the flex container, items shrink to fit according to `flex-shrink`.
1686 *
1687 * **Syntax**: `<number>`
1688 *
1689 * **Initial value**: `1`
1690 *
1691 * | Chrome | Firefox | Safari | Edge | IE |
1692 * | :------: | :-----: | :-----: | :----: | :----: |
1693 * | **29** | **20** | **9** | **12** | **10** |
1694 * | 22 _-x-_ | | 8 _-x-_ | | |
1695 *
1696 * @see https://developer.mozilla.org/docs/Web/CSS/flex-shrink
1697 */
1698 flexShrink?: Property.FlexShrink | undefined;
1699 /**
1700 * The **`flex-wrap`** CSS property sets whether flex items are forced onto one line or can wrap onto multiple lines. If wrapping is allowed, it sets the direction that lines are stacked.
1701 *
1702 * **Syntax**: `nowrap | wrap | wrap-reverse`
1703 *
1704 * **Initial value**: `nowrap`
1705 *
1706 * | Chrome | Firefox | Safari | Edge | IE |
1707 * | :------: | :-----: | :-------: | :----: | :----: |
1708 * | **29** | **28** | **9** | **12** | **11** |
1709 * | 21 _-x-_ | | 6.1 _-x-_ | | |
1710 *
1711 * @see https://developer.mozilla.org/docs/Web/CSS/flex-wrap
1712 */
1713 flexWrap?: Property.FlexWrap | undefined;
1714 /**
1715 * The **`float`** CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning).
1716 *
1717 * **Syntax**: `left | right | none | inline-start | inline-end`
1718 *
1719 * **Initial value**: `none`
1720 *
1721 * | Chrome | Firefox | Safari | Edge | IE |
1722 * | :----: | :-----: | :----: | :----: | :---: |
1723 * | **1** | **1** | **1** | **12** | **4** |
1724 *
1725 * @see https://developer.mozilla.org/docs/Web/CSS/float
1726 */
1727 float?: Property.Float | undefined;
1728 /**
1729 * The **`font-family`** CSS property specifies a prioritized list of one or more font family names and/or generic family names for the selected element.
1730 *
1731 * **Syntax**: `[ <family-name> | <generic-family> ]#`
1732 *
1733 * **Initial value**: depends on user agent
1734 *
1735 * | Chrome | Firefox | Safari | Edge | IE |
1736 * | :----: | :-----: | :----: | :----: | :---: |
1737 * | **1** | **1** | **1** | **12** | **3** |
1738 *
1739 * @see https://developer.mozilla.org/docs/Web/CSS/font-family
1740 */
1741 fontFamily?: Property.FontFamily | undefined;
1742 /**
1743 * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
1744 *
1745 * **Syntax**: `normal | <feature-tag-value>#`
1746 *
1747 * **Initial value**: `normal`
1748 *
1749 * | Chrome | Firefox | Safari | Edge | IE |
1750 * | :------: | :------: | :-----: | :----: | :----: |
1751 * | **48** | **34** | **9.1** | **15** | **10** |
1752 * | 16 _-x-_ | 15 _-x-_ | | | |
1753 *
1754 * @see https://developer.mozilla.org/docs/Web/CSS/font-feature-settings
1755 */
1756 fontFeatureSettings?: Property.FontFeatureSettings | undefined;
1757 /**
1758 * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font.
1759 *
1760 * **Syntax**: `auto | normal | none`
1761 *
1762 * **Initial value**: `auto`
1763 *
1764 * | Chrome | Firefox | Safari | Edge | IE |
1765 * | :----: | :-----: | :-----: | :----: | :-: |
1766 * | **33** | **32** | **9** | **79** | No |
1767 * | | | 6 _-x-_ | | |
1768 *
1769 * @see https://developer.mozilla.org/docs/Web/CSS/font-kerning
1770 */
1771 fontKerning?: Property.FontKerning | undefined;
1772 /**
1773 * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface.
1774 *
1775 * **Syntax**: `normal | <string>`
1776 *
1777 * **Initial value**: `normal`
1778 *
1779 * | Chrome | Firefox | Safari | Edge | IE |
1780 * | :----: | :-----: | :----: | :--: | :-: |
1781 * | No | **34** | No | No | No |
1782 * | | 4 _-x-_ | | | |
1783 *
1784 * @see https://developer.mozilla.org/docs/Web/CSS/font-language-override
1785 */
1786 fontLanguageOverride?: Property.FontLanguageOverride | undefined;
1787 /**
1788 * The **`font-optical-sizing`** CSS property sets whether text rendering is optimized for viewing at different sizes.
1789 *
1790 * **Syntax**: `auto | none`
1791 *
1792 * **Initial value**: `auto`
1793 *
1794 * | Chrome | Firefox | Safari | Edge | IE |
1795 * | :----: | :-----: | :----: | :----: | :-: |
1796 * | **79** | **62** | **11** | **17** | No |
1797 *
1798 * @see https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing
1799 */
1800 fontOpticalSizing?: Property.FontOpticalSizing | undefined;
1801 /**
1802 * The **`font-size`** CSS property sets the size of the font. Changing the font size also updates the sizes of the font size-relative `<length>` units, such as `em`, `ex`, and so forth.
1803 *
1804 * **Syntax**: `<absolute-size> | <relative-size> | <length-percentage>`
1805 *
1806 * **Initial value**: `medium`
1807 *
1808 * | Chrome | Firefox | Safari | Edge | IE |
1809 * | :----: | :-----: | :----: | :----: | :-----: |
1810 * | **1** | **1** | **1** | **12** | **5.5** |
1811 *
1812 * @see https://developer.mozilla.org/docs/Web/CSS/font-size
1813 */
1814 fontSize?: Property.FontSize<TLength> | undefined;
1815 /**
1816 * The **`font-size-adjust`** CSS property sets the size of lower-case letters relative to the current font size (which defines the size of upper-case letters).
1817 *
1818 * **Syntax**: `none | [ ex-height | cap-height | ch-width | ic-width | ic-height ]? [ from-font | <number> ]`
1819 *
1820 * **Initial value**: `none`
1821 *
1822 * | Chrome | Firefox | Safari | Edge | IE |
1823 * | :----: | :-----: | :----: | :--: | :-: |
1824 * | n/a | **1** | No | n/a | No |
1825 *
1826 * @see https://developer.mozilla.org/docs/Web/CSS/font-size-adjust
1827 */
1828 fontSizeAdjust?: Property.FontSizeAdjust | undefined;
1829 /**
1830 * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.
1831 *
1832 * **Syntax**: `auto | never | always | <absolute-size> | <length>`
1833 *
1834 * **Initial value**: `auto`
1835 *
1836 * | Chrome | Firefox | Safari | Edge | IE |
1837 * | :------------------------------: | :--------------------------------: | :------------------------------: | :-------------------------------: | :-: |
1838 * | **5** _(-webkit-font-smoothing)_ | **25** _(-moz-osx-font-smoothing)_ | **4** _(-webkit-font-smoothing)_ | **79** _(-webkit-font-smoothing)_ | No |
1839 *
1840 * @see https://developer.mozilla.org/docs/Web/CSS/font-smooth
1841 */
1842 fontSmooth?: Property.FontSmooth<TLength> | undefined;
1843 /**
1844 * The **`font-stretch`** CSS property selects a normal, condensed, or expanded face from a font.
1845 *
1846 * **Syntax**: `<font-stretch-absolute>`
1847 *
1848 * **Initial value**: `normal`
1849 *
1850 * | Chrome | Firefox | Safari | Edge | IE |
1851 * | :----: | :-----: | :----: | :----: | :---: |
1852 * | **60** | **9** | **11** | **12** | **9** |
1853 *
1854 * @see https://developer.mozilla.org/docs/Web/CSS/font-stretch
1855 */
1856 fontStretch?: Property.FontStretch | undefined;
1857 /**
1858 * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`.
1859 *
1860 * **Syntax**: `normal | italic | oblique <angle>?`
1861 *
1862 * **Initial value**: `normal`
1863 *
1864 * | Chrome | Firefox | Safari | Edge | IE |
1865 * | :----: | :-----: | :----: | :----: | :---: |
1866 * | **1** | **1** | **1** | **12** | **4** |
1867 *
1868 * @see https://developer.mozilla.org/docs/Web/CSS/font-style
1869 */
1870 fontStyle?: Property.FontStyle | undefined;
1871 /**
1872 * The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser.
1873 *
1874 * **Syntax**: `none | [ weight || style || small-caps ]`
1875 *
1876 * **Initial value**: `weight style`
1877 *
1878 * | Chrome | Firefox | Safari | Edge | IE |
1879 * | :----: | :-----: | :----: | :--: | :-: |
1880 * | No | **34** | **9** | No | No |
1881 *
1882 * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis
1883 */
1884 fontSynthesis?: Property.FontSynthesis | undefined;
1885 /**
1886 * The **`font-variant`** CSS shorthand property allows you to set all the font variants for a font.
1887 *
1888 * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]`
1889 *
1890 * **Initial value**: `normal`
1891 *
1892 * | Chrome | Firefox | Safari | Edge | IE |
1893 * | :----: | :-----: | :----: | :----: | :---: |
1894 * | **1** | **1** | **1** | **12** | **4** |
1895 *
1896 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant
1897 */
1898 fontVariant?: Property.FontVariant | undefined;
1899 /**
1900 * The **`font-variant-caps`** CSS property controls the use of alternate glyphs for capital letters.
1901 *
1902 * **Syntax**: `normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps`
1903 *
1904 * **Initial value**: `normal`
1905 *
1906 * | Chrome | Firefox | Safari | Edge | IE |
1907 * | :----: | :-----: | :-----: | :----: | :-: |
1908 * | **52** | **34** | **9.1** | **79** | No |
1909 *
1910 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-caps
1911 */
1912 fontVariantCaps?: Property.FontVariantCaps | undefined;
1913 /**
1914 * The **`font-variant-east-asian`** CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese.
1915 *
1916 * **Syntax**: `normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]`
1917 *
1918 * **Initial value**: `normal`
1919 *
1920 * | Chrome | Firefox | Safari | Edge | IE |
1921 * | :----: | :-----: | :-----: | :----: | :-: |
1922 * | **63** | **34** | **9.1** | **79** | No |
1923 *
1924 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian
1925 */
1926 fontVariantEastAsian?: Property.FontVariantEastAsian | undefined;
1927 /**
1928 * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text.
1929 *
1930 * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]`
1931 *
1932 * **Initial value**: `normal`
1933 *
1934 * | Chrome | Firefox | Safari | Edge | IE |
1935 * | :------: | :-----: | :-----: | :----: | :-: |
1936 * | **34** | **34** | **9.1** | **79** | No |
1937 * | 31 _-x-_ | | 7 _-x-_ | | |
1938 *
1939 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures
1940 */
1941 fontVariantLigatures?: Property.FontVariantLigatures | undefined;
1942 /**
1943 * The **`font-variant-numeric`** CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers.
1944 *
1945 * **Syntax**: `normal | [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ]`
1946 *
1947 * **Initial value**: `normal`
1948 *
1949 * | Chrome | Firefox | Safari | Edge | IE |
1950 * | :----: | :-----: | :-----: | :----: | :-: |
1951 * | **52** | **34** | **9.1** | **79** | No |
1952 *
1953 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric
1954 */
1955 fontVariantNumeric?: Property.FontVariantNumeric | undefined;
1956 /**
1957 * The **`font-variant-position`** CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript.
1958 *
1959 * **Syntax**: `normal | sub | super`
1960 *
1961 * **Initial value**: `normal`
1962 *
1963 * | Chrome | Firefox | Safari | Edge | IE |
1964 * | :----: | :-----: | :-----: | :--: | :-: |
1965 * | No | **34** | **9.1** | No | No |
1966 *
1967 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position
1968 */
1969 fontVariantPosition?: Property.FontVariantPosition | undefined;
1970 /**
1971 * The **`font-variation-settings`** CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values.
1972 *
1973 * **Syntax**: `normal | [ <string> <number> ]#`
1974 *
1975 * **Initial value**: `normal`
1976 *
1977 * | Chrome | Firefox | Safari | Edge | IE |
1978 * | :----: | :-----: | :----: | :----: | :-: |
1979 * | **62** | **62** | **11** | **17** | No |
1980 *
1981 * @see https://developer.mozilla.org/docs/Web/CSS/font-variation-settings
1982 */
1983 fontVariationSettings?: Property.FontVariationSettings | undefined;
1984 /**
1985 * The **`font-weight`** CSS property sets the weight (or boldness) of the font. The weights available depend on the `font-family` that is currently set.
1986 *
1987 * **Syntax**: `<font-weight-absolute> | bolder | lighter`
1988 *
1989 * **Initial value**: `normal`
1990 *
1991 * | Chrome | Firefox | Safari | Edge | IE |
1992 * | :----: | :-----: | :----: | :----: | :---: |
1993 * | **2** | **1** | **1** | **12** | **3** |
1994 *
1995 * @see https://developer.mozilla.org/docs/Web/CSS/font-weight
1996 */
1997 fontWeight?: Property.FontWeight | undefined;
1998 /**
1999 * The **`forced-color-adjust`** CSS property allows authors to opt certain elements out of forced colors mode. This then restores the control of those values to CSS.
2000 *
2001 * **Syntax**: `auto | none`
2002 *
2003 * **Initial value**: `auto`
2004 *
2005 * | Chrome | Firefox | Safari | Edge | IE |
2006 * | :----: | :-----: | :----: | :-----------------------------: | :---------------------------------: |
2007 * | **89** | No | No | **79** | **10** _(-ms-high-contrast-adjust)_ |
2008 * | | | | 12 _(-ms-high-contrast-adjust)_ | |
2009 *
2010 * @see https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust
2011 */
2012 forcedColorAdjust?: Property.ForcedColorAdjust | undefined;
2013 /**
2014 * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track or pattern of tracks.
2015 *
2016 * **Syntax**: `<track-size>+`
2017 *
2018 * **Initial value**: `auto`
2019 *
2020 * | Chrome | Firefox | Safari | Edge | IE |
2021 * | :----: | :-----: | :------: | :----: | :-------------------------: |
2022 * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-columns)_ |
2023 *
2024 * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns
2025 */
2026 gridAutoColumns?: Property.GridAutoColumns<TLength> | undefined;
2027 /**
2028 * The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid.
2029 *
2030 * **Syntax**: `[ row | column ] || dense`
2031 *
2032 * **Initial value**: `row`
2033 *
2034 * | Chrome | Firefox | Safari | Edge | IE |
2035 * | :----: | :-----: | :------: | :----: | :-: |
2036 * | **57** | **52** | **10.1** | **16** | No |
2037 *
2038 * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow
2039 */
2040 gridAutoFlow?: Property.GridAutoFlow | undefined;
2041 /**
2042 * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track or pattern of tracks.
2043 *
2044 * **Syntax**: `<track-size>+`
2045 *
2046 * **Initial value**: `auto`
2047 *
2048 * | Chrome | Firefox | Safari | Edge | IE |
2049 * | :----: | :-----: | :------: | :----: | :----------------------: |
2050 * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-rows)_ |
2051 *
2052 * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows
2053 */
2054 gridAutoRows?: Property.GridAutoRows<TLength> | undefined;
2055 /**
2056 * The **`grid-column-end`** CSS property specifies a grid item’s end position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the block-end edge of its grid area.
2057 *
2058 * **Syntax**: `<grid-line>`
2059 *
2060 * **Initial value**: `auto`
2061 *
2062 * | Chrome | Firefox | Safari | Edge | IE |
2063 * | :----: | :-----: | :------: | :----: | :-: |
2064 * | **57** | **52** | **10.1** | **16** | No |
2065 *
2066 * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-end
2067 */
2068 gridColumnEnd?: Property.GridColumnEnd | undefined;
2069 /**
2070 * The **`grid-column-start`** CSS property specifies a grid item’s start position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement. This start position defines the block-start edge of the grid area.
2071 *
2072 * **Syntax**: `<grid-line>`
2073 *
2074 * **Initial value**: `auto`
2075 *
2076 * | Chrome | Firefox | Safari | Edge | IE |
2077 * | :----: | :-----: | :------: | :----: | :-: |
2078 * | **57** | **52** | **10.1** | **16** | No |
2079 *
2080 * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-start
2081 */
2082 gridColumnStart?: Property.GridColumnStart | undefined;
2083 /**
2084 * The **`grid-row-end`** CSS property specifies a grid item’s end position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-end edge of its grid area.
2085 *
2086 * **Syntax**: `<grid-line>`
2087 *
2088 * **Initial value**: `auto`
2089 *
2090 * | Chrome | Firefox | Safari | Edge | IE |
2091 * | :----: | :-----: | :------: | :----: | :-: |
2092 * | **57** | **52** | **10.1** | **16** | No |
2093 *
2094 * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-end
2095 */
2096 gridRowEnd?: Property.GridRowEnd | undefined;
2097 /**
2098 * The **`grid-row-start`** CSS property specifies a grid item’s start position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start edge of its grid area.
2099 *
2100 * **Syntax**: `<grid-line>`
2101 *
2102 * **Initial value**: `auto`
2103 *
2104 * | Chrome | Firefox | Safari | Edge | IE |
2105 * | :----: | :-----: | :------: | :----: | :-: |
2106 * | **57** | **52** | **10.1** | **16** | No |
2107 *
2108 * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-start
2109 */
2110 gridRowStart?: Property.GridRowStart | undefined;
2111 /**
2112 * The **`grid-template-areas`** CSS property specifies named grid areas, establishing the cells in the grid and assigning them names.
2113 *
2114 * **Syntax**: `none | <string>+`
2115 *
2116 * **Initial value**: `none`
2117 *
2118 * | Chrome | Firefox | Safari | Edge | IE |
2119 * | :----: | :-----: | :------: | :----: | :-: |
2120 * | **57** | **52** | **10.1** | **16** | No |
2121 *
2122 * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-areas
2123 */
2124 gridTemplateAreas?: Property.GridTemplateAreas | undefined;
2125 /**
2126 * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.
2127 *
2128 * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`
2129 *
2130 * **Initial value**: `none`
2131 *
2132 * | Chrome | Firefox | Safari | Edge | IE |
2133 * | :----: | :-----: | :------: | :----: | :-------------------------: |
2134 * | **57** | **52** | **10.1** | **16** | **10** _(-ms-grid-columns)_ |
2135 *
2136 * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-columns
2137 */
2138 gridTemplateColumns?: Property.GridTemplateColumns<TLength> | undefined;
2139 /**
2140 * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.
2141 *
2142 * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`
2143 *
2144 * **Initial value**: `none`
2145 *
2146 * | Chrome | Firefox | Safari | Edge | IE |
2147 * | :----: | :-----: | :------: | :----: | :----------------------: |
2148 * | **57** | **52** | **10.1** | **16** | **10** _(-ms-grid-rows)_ |
2149 *
2150 * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-rows
2151 */
2152 gridTemplateRows?: Property.GridTemplateRows<TLength> | undefined;
2153 /**
2154 * The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box.
2155 *
2156 * **Syntax**: `none | [ first || [ force-end | allow-end ] || last ]`
2157 *
2158 * **Initial value**: `none`
2159 *
2160 * | Chrome | Firefox | Safari | Edge | IE |
2161 * | :----: | :-----: | :----: | :--: | :-: |
2162 * | No | No | **10** | No | No |
2163 *
2164 * @see https://developer.mozilla.org/docs/Web/CSS/hanging-punctuation
2165 */
2166 hangingPunctuation?: Property.HangingPunctuation | undefined;
2167 /**
2168 * The **`height`** CSS property specifies the height of an element. By default, the property defines the height of the content area. If `box-sizing` is set to `border-box`, however, it instead determines the height of the border area.
2169 *
2170 * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
2171 *
2172 * **Initial value**: `auto`
2173 *
2174 * | Chrome | Firefox | Safari | Edge | IE |
2175 * | :----: | :-----: | :----: | :----: | :---: |
2176 * | **1** | **1** | **1** | **12** | **4** |
2177 *
2178 * @see https://developer.mozilla.org/docs/Web/CSS/height
2179 */
2180 height?: Property.Height<TLength> | undefined;
2181 /**
2182 * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
2183 *
2184 * **Syntax**: `none | manual | auto`
2185 *
2186 * **Initial value**: `manual`
2187 *
2188 * | Chrome | Firefox | Safari | Edge | IE |
2189 * | :------: | :-----: | :-----------: | :----: | :----------: |
2190 * | **55** | **43** | **5.1** _-x-_ | **79** | **10** _-x-_ |
2191 * | 13 _-x-_ | 6 _-x-_ | | | |
2192 *
2193 * @see https://developer.mozilla.org/docs/Web/CSS/hyphens
2194 */
2195 hyphens?: Property.Hyphens | undefined;
2196 /**
2197 * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image. It should _not_ be used for any other orientation adjustments; instead, the `transform` property should be used with the `rotate` `<transform-function>`.
2198 *
2199 * **Syntax**: `from-image | <angle> | [ <angle>? flip ]`
2200 *
2201 * **Initial value**: `from-image`
2202 *
2203 * | Chrome | Firefox | Safari | Edge | IE |
2204 * | :----: | :-----: | :------: | :----: | :-: |
2205 * | **81** | **26** | **13.1** | **81** | No |
2206 *
2207 * @see https://developer.mozilla.org/docs/Web/CSS/image-orientation
2208 */
2209 imageOrientation?: Property.ImageOrientation | undefined;
2210 /**
2211 * The **`image-rendering`** CSS property sets an image scaling algorithm. The property applies to an element itself, to any images set in its other properties, and to its descendants.
2212 *
2213 * **Syntax**: `auto | crisp-edges | pixelated`
2214 *
2215 * **Initial value**: `auto`
2216 *
2217 * | Chrome | Firefox | Safari | Edge | IE |
2218 * | :----: | :-----: | :----: | :----: | :-: |
2219 * | **13** | **3.6** | **6** | **79** | No |
2220 *
2221 * @see https://developer.mozilla.org/docs/Web/CSS/image-rendering
2222 */
2223 imageRendering?: Property.ImageRendering | undefined;
2224 /**
2225 * **Syntax**: `[ from-image || <resolution> ] && snap?`
2226 *
2227 * **Initial value**: `1dppx`
2228 */
2229 imageResolution?: Property.ImageResolution | undefined;
2230 /**
2231 * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters.
2232 *
2233 * **Syntax**: `normal | [ <number> <integer>? ]`
2234 *
2235 * **Initial value**: `normal`
2236 *
2237 * | Chrome | Firefox | Safari | Edge | IE |
2238 * | :----: | :-----: | :---------: | :--: | :-: |
2239 * | No | No | **9** _-x-_ | No | No |
2240 *
2241 * @see https://developer.mozilla.org/docs/Web/CSS/initial-letter
2242 */
2243 initialLetter?: Property.InitialLetter | undefined;
2244 /**
2245 * The **`inline-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.
2246 *
2247 * **Syntax**: `<'width'>`
2248 *
2249 * **Initial value**: `auto`
2250 *
2251 * | Chrome | Firefox | Safari | Edge | IE |
2252 * | :----: | :-----: | :------: | :----: | :-: |
2253 * | **57** | **41** | **12.1** | **79** | No |
2254 *
2255 * @see https://developer.mozilla.org/docs/Web/CSS/inline-size
2256 */
2257 inlineSize?: Property.InlineSize<TLength> | undefined;
2258 /**
2259 * The **`inset`** CSS property is a shorthand that corresponds to the `top`, `right`, `bottom`, and/or `left` properties. It has the same multi-value syntax of the `margin` shorthand.
2260 *
2261 * **Syntax**: `<'top'>{1,4}`
2262 *
2263 * **Initial value**: `auto`
2264 *
2265 * | Chrome | Firefox | Safari | Edge | IE |
2266 * | :----: | :-----: | :------: | :----: | :-: |
2267 * | **87** | **66** | **14.1** | **87** | No |
2268 *
2269 * @see https://developer.mozilla.org/docs/Web/CSS/inset
2270 */
2271 inset?: Property.Inset<TLength> | undefined;
2272 /**
2273 * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
2274 *
2275 * **Syntax**: `<'top'>{1,2}`
2276 *
2277 * **Initial value**: `auto`
2278 *
2279 * | Chrome | Firefox | Safari | Edge | IE |
2280 * | :----: | :-----: | :------: | :----: | :-: |
2281 * | **87** | **63** | **14.1** | **87** | No |
2282 *
2283 * @see https://developer.mozilla.org/docs/Web/CSS/inset-block
2284 */
2285 insetBlock?: Property.InsetBlock<TLength> | undefined;
2286 /**
2287 * The **`inset-block-end`** CSS property defines the logical block end offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
2288 *
2289 * **Syntax**: `<'top'>`
2290 *
2291 * **Initial value**: `auto`
2292 *
2293 * | Chrome | Firefox | Safari | Edge | IE |
2294 * | :----: | :-----: | :------: | :----: | :-: |
2295 * | **87** | **63** | **14.1** | **87** | No |
2296 *
2297 * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end
2298 */
2299 insetBlockEnd?: Property.InsetBlockEnd<TLength> | undefined;
2300 /**
2301 * The **`inset-block-start`** CSS property defines the logical block start offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
2302 *
2303 * **Syntax**: `<'top'>`
2304 *
2305 * **Initial value**: `auto`
2306 *
2307 * | Chrome | Firefox | Safari | Edge | IE |
2308 * | :----: | :-----: | :------: | :----: | :-: |
2309 * | **87** | **63** | **14.1** | **87** | No |
2310 *
2311 * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start
2312 */
2313 insetBlockStart?: Property.InsetBlockStart<TLength> | undefined;
2314 /**
2315 * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
2316 *
2317 * **Syntax**: `<'top'>{1,2}`
2318 *
2319 * **Initial value**: `auto`
2320 *
2321 * | Chrome | Firefox | Safari | Edge | IE |
2322 * | :----: | :-----: | :------: | :----: | :-: |
2323 * | **87** | **63** | **14.1** | **87** | No |
2324 *
2325 * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline
2326 */
2327 insetInline?: Property.InsetInline<TLength> | undefined;
2328 /**
2329 * The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
2330 *
2331 * **Syntax**: `<'top'>`
2332 *
2333 * **Initial value**: `auto`
2334 *
2335 * | Chrome | Firefox | Safari | Edge | IE |
2336 * | :----: | :-----: | :------: | :----: | :-: |
2337 * | **87** | **63** | **14.1** | **87** | No |
2338 *
2339 * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
2340 */
2341 insetInlineEnd?: Property.InsetInlineEnd<TLength> | undefined;
2342 /**
2343 * The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
2344 *
2345 * **Syntax**: `<'top'>`
2346 *
2347 * **Initial value**: `auto`
2348 *
2349 * | Chrome | Firefox | Safari | Edge | IE |
2350 * | :----: | :-----: | :------: | :----: | :-: |
2351 * | **87** | **63** | **14.1** | **87** | No |
2352 *
2353 * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
2354 */
2355 insetInlineStart?: Property.InsetInlineStart<TLength> | undefined;
2356 /**
2357 * The **`isolation`** CSS property determines whether an element must create a new stacking context.
2358 *
2359 * **Syntax**: `auto | isolate`
2360 *
2361 * **Initial value**: `auto`
2362 *
2363 * | Chrome | Firefox | Safari | Edge | IE |
2364 * | :----: | :-----: | :----: | :----: | :-: |
2365 * | **41** | **36** | **8** | **79** | No |
2366 *
2367 * @see https://developer.mozilla.org/docs/Web/CSS/isolation
2368 */
2369 isolation?: Property.Isolation | undefined;
2370 /**
2371 * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.
2372 *
2373 * **Syntax**: `normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]`
2374 *
2375 * **Initial value**: `normal`
2376 *
2377 * ---
2378 *
2379 * _Supported in Flex Layout_
2380 *
2381 * | Chrome | Firefox | Safari | Edge | IE |
2382 * | :------: | :-----: | :-------: | :----: | :----: |
2383 * | **52** | **20** | **9** | **12** | **11** |
2384 * | 21 _-x-_ | | 6.1 _-x-_ | | |
2385 *
2386 * ---
2387 *
2388 * _Supported in Grid Layout_
2389 *
2390 * | Chrome | Firefox | Safari | Edge | IE |
2391 * | :----: | :-----: | :------: | :----: | :-: |
2392 * | **57** | **52** | **10.1** | **16** | No |
2393 *
2394 * ---
2395 *
2396 * @see https://developer.mozilla.org/docs/Web/CSS/justify-content
2397 */
2398 justifyContent?: Property.JustifyContent | undefined;
2399 /**
2400 * The CSS **`justify-items`** property defines the default `justify-self` for all items of the box, giving them all a default way of justifying each box along the appropriate axis.
2401 *
2402 * **Syntax**: `normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]`
2403 *
2404 * **Initial value**: `legacy`
2405 *
2406 * ---
2407 *
2408 * _Supported in Flex Layout_
2409 *
2410 * | Chrome | Firefox | Safari | Edge | IE |
2411 * | :----: | :-----: | :----: | :----: | :----: |
2412 * | **52** | **20** | **9** | **12** | **11** |
2413 *
2414 * ---
2415 *
2416 * _Supported in Grid Layout_
2417 *
2418 * | Chrome | Firefox | Safari | Edge | IE |
2419 * | :----: | :-----: | :------: | :----: | :-: |
2420 * | **57** | **45** | **10.1** | **16** | No |
2421 *
2422 * ---
2423 *
2424 * @see https://developer.mozilla.org/docs/Web/CSS/justify-items
2425 */
2426 justifyItems?: Property.JustifyItems | undefined;
2427 /**
2428 * The CSS **`justify-self`** property sets the way a box is justified inside its alignment container along the appropriate axis.
2429 *
2430 * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]`
2431 *
2432 * **Initial value**: `auto`
2433 *
2434 * ---
2435 *
2436 * _Supported in Flex Layout_
2437 *
2438 * | Chrome | Firefox | Safari | Edge | IE |
2439 * | :----: | :-----: | :------: | :----: | :-: |
2440 * | **57** | **45** | **10.1** | **16** | No |
2441 *
2442 * ---
2443 *
2444 * _Supported in Grid Layout_
2445 *
2446 * | Chrome | Firefox | Safari | Edge | IE |
2447 * | :----: | :-----: | :------: | :----: | :----------: |
2448 * | **57** | **45** | **10.1** | **16** | **10** _-x-_ |
2449 *
2450 * ---
2451 *
2452 * @see https://developer.mozilla.org/docs/Web/CSS/justify-self
2453 */
2454 justifySelf?: Property.JustifySelf | undefined;
2455 /**
2456 * The **`justify-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their inline axis.
2457 *
2458 * **Syntax**: `[ normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] ]#`
2459 *
2460 * **Initial value**: `normal`
2461 *
2462 * | Chrome | Firefox | Safari | Edge | IE |
2463 * | :----: | :-----: | :----: | :--: | :-: |
2464 * | No | n/a | No | No | No |
2465 *
2466 * @see https://developer.mozilla.org/docs/Web/CSS/justify-tracks
2467 */
2468 justifyTracks?: Property.JustifyTracks | undefined;
2469 /**
2470 * The **`left`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.
2471 *
2472 * **Syntax**: `<length> | <percentage> | auto`
2473 *
2474 * **Initial value**: `auto`
2475 *
2476 * | Chrome | Firefox | Safari | Edge | IE |
2477 * | :----: | :-----: | :----: | :----: | :-----: |
2478 * | **1** | **1** | **1** | **12** | **5.5** |
2479 *
2480 * @see https://developer.mozilla.org/docs/Web/CSS/left
2481 */
2482 left?: Property.Left<TLength> | undefined;
2483 /**
2484 * The **`letter-spacing`** CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of `letter-spacing` causes characters to spread farther apart, while negative values of `letter-spacing` bring characters closer together.
2485 *
2486 * **Syntax**: `normal | <length>`
2487 *
2488 * **Initial value**: `normal`
2489 *
2490 * | Chrome | Firefox | Safari | Edge | IE |
2491 * | :----: | :-----: | :----: | :----: | :---: |
2492 * | **1** | **1** | **1** | **12** | **4** |
2493 *
2494 * @see https://developer.mozilla.org/docs/Web/CSS/letter-spacing
2495 */
2496 letterSpacing?: Property.LetterSpacing<TLength> | undefined;
2497 /**
2498 * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
2499 *
2500 * **Syntax**: `auto | loose | normal | strict | anywhere`
2501 *
2502 * **Initial value**: `auto`
2503 *
2504 * | Chrome | Firefox | Safari | Edge | IE |
2505 * | :-----: | :-----: | :-----: | :----: | :-----: |
2506 * | **58** | **69** | **11** | **14** | **5.5** |
2507 * | 1 _-x-_ | | 3 _-x-_ | | |
2508 *
2509 * @see https://developer.mozilla.org/docs/Web/CSS/line-break
2510 */
2511 lineBreak?: Property.LineBreak | undefined;
2512 /**
2513 * The **`line-height`** CSS property sets the height of a line box. It's commonly used to set the distance between lines of text. On block-level elements, it specifies the minimum height of line boxes within the element. On non-replaced inline elements, it specifies the height that is used to calculate line box height.
2514 *
2515 * **Syntax**: `normal | <number> | <length> | <percentage>`
2516 *
2517 * **Initial value**: `normal`
2518 *
2519 * | Chrome | Firefox | Safari | Edge | IE |
2520 * | :----: | :-----: | :----: | :----: | :---: |
2521 * | **1** | **1** | **1** | **12** | **4** |
2522 *
2523 * @see https://developer.mozilla.org/docs/Web/CSS/line-height
2524 */
2525 lineHeight?: Property.LineHeight<TLength> | undefined;
2526 /**
2527 * The **`line-height-step`** CSS property sets the step unit for line box heights. When the property is set, line box heights are rounded up to the closest multiple of the unit.
2528 *
2529 * **Syntax**: `<length>`
2530 *
2531 * **Initial value**: `0`
2532 *
2533 * | Chrome | Firefox | Safari | Edge | IE |
2534 * | :----: | :-----: | :----: | :--: | :-: |
2535 * | n/a | No | No | n/a | No |
2536 *
2537 * @see https://developer.mozilla.org/docs/Web/CSS/line-height-step
2538 */
2539 lineHeightStep?: Property.LineHeightStep<TLength> | undefined;
2540 /**
2541 * The **`list-style-image`** CSS property sets an image to be used as the list item marker.
2542 *
2543 * **Syntax**: `<image> | none`
2544 *
2545 * **Initial value**: `none`
2546 *
2547 * | Chrome | Firefox | Safari | Edge | IE |
2548 * | :----: | :-----: | :----: | :----: | :---: |
2549 * | **1** | **1** | **1** | **12** | **4** |
2550 *
2551 * @see https://developer.mozilla.org/docs/Web/CSS/list-style-image
2552 */
2553 listStyleImage?: Property.ListStyleImage | undefined;
2554 /**
2555 * The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item.
2556 *
2557 * **Syntax**: `inside | outside`
2558 *
2559 * **Initial value**: `outside`
2560 *
2561 * | Chrome | Firefox | Safari | Edge | IE |
2562 * | :----: | :-----: | :----: | :----: | :---: |
2563 * | **1** | **1** | **1** | **12** | **4** |
2564 *
2565 * @see https://developer.mozilla.org/docs/Web/CSS/list-style-position
2566 */
2567 listStylePosition?: Property.ListStylePosition | undefined;
2568 /**
2569 * The **`list-style-type`** CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element.
2570 *
2571 * **Syntax**: `<counter-style> | <string> | none`
2572 *
2573 * **Initial value**: `disc`
2574 *
2575 * | Chrome | Firefox | Safari | Edge | IE |
2576 * | :----: | :-----: | :----: | :----: | :---: |
2577 * | **1** | **1** | **1** | **12** | **4** |
2578 *
2579 * @see https://developer.mozilla.org/docs/Web/CSS/list-style-type
2580 */
2581 listStyleType?: Property.ListStyleType | undefined;
2582 /**
2583 * The **`margin-block`** CSS shorthand property defines the logical block start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
2584 *
2585 * **Syntax**: `<'margin-left'>{1,2}`
2586 *
2587 * **Initial value**: `0`
2588 *
2589 * | Chrome | Firefox | Safari | Edge | IE |
2590 * | :----: | :-----: | :------: | :----: | :-: |
2591 * | **87** | **66** | **14.1** | **87** | No |
2592 *
2593 * @see https://developer.mozilla.org/docs/Web/CSS/margin-block
2594 */
2595 marginBlock?: Property.MarginBlock<TLength> | undefined;
2596 /**
2597 * The **`margin-block-end`** CSS property defines the logical block end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.
2598 *
2599 * **Syntax**: `<'margin-left'>`
2600 *
2601 * **Initial value**: `0`
2602 *
2603 * | Chrome | Firefox | Safari | Edge | IE |
2604 * | :----: | :-----: | :------: | :----: | :-: |
2605 * | **69** | **41** | **12.1** | **79** | No |
2606 *
2607 * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end
2608 */
2609 marginBlockEnd?: Property.MarginBlockEnd<TLength> | undefined;
2610 /**
2611 * The **`margin-block-start`** CSS property defines the logical block start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.
2612 *
2613 * **Syntax**: `<'margin-left'>`
2614 *
2615 * **Initial value**: `0`
2616 *
2617 * | Chrome | Firefox | Safari | Edge | IE |
2618 * | :----: | :-----: | :------: | :----: | :-: |
2619 * | **69** | **41** | **12.1** | **79** | No |
2620 *
2621 * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start
2622 */
2623 marginBlockStart?: Property.MarginBlockStart<TLength> | undefined;
2624 /**
2625 * The **`margin-bottom`** CSS property sets the margin area on the bottom of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
2626 *
2627 * **Syntax**: `<length> | <percentage> | auto`
2628 *
2629 * **Initial value**: `0`
2630 *
2631 * | Chrome | Firefox | Safari | Edge | IE |
2632 * | :----: | :-----: | :----: | :----: | :---: |
2633 * | **1** | **1** | **1** | **12** | **3** |
2634 *
2635 * @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom
2636 */
2637 marginBottom?: Property.MarginBottom<TLength> | undefined;
2638 /**
2639 * The **`margin-inline`** CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
2640 *
2641 * **Syntax**: `<'margin-left'>{1,2}`
2642 *
2643 * **Initial value**: `0`
2644 *
2645 * | Chrome | Firefox | Safari | Edge | IE |
2646 * | :----: | :-----: | :------: | :----: | :-: |
2647 * | **87** | **66** | **14.1** | **87** | No |
2648 *
2649 * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
2650 */
2651 marginInline?: Property.MarginInline<TLength> | undefined;
2652 /**
2653 * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
2654 *
2655 * **Syntax**: `<'margin-left'>`
2656 *
2657 * **Initial value**: `0`
2658 *
2659 * | Chrome | Firefox | Safari | Edge | IE |
2660 * | :----------------------: | :-------------------: | :----------------------: | :----: | :-: |
2661 * | **69** | **41** | **12.1** | **79** | No |
2662 * | 2 _(-webkit-margin-end)_ | 3 _(-moz-margin-end)_ | 3 _(-webkit-margin-end)_ | | |
2663 *
2664 * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
2665 */
2666 marginInlineEnd?: Property.MarginInlineEnd<TLength> | undefined;
2667 /**
2668 * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
2669 *
2670 * **Syntax**: `<'margin-left'>`
2671 *
2672 * **Initial value**: `0`
2673 *
2674 * | Chrome | Firefox | Safari | Edge | IE |
2675 * | :------------------------: | :---------------------: | :------------------------: | :----: | :-: |
2676 * | **69** | **41** | **12.1** | **79** | No |
2677 * | 2 _(-webkit-margin-start)_ | 3 _(-moz-margin-start)_ | 3 _(-webkit-margin-start)_ | | |
2678 *
2679 * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
2680 */
2681 marginInlineStart?: Property.MarginInlineStart<TLength> | undefined;
2682 /**
2683 * The **`margin-left`** CSS property sets the margin area on the left side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
2684 *
2685 * **Syntax**: `<length> | <percentage> | auto`
2686 *
2687 * **Initial value**: `0`
2688 *
2689 * | Chrome | Firefox | Safari | Edge | IE |
2690 * | :----: | :-----: | :----: | :----: | :---: |
2691 * | **1** | **1** | **1** | **12** | **3** |
2692 *
2693 * @see https://developer.mozilla.org/docs/Web/CSS/margin-left
2694 */
2695 marginLeft?: Property.MarginLeft<TLength> | undefined;
2696 /**
2697 * The **`margin-right`** CSS property sets the margin area on the right side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
2698 *
2699 * **Syntax**: `<length> | <percentage> | auto`
2700 *
2701 * **Initial value**: `0`
2702 *
2703 * | Chrome | Firefox | Safari | Edge | IE |
2704 * | :----: | :-----: | :----: | :----: | :---: |
2705 * | **1** | **1** | **1** | **12** | **3** |
2706 *
2707 * @see https://developer.mozilla.org/docs/Web/CSS/margin-right
2708 */
2709 marginRight?: Property.MarginRight<TLength> | undefined;
2710 /**
2711 * The **`margin-top`** CSS property sets the margin area on the top of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
2712 *
2713 * **Syntax**: `<length> | <percentage> | auto`
2714 *
2715 * **Initial value**: `0`
2716 *
2717 * | Chrome | Firefox | Safari | Edge | IE |
2718 * | :----: | :-----: | :----: | :----: | :---: |
2719 * | **1** | **1** | **1** | **12** | **3** |
2720 *
2721 * @see https://developer.mozilla.org/docs/Web/CSS/margin-top
2722 */
2723 marginTop?: Property.MarginTop<TLength> | undefined;
2724 /**
2725 * The **`mask-border-mode`** CSS property specifies the blending mode used in a mask border.
2726 *
2727 * **Syntax**: `luminance | alpha`
2728 *
2729 * **Initial value**: `alpha`
2730 */
2731 maskBorderMode?: Property.MaskBorderMode | undefined;
2732 /**
2733 * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box.
2734 *
2735 * **Syntax**: `[ <length> | <number> ]{1,4}`
2736 *
2737 * **Initial value**: `0`
2738 *
2739 * | Chrome | Firefox | Safari | Edge | IE |
2740 * | :-------------------------------------: | :-----: | :---------------------------------------: | :--------------------------------------: | :-: |
2741 * | **1** _(-webkit-mask-box-image-outset)_ | No | **3.1** _(-webkit-mask-box-image-outset)_ | **79** _(-webkit-mask-box-image-outset)_ | No |
2742 *
2743 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-outset
2744 */
2745 maskBorderOutset?: Property.MaskBorderOutset<TLength> | undefined;
2746 /**
2747 * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border.
2748 *
2749 * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`
2750 *
2751 * **Initial value**: `stretch`
2752 *
2753 * | Chrome | Firefox | Safari | Edge | IE |
2754 * | :-------------------------------------: | :-----: | :---------------------------------------: | :--------------------------------------: | :-: |
2755 * | **1** _(-webkit-mask-box-image-repeat)_ | No | **3.1** _(-webkit-mask-box-image-repeat)_ | **79** _(-webkit-mask-box-image-repeat)_ | No |
2756 *
2757 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-repeat
2758 */
2759 maskBorderRepeat?: Property.MaskBorderRepeat | undefined;
2760 /**
2761 * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border.
2762 *
2763 * **Syntax**: `<number-percentage>{1,4} fill?`
2764 *
2765 * **Initial value**: `0`
2766 *
2767 * | Chrome | Firefox | Safari | Edge | IE |
2768 * | :------------------------------------: | :-----: | :--------------------------------------: | :-------------------------------------: | :-: |
2769 * | **1** _(-webkit-mask-box-image-slice)_ | No | **3.1** _(-webkit-mask-box-image-slice)_ | **79** _(-webkit-mask-box-image-slice)_ | No |
2770 *
2771 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-slice
2772 */
2773 maskBorderSlice?: Property.MaskBorderSlice | undefined;
2774 /**
2775 * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border.
2776 *
2777 * **Syntax**: `none | <image>`
2778 *
2779 * **Initial value**: `none`
2780 *
2781 * | Chrome | Firefox | Safari | Edge | IE |
2782 * | :-------------------------------------: | :-----: | :---------------------------------------: | :--------------------------------------: | :-: |
2783 * | **1** _(-webkit-mask-box-image-source)_ | No | **3.1** _(-webkit-mask-box-image-source)_ | **79** _(-webkit-mask-box-image-source)_ | No |
2784 *
2785 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-source
2786 */
2787 maskBorderSource?: Property.MaskBorderSource | undefined;
2788 /**
2789 * The **`mask-border-width`** CSS property sets the width of an element's mask border.
2790 *
2791 * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`
2792 *
2793 * **Initial value**: `auto`
2794 *
2795 * | Chrome | Firefox | Safari | Edge | IE |
2796 * | :------------------------------------: | :-----: | :--------------------------------------: | :-------------------------------------: | :-: |
2797 * | **1** _(-webkit-mask-box-image-width)_ | No | **3.1** _(-webkit-mask-box-image-width)_ | **79** _(-webkit-mask-box-image-width)_ | No |
2798 *
2799 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-width
2800 */
2801 maskBorderWidth?: Property.MaskBorderWidth<TLength> | undefined;
2802 /**
2803 * The **`mask-clip`** CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area.
2804 *
2805 * **Syntax**: `[ <geometry-box> | no-clip ]#`
2806 *
2807 * **Initial value**: `border-box`
2808 *
2809 * | Chrome | Firefox | Safari | Edge | IE |
2810 * | :---------: | :-----: | :---------: | :----------: | :-: |
2811 * | **1** _-x-_ | **53** | **4** _-x-_ | **79** _-x-_ | No |
2812 *
2813 * @see https://developer.mozilla.org/docs/Web/CSS/mask-clip
2814 */
2815 maskClip?: Property.MaskClip | undefined;
2816 /**
2817 * The **`mask-composite`** CSS property represents a compositing operation used on the current mask layer with the mask layers below it.
2818 *
2819 * **Syntax**: `<compositing-operator>#`
2820 *
2821 * **Initial value**: `add`
2822 *
2823 * | Chrome | Firefox | Safari | Edge | IE |
2824 * | :----: | :-----: | :----: | :---: | :-: |
2825 * | No | **53** | No | 18-79 | No |
2826 *
2827 * @see https://developer.mozilla.org/docs/Web/CSS/mask-composite
2828 */
2829 maskComposite?: Property.MaskComposite | undefined;
2830 /**
2831 * The **`mask-image`** CSS property sets the image that is used as mask layer for an element.
2832 *
2833 * **Syntax**: `<mask-reference>#`
2834 *
2835 * **Initial value**: `none`
2836 *
2837 * | Chrome | Firefox | Safari | Edge | IE |
2838 * | :---------: | :-----: | :---------: | :---: | :-: |
2839 * | **1** _-x-_ | **53** | **4** _-x-_ | 16-79 | No |
2840 *
2841 * @see https://developer.mozilla.org/docs/Web/CSS/mask-image
2842 */
2843 maskImage?: Property.MaskImage | undefined;
2844 /**
2845 * The **`mask-mode`** CSS property sets whether the mask reference defined by `mask-image` is treated as a luminance or alpha mask.
2846 *
2847 * **Syntax**: `<masking-mode>#`
2848 *
2849 * **Initial value**: `match-source`
2850 *
2851 * | Chrome | Firefox | Safari | Edge | IE |
2852 * | :----: | :-----: | :----: | :--: | :-: |
2853 * | No | **53** | No | No | No |
2854 *
2855 * @see https://developer.mozilla.org/docs/Web/CSS/mask-mode
2856 */
2857 maskMode?: Property.MaskMode | undefined;
2858 /**
2859 * The **`mask-origin`** CSS property sets the origin of a mask.
2860 *
2861 * **Syntax**: `<geometry-box>#`
2862 *
2863 * **Initial value**: `border-box`
2864 *
2865 * | Chrome | Firefox | Safari | Edge | IE |
2866 * | :---------: | :-----: | :---------: | :----------: | :-: |
2867 * | **1** _-x-_ | **53** | **4** _-x-_ | **79** _-x-_ | No |
2868 *
2869 * @see https://developer.mozilla.org/docs/Web/CSS/mask-origin
2870 */
2871 maskOrigin?: Property.MaskOrigin | undefined;
2872 /**
2873 * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image.
2874 *
2875 * **Syntax**: `<position>#`
2876 *
2877 * **Initial value**: `center`
2878 *
2879 * | Chrome | Firefox | Safari | Edge | IE |
2880 * | :---------: | :-----: | :-----------: | :---: | :-: |
2881 * | **1** _-x-_ | **53** | **3.1** _-x-_ | 18-79 | No |
2882 *
2883 * @see https://developer.mozilla.org/docs/Web/CSS/mask-position
2884 */
2885 maskPosition?: Property.MaskPosition<TLength> | undefined;
2886 /**
2887 * The **`mask-repeat`** CSS property sets how mask images are repeated. A mask image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all.
2888 *
2889 * **Syntax**: `<repeat-style>#`
2890 *
2891 * **Initial value**: `no-repeat`
2892 *
2893 * | Chrome | Firefox | Safari | Edge | IE |
2894 * | :---------: | :-----: | :-----------: | :---: | :-: |
2895 * | **1** _-x-_ | **53** | **3.1** _-x-_ | 18-79 | No |
2896 *
2897 * @see https://developer.mozilla.org/docs/Web/CSS/mask-repeat
2898 */
2899 maskRepeat?: Property.MaskRepeat | undefined;
2900 /**
2901 * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio.
2902 *
2903 * **Syntax**: `<bg-size>#`
2904 *
2905 * **Initial value**: `auto`
2906 *
2907 * | Chrome | Firefox | Safari | Edge | IE |
2908 * | :---------: | :-----: | :---------: | :---: | :-: |
2909 * | **4** _-x-_ | **53** | **4** _-x-_ | 18-79 | No |
2910 *
2911 * @see https://developer.mozilla.org/docs/Web/CSS/mask-size
2912 */
2913 maskSize?: Property.MaskSize<TLength> | undefined;
2914 /**
2915 * The **`mask-type`** CSS property sets whether an SVG `<mask>` element is used as a _luminance_ or an _alpha_ mask. It applies to the `<mask>` element itself.
2916 *
2917 * **Syntax**: `luminance | alpha`
2918 *
2919 * **Initial value**: `luminance`
2920 *
2921 * | Chrome | Firefox | Safari | Edge | IE |
2922 * | :----: | :-----: | :----: | :----: | :-: |
2923 * | **24** | **35** | **7** | **79** | No |
2924 *
2925 * @see https://developer.mozilla.org/docs/Web/CSS/mask-type
2926 */
2927 maskType?: Property.MaskType | undefined;
2928 /**
2929 * The `math-style` property indicates whether MathML equations should render with normal or compact height.
2930 *
2931 * **Syntax**: `normal | compact`
2932 *
2933 * **Initial value**: `normal`
2934 *
2935 * | Chrome | Firefox | Safari | Edge | IE |
2936 * | :----: | :-----: | :------: | :--: | :-: |
2937 * | n/a | n/a | **14.1** | No | No |
2938 *
2939 * @see https://developer.mozilla.org/docs/Web/CSS/math-style
2940 */
2941 mathStyle?: Property.MathStyle | undefined;
2942 /**
2943 * The `**max-block-size**` CSS property specifies the maximum size of an element in the direction opposite that of the writing direction as specified by `writing-mode`. That is, if the writing direction is horizontal, then `max-block-size` is equivalent to `max-height`; if the writing direction is vertical, `max-block-size` is the same as `max-width`.
2944 *
2945 * **Syntax**: `<'max-width'>`
2946 *
2947 * **Initial value**: `0`
2948 *
2949 * | Chrome | Firefox | Safari | Edge | IE |
2950 * | :----: | :-----: | :------: | :----: | :-: |
2951 * | **57** | **41** | **12.1** | **79** | No |
2952 *
2953 * @see https://developer.mozilla.org/docs/Web/CSS/max-block-size
2954 */
2955 maxBlockSize?: Property.MaxBlockSize<TLength> | undefined;
2956 /**
2957 * The **`max-height`** CSS property sets the maximum height of an element. It prevents the used value of the `height` property from becoming larger than the value specified for `max-height`.
2958 *
2959 * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
2960 *
2961 * **Initial value**: `none`
2962 *
2963 * | Chrome | Firefox | Safari | Edge | IE |
2964 * | :----: | :-----: | :-----: | :----: | :---: |
2965 * | **18** | **1** | **1.3** | **12** | **7** |
2966 *
2967 * @see https://developer.mozilla.org/docs/Web/CSS/max-height
2968 */
2969 maxHeight?: Property.MaxHeight<TLength> | undefined;
2970 /**
2971 * The **`max-inline-size`** CSS property defines the horizontal or vertical maximum size of an element's block, depending on its writing mode. It corresponds to either the `max-width` or the `max-height` property, depending on the value of `writing-mode`.
2972 *
2973 * **Syntax**: `<'max-width'>`
2974 *
2975 * **Initial value**: `0`
2976 *
2977 * | Chrome | Firefox | Safari | Edge | IE |
2978 * | :----: | :-----: | :--------: | :----: | :-: |
2979 * | **57** | **41** | **12.1** | **79** | No |
2980 * | | | 10.1 _-x-_ | | |
2981 *
2982 * @see https://developer.mozilla.org/docs/Web/CSS/max-inline-size
2983 */
2984 maxInlineSize?: Property.MaxInlineSize<TLength> | undefined;
2985 /**
2986 * **Syntax**: `none | <integer>`
2987 *
2988 * **Initial value**: `none`
2989 */
2990 maxLines?: Property.MaxLines | undefined;
2991 /**
2992 * The **`max-width`** CSS property sets the maximum width of an element. It prevents the used value of the `width` property from becoming larger than the value specified by `max-width`.
2993 *
2994 * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
2995 *
2996 * **Initial value**: `none`
2997 *
2998 * | Chrome | Firefox | Safari | Edge | IE |
2999 * | :----: | :-----: | :----: | :----: | :---: |
3000 * | **1** | **1** | **1** | **12** | **7** |
3001 *
3002 * @see https://developer.mozilla.org/docs/Web/CSS/max-width
3003 */
3004 maxWidth?: Property.MaxWidth<TLength> | undefined;
3005 /**
3006 * The **`min-block-size`** CSS property defines the minimum horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.
3007 *
3008 * **Syntax**: `<'min-width'>`
3009 *
3010 * **Initial value**: `0`
3011 *
3012 * | Chrome | Firefox | Safari | Edge | IE |
3013 * | :----: | :-----: | :------: | :----: | :-: |
3014 * | **57** | **41** | **12.1** | **79** | No |
3015 *
3016 * @see https://developer.mozilla.org/docs/Web/CSS/min-block-size
3017 */
3018 minBlockSize?: Property.MinBlockSize<TLength> | undefined;
3019 /**
3020 * The **`min-height`** CSS property sets the minimum height of an element. It prevents the used value of the `height` property from becoming smaller than the value specified for `min-height`.
3021 *
3022 * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
3023 *
3024 * **Initial value**: `auto`
3025 *
3026 * | Chrome | Firefox | Safari | Edge | IE |
3027 * | :----: | :-----: | :-----: | :----: | :---: |
3028 * | **1** | **3** | **1.3** | **12** | **7** |
3029 *
3030 * @see https://developer.mozilla.org/docs/Web/CSS/min-height
3031 */
3032 minHeight?: Property.MinHeight<TLength> | undefined;
3033 /**
3034 * The **`min-inline-size`** CSS property defines the horizontal or vertical minimal size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.
3035 *
3036 * **Syntax**: `<'min-width'>`
3037 *
3038 * **Initial value**: `0`
3039 *
3040 * | Chrome | Firefox | Safari | Edge | IE |
3041 * | :----: | :-----: | :------: | :----: | :-: |
3042 * | **57** | **41** | **12.1** | **79** | No |
3043 *
3044 * @see https://developer.mozilla.org/docs/Web/CSS/min-inline-size
3045 */
3046 minInlineSize?: Property.MinInlineSize<TLength> | undefined;
3047 /**
3048 * The **`min-width`** CSS property sets the minimum width of an element. It prevents the used value of the `width` property from becoming smaller than the value specified for `min-width`.
3049 *
3050 * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
3051 *
3052 * **Initial value**: `auto`
3053 *
3054 * | Chrome | Firefox | Safari | Edge | IE |
3055 * | :----: | :-----: | :----: | :----: | :---: |
3056 * | **1** | **1** | **1** | **12** | **7** |
3057 *
3058 * @see https://developer.mozilla.org/docs/Web/CSS/min-width
3059 */
3060 minWidth?: Property.MinWidth<TLength> | undefined;
3061 /**
3062 * The **`mix-blend-mode`** CSS property sets how an element's content should blend with the content of the element's parent and the element's background.
3063 *
3064 * **Syntax**: `<blend-mode>`
3065 *
3066 * **Initial value**: `normal`
3067 *
3068 * | Chrome | Firefox | Safari | Edge | IE |
3069 * | :----: | :-----: | :----: | :----: | :-: |
3070 * | **41** | **32** | **8** | **79** | No |
3071 *
3072 * @see https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode
3073 */
3074 mixBlendMode?: Property.MixBlendMode | undefined;
3075 /**
3076 * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.
3077 *
3078 * **Syntax**: `<length-percentage>`
3079 *
3080 * **Initial value**: `0`
3081 *
3082 * | Chrome | Firefox | Safari | Edge | IE |
3083 * | :--------------------: | :-----: | :----: | :----: | :-: |
3084 * | **55** | **72** | No | **79** | No |
3085 * | 46 _(motion-distance)_ | | | | |
3086 *
3087 * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance
3088 */
3089 motionDistance?: Property.OffsetDistance<TLength> | undefined;
3090 /**
3091 * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.
3092 *
3093 * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`
3094 *
3095 * **Initial value**: `none`
3096 *
3097 * | Chrome | Firefox | Safari | Edge | IE |
3098 * | :----------------: | :-----: | :----: | :----: | :-: |
3099 * | **55** | **72** | No | **79** | No |
3100 * | 46 _(motion-path)_ | | | | |
3101 *
3102 * @see https://developer.mozilla.org/docs/Web/CSS/offset-path
3103 */
3104 motionPath?: Property.OffsetPath | undefined;
3105 /**
3106 * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.
3107 *
3108 * **Syntax**: `[ auto | reverse ] || <angle>`
3109 *
3110 * **Initial value**: `auto`
3111 *
3112 * | Chrome | Firefox | Safari | Edge | IE |
3113 * | :--------------------: | :-----: | :----: | :----: | :-: |
3114 * | **56** | **72** | No | **79** | No |
3115 * | 46 _(motion-rotation)_ | | | | |
3116 *
3117 * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
3118 */
3119 motionRotation?: Property.OffsetRotate | undefined;
3120 /**
3121 * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `<img>` or `<video>`, should be resized to fit its container.
3122 *
3123 * **Syntax**: `fill | contain | cover | none | scale-down`
3124 *
3125 * **Initial value**: `fill`
3126 *
3127 * | Chrome | Firefox | Safari | Edge | IE |
3128 * | :----: | :-----: | :----: | :----: | :-: |
3129 * | **32** | **36** | **10** | **79** | No |
3130 *
3131 * @see https://developer.mozilla.org/docs/Web/CSS/object-fit
3132 */
3133 objectFit?: Property.ObjectFit | undefined;
3134 /**
3135 * The **`object-position`** CSS property specifies the alignment of the selected replaced element's contents within the element's box. Areas of the box which aren't covered by the replaced element's object will show the element's background.
3136 *
3137 * **Syntax**: `<position>`
3138 *
3139 * **Initial value**: `50% 50%`
3140 *
3141 * | Chrome | Firefox | Safari | Edge | IE |
3142 * | :----: | :-----: | :----: | :----: | :-: |
3143 * | **32** | **36** | **10** | **79** | No |
3144 *
3145 * @see https://developer.mozilla.org/docs/Web/CSS/object-position
3146 */
3147 objectPosition?: Property.ObjectPosition<TLength> | undefined;
3148 /**
3149 * **Syntax**: `auto | <position>`
3150 *
3151 * **Initial value**: `auto`
3152 *
3153 * | Chrome | Firefox | Safari | Edge | IE |
3154 * | :----: | :-----: | :----: | :----: | :-: |
3155 * | **79** | **72** | No | **79** | No |
3156 *
3157 * @see https://developer.mozilla.org/docs/Web/CSS/offset-anchor
3158 */
3159 offsetAnchor?: Property.OffsetAnchor<TLength> | undefined;
3160 /**
3161 * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.
3162 *
3163 * **Syntax**: `<length-percentage>`
3164 *
3165 * **Initial value**: `0`
3166 *
3167 * | Chrome | Firefox | Safari | Edge | IE |
3168 * | :--------------------: | :-----: | :----: | :----: | :-: |
3169 * | **55** | **72** | No | **79** | No |
3170 * | 46 _(motion-distance)_ | | | | |
3171 *
3172 * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance
3173 */
3174 offsetDistance?: Property.OffsetDistance<TLength> | undefined;
3175 /**
3176 * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.
3177 *
3178 * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`
3179 *
3180 * **Initial value**: `none`
3181 *
3182 * | Chrome | Firefox | Safari | Edge | IE |
3183 * | :----------------: | :-----: | :----: | :----: | :-: |
3184 * | **55** | **72** | No | **79** | No |
3185 * | 46 _(motion-path)_ | | | | |
3186 *
3187 * @see https://developer.mozilla.org/docs/Web/CSS/offset-path
3188 */
3189 offsetPath?: Property.OffsetPath | undefined;
3190 /**
3191 * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.
3192 *
3193 * **Syntax**: `[ auto | reverse ] || <angle>`
3194 *
3195 * **Initial value**: `auto`
3196 *
3197 * | Chrome | Firefox | Safari | Edge | IE |
3198 * | :--------------------: | :-----: | :----: | :----: | :-: |
3199 * | **56** | **72** | No | **79** | No |
3200 * | 46 _(motion-rotation)_ | | | | |
3201 *
3202 * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
3203 */
3204 offsetRotate?: Property.OffsetRotate | undefined;
3205 /**
3206 * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.
3207 *
3208 * **Syntax**: `[ auto | reverse ] || <angle>`
3209 *
3210 * **Initial value**: `auto`
3211 *
3212 * | Chrome | Firefox | Safari | Edge | IE |
3213 * | :--------------------: | :-----: | :----: | :----: | :-: |
3214 * | **56** | **72** | No | **79** | No |
3215 * | 46 _(motion-rotation)_ | | | | |
3216 *
3217 * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
3218 */
3219 offsetRotation?: Property.OffsetRotate | undefined;
3220 /**
3221 * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.
3222 *
3223 * **Syntax**: `<alpha-value>`
3224 *
3225 * **Initial value**: `1.0`
3226 *
3227 * | Chrome | Firefox | Safari | Edge | IE |
3228 * | :----: | :-----: | :----: | :----: | :---: |
3229 * | **1** | **1** | **2** | **12** | **9** |
3230 *
3231 * @see https://developer.mozilla.org/docs/Web/CSS/opacity
3232 */
3233 opacity?: Property.Opacity | undefined;
3234 /**
3235 * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.
3236 *
3237 * **Syntax**: `<integer>`
3238 *
3239 * **Initial value**: `0`
3240 *
3241 * | Chrome | Firefox | Safari | Edge | IE |
3242 * | :------: | :-----: | :-----: | :----: | :------: |
3243 * | **29** | **20** | **9** | **12** | **11** |
3244 * | 21 _-x-_ | | 7 _-x-_ | | 10 _-x-_ |
3245 *
3246 * @see https://developer.mozilla.org/docs/Web/CSS/order
3247 */
3248 order?: Property.Order | undefined;
3249 /**
3250 * The **`orphans`** CSS property sets the minimum number of lines in a block container that must be shown at the _bottom_ of a page, region, or column.
3251 *
3252 * **Syntax**: `<integer>`
3253 *
3254 * **Initial value**: `2`
3255 *
3256 * | Chrome | Firefox | Safari | Edge | IE |
3257 * | :----: | :-----: | :-----: | :----: | :---: |
3258 * | **25** | No | **1.3** | **12** | **8** |
3259 *
3260 * @see https://developer.mozilla.org/docs/Web/CSS/orphans
3261 */
3262 orphans?: Property.Orphans | undefined;
3263 /**
3264 * The **`outline-color`** CSS property sets the color of an element's outline.
3265 *
3266 * **Syntax**: `<color> | invert`
3267 *
3268 * **Initial value**: `invert`, for browsers supporting it, `currentColor` for the other
3269 *
3270 * | Chrome | Firefox | Safari | Edge | IE |
3271 * | :----: | :-----: | :-----: | :----: | :---: |
3272 * | **1** | **1.5** | **1.2** | **12** | **8** |
3273 *
3274 * @see https://developer.mozilla.org/docs/Web/CSS/outline-color
3275 */
3276 outlineColor?: Property.OutlineColor | undefined;
3277 /**
3278 * The **`outline-offset`** CSS property sets the amount of space between an outline and the edge or border of an element.
3279 *
3280 * **Syntax**: `<length>`
3281 *
3282 * **Initial value**: `0`
3283 *
3284 * | Chrome | Firefox | Safari | Edge | IE |
3285 * | :----: | :-----: | :-----: | :----: | :-: |
3286 * | **1** | **1.5** | **1.2** | **15** | No |
3287 *
3288 * @see https://developer.mozilla.org/docs/Web/CSS/outline-offset
3289 */
3290 outlineOffset?: Property.OutlineOffset<TLength> | undefined;
3291 /**
3292 * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
3293 *
3294 * **Syntax**: `auto | <'border-style'>`
3295 *
3296 * **Initial value**: `none`
3297 *
3298 * | Chrome | Firefox | Safari | Edge | IE |
3299 * | :----: | :-----: | :-----: | :----: | :---: |
3300 * | **1** | **1.5** | **1.2** | **12** | **8** |
3301 *
3302 * @see https://developer.mozilla.org/docs/Web/CSS/outline-style
3303 */
3304 outlineStyle?: Property.OutlineStyle | undefined;
3305 /**
3306 * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
3307 *
3308 * **Syntax**: `<line-width>`
3309 *
3310 * **Initial value**: `medium`
3311 *
3312 * | Chrome | Firefox | Safari | Edge | IE |
3313 * | :----: | :-----: | :-----: | :----: | :---: |
3314 * | **1** | **1.5** | **1.2** | **12** | **8** |
3315 *
3316 * @see https://developer.mozilla.org/docs/Web/CSS/outline-width
3317 */
3318 outlineWidth?: Property.OutlineWidth<TLength> | undefined;
3319 /**
3320 * **Syntax**: `auto | none`
3321 *
3322 * **Initial value**: `auto`
3323 *
3324 * | Chrome | Firefox | Safari | Edge | IE |
3325 * | :----: | :-----: | :----: | :----: | :-: |
3326 * | **56** | **66** | No | **79** | No |
3327 *
3328 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-anchor
3329 */
3330 overflowAnchor?: Property.OverflowAnchor | undefined;
3331 /**
3332 * **Syntax**: `visible | hidden | clip | scroll | auto`
3333 *
3334 * **Initial value**: `auto`
3335 *
3336 * | Chrome | Firefox | Safari | Edge | IE |
3337 * | :----: | :-----: | :----: | :--: | :-: |
3338 * | No | **69** | No | No | No |
3339 *
3340 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-block
3341 */
3342 overflowBlock?: Property.OverflowBlock | undefined;
3343 /**
3344 * The **`overflow-clip-box`** CSS property specifies relative to which box the clipping happens when there is an overflow. It is short hand for the `overflow-clip-box-inline` and `overflow-clip-box-block` properties.
3345 *
3346 * **Syntax**: `padding-box | content-box`
3347 *
3348 * **Initial value**: `padding-box`
3349 *
3350 * | Chrome | Firefox | Safari | Edge | IE |
3351 * | :----: | :-----: | :----: | :--: | :-: |
3352 * | No | **29** | No | No | No |
3353 *
3354 * @see https://developer.mozilla.org/docs/Mozilla/Gecko/Chrome/CSS/overflow-clip-box
3355 */
3356 overflowClipBox?: Property.OverflowClipBox | undefined;
3357 /**
3358 * **Syntax**: `<visual-box> || <length [0,∞]>`
3359 *
3360 * **Initial value**: `0px`
3361 *
3362 * | Chrome | Firefox | Safari | Edge | IE |
3363 * | :----: | :-----: | :----: | :----: | :-: |
3364 * | **90** | No | No | **90** | No |
3365 *
3366 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-clip-margin
3367 */
3368 overflowClipMargin?: Property.OverflowClipMargin<TLength> | undefined;
3369 /**
3370 * **Syntax**: `visible | hidden | clip | scroll | auto`
3371 *
3372 * **Initial value**: `auto`
3373 *
3374 * | Chrome | Firefox | Safari | Edge | IE |
3375 * | :----: | :-----: | :----: | :--: | :-: |
3376 * | No | **69** | No | No | No |
3377 *
3378 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-inline
3379 */
3380 overflowInline?: Property.OverflowInline | undefined;
3381 /**
3382 * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.
3383 *
3384 * **Syntax**: `normal | break-word | anywhere`
3385 *
3386 * **Initial value**: `normal`
3387 *
3388 * | Chrome | Firefox | Safari | Edge | IE |
3389 * | :-------------: | :---------------: | :-------------: | :--------------: | :-------------------: |
3390 * | **23** | **49** | **7** | **18** | **5.5** _(word-wrap)_ |
3391 * | 1 _(word-wrap)_ | 3.5 _(word-wrap)_ | 1 _(word-wrap)_ | 12 _(word-wrap)_ | |
3392 *
3393 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-wrap
3394 */
3395 overflowWrap?: Property.OverflowWrap | undefined;
3396 /**
3397 * The **`overflow-x`** CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.
3398 *
3399 * **Syntax**: `visible | hidden | clip | scroll | auto`
3400 *
3401 * **Initial value**: `visible`
3402 *
3403 * | Chrome | Firefox | Safari | Edge | IE |
3404 * | :----: | :-----: | :----: | :----: | :---: |
3405 * | **1** | **3.5** | **3** | **12** | **5** |
3406 *
3407 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-x
3408 */
3409 overflowX?: Property.OverflowX | undefined;
3410 /**
3411 * The **`overflow-y`** CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.
3412 *
3413 * **Syntax**: `visible | hidden | clip | scroll | auto`
3414 *
3415 * **Initial value**: `visible`
3416 *
3417 * | Chrome | Firefox | Safari | Edge | IE |
3418 * | :----: | :-----: | :----: | :----: | :---: |
3419 * | **1** | **3.5** | **3** | **12** | **5** |
3420 *
3421 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-y
3422 */
3423 overflowY?: Property.OverflowY | undefined;
3424 /**
3425 * The **`overscroll-behavior-block`** CSS property sets the browser's behavior when the block direction boundary of a scrolling area is reached.
3426 *
3427 * **Syntax**: `contain | none | auto`
3428 *
3429 * **Initial value**: `auto`
3430 *
3431 * | Chrome | Firefox | Safari | Edge | IE |
3432 * | :----: | :-----: | :----: | :----: | :-: |
3433 * | **77** | **73** | No | **79** | No |
3434 *
3435 * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-block
3436 */
3437 overscrollBehaviorBlock?: Property.OverscrollBehaviorBlock | undefined;
3438 /**
3439 * The **`overscroll-behavior-inline`** CSS property sets the browser's behavior when the inline direction boundary of a scrolling area is reached.
3440 *
3441 * **Syntax**: `contain | none | auto`
3442 *
3443 * **Initial value**: `auto`
3444 *
3445 * | Chrome | Firefox | Safari | Edge | IE |
3446 * | :----: | :-----: | :----: | :----: | :-: |
3447 * | **77** | **73** | No | **79** | No |
3448 *
3449 * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-inline
3450 */
3451 overscrollBehaviorInline?: Property.OverscrollBehaviorInline | undefined;
3452 /**
3453 * The **`overscroll-behavior-x`** CSS property sets the browser's behavior when the horizontal boundary of a scrolling area is reached.
3454 *
3455 * **Syntax**: `contain | none | auto`
3456 *
3457 * **Initial value**: `auto`
3458 *
3459 * | Chrome | Firefox | Safari | Edge | IE |
3460 * | :----: | :-----: | :----: | :----: | :-: |
3461 * | **63** | **59** | No | **18** | No |
3462 *
3463 * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-x
3464 */
3465 overscrollBehaviorX?: Property.OverscrollBehaviorX | undefined;
3466 /**
3467 * The **`overscroll-behavior-y`** CSS property sets the browser's behavior when the vertical boundary of a scrolling area is reached.
3468 *
3469 * **Syntax**: `contain | none | auto`
3470 *
3471 * **Initial value**: `auto`
3472 *
3473 * | Chrome | Firefox | Safari | Edge | IE |
3474 * | :----: | :-----: | :----: | :----: | :-: |
3475 * | **63** | **59** | No | **18** | No |
3476 *
3477 * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-y
3478 */
3479 overscrollBehaviorY?: Property.OverscrollBehaviorY | undefined;
3480 /**
3481 * The **`padding-block`** CSS shorthand property defines the logical block start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
3482 *
3483 * **Syntax**: `<'padding-left'>{1,2}`
3484 *
3485 * **Initial value**: `0`
3486 *
3487 * | Chrome | Firefox | Safari | Edge | IE |
3488 * | :----: | :-----: | :------: | :----: | :-: |
3489 * | **87** | **66** | **14.1** | **87** | No |
3490 *
3491 * @see https://developer.mozilla.org/docs/Web/CSS/padding-block
3492 */
3493 paddingBlock?: Property.PaddingBlock<TLength> | undefined;
3494 /**
3495 * The **`padding-block-end`** CSS property defines the logical block end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
3496 *
3497 * **Syntax**: `<'padding-left'>`
3498 *
3499 * **Initial value**: `0`
3500 *
3501 * | Chrome | Firefox | Safari | Edge | IE |
3502 * | :----: | :-----: | :------: | :----: | :-: |
3503 * | **69** | **41** | **12.1** | **79** | No |
3504 *
3505 * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-end
3506 */
3507 paddingBlockEnd?: Property.PaddingBlockEnd<TLength> | undefined;
3508 /**
3509 * The **`padding-block-start`** CSS property defines the logical block start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
3510 *
3511 * **Syntax**: `<'padding-left'>`
3512 *
3513 * **Initial value**: `0`
3514 *
3515 * | Chrome | Firefox | Safari | Edge | IE |
3516 * | :----: | :-----: | :------: | :----: | :-: |
3517 * | **69** | **41** | **12.1** | **79** | No |
3518 *
3519 * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-start
3520 */
3521 paddingBlockStart?: Property.PaddingBlockStart<TLength> | undefined;
3522 /**
3523 * The **`padding-bottom`** CSS property sets the height of the padding area on the bottom of an element.
3524 *
3525 * **Syntax**: `<length> | <percentage>`
3526 *
3527 * **Initial value**: `0`
3528 *
3529 * | Chrome | Firefox | Safari | Edge | IE |
3530 * | :----: | :-----: | :----: | :----: | :---: |
3531 * | **1** | **1** | **1** | **12** | **4** |
3532 *
3533 * @see https://developer.mozilla.org/docs/Web/CSS/padding-bottom
3534 */
3535 paddingBottom?: Property.PaddingBottom<TLength> | undefined;
3536 /**
3537 * The **`padding-inline`** CSS shorthand property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
3538 *
3539 * **Syntax**: `<'padding-left'>{1,2}`
3540 *
3541 * **Initial value**: `0`
3542 *
3543 * | Chrome | Firefox | Safari | Edge | IE |
3544 * | :----: | :-----: | :------: | :----: | :-: |
3545 * | **87** | **66** | **14.1** | **87** | No |
3546 *
3547 * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
3548 */
3549 paddingInline?: Property.PaddingInline<TLength> | undefined;
3550 /**
3551 * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
3552 *
3553 * **Syntax**: `<'padding-left'>`
3554 *
3555 * **Initial value**: `0`
3556 *
3557 * | Chrome | Firefox | Safari | Edge | IE |
3558 * | :-----------------------: | :--------------------: | :-----------------------: | :----: | :-: |
3559 * | **69** | **41** | **12.1** | **79** | No |
3560 * | 2 _(-webkit-padding-end)_ | 3 _(-moz-padding-end)_ | 3 _(-webkit-padding-end)_ | | |
3561 *
3562 * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
3563 */
3564 paddingInlineEnd?: Property.PaddingInlineEnd<TLength> | undefined;
3565 /**
3566 * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
3567 *
3568 * **Syntax**: `<'padding-left'>`
3569 *
3570 * **Initial value**: `0`
3571 *
3572 * | Chrome | Firefox | Safari | Edge | IE |
3573 * | :-------------------------: | :----------------------: | :-------------------------: | :----: | :-: |
3574 * | **69** | **41** | **12.1** | **79** | No |
3575 * | 2 _(-webkit-padding-start)_ | 3 _(-moz-padding-start)_ | 3 _(-webkit-padding-start)_ | | |
3576 *
3577 * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
3578 */
3579 paddingInlineStart?: Property.PaddingInlineStart<TLength> | undefined;
3580 /**
3581 * The **`padding-left`** CSS property sets the width of the padding area to the left of an element.
3582 *
3583 * **Syntax**: `<length> | <percentage>`
3584 *
3585 * **Initial value**: `0`
3586 *
3587 * | Chrome | Firefox | Safari | Edge | IE |
3588 * | :----: | :-----: | :----: | :----: | :---: |
3589 * | **1** | **1** | **1** | **12** | **4** |
3590 *
3591 * @see https://developer.mozilla.org/docs/Web/CSS/padding-left
3592 */
3593 paddingLeft?: Property.PaddingLeft<TLength> | undefined;
3594 /**
3595 * The **`padding-right`** CSS property sets the width of the padding area on the right of an element.
3596 *
3597 * **Syntax**: `<length> | <percentage>`
3598 *
3599 * **Initial value**: `0`
3600 *
3601 * | Chrome | Firefox | Safari | Edge | IE |
3602 * | :----: | :-----: | :----: | :----: | :---: |
3603 * | **1** | **1** | **1** | **12** | **4** |
3604 *
3605 * @see https://developer.mozilla.org/docs/Web/CSS/padding-right
3606 */
3607 paddingRight?: Property.PaddingRight<TLength> | undefined;
3608 /**
3609 * The **`padding-top`** CSS property sets the height of the padding area on the top of an element.
3610 *
3611 * **Syntax**: `<length> | <percentage>`
3612 *
3613 * **Initial value**: `0`
3614 *
3615 * | Chrome | Firefox | Safari | Edge | IE |
3616 * | :----: | :-----: | :----: | :----: | :---: |
3617 * | **1** | **1** | **1** | **12** | **4** |
3618 *
3619 * @see https://developer.mozilla.org/docs/Web/CSS/padding-top
3620 */
3621 paddingTop?: Property.PaddingTop<TLength> | undefined;
3622 /**
3623 * The **`page-break-after`** CSS property adjusts page breaks _after_ the current element.
3624 *
3625 * **Syntax**: `auto | always | avoid | left | right | recto | verso`
3626 *
3627 * **Initial value**: `auto`
3628 *
3629 * | Chrome | Firefox | Safari | Edge | IE |
3630 * | :----: | :-----: | :-----: | :----: | :---: |
3631 * | **1** | **1** | **1.2** | **12** | **4** |
3632 *
3633 * @see https://developer.mozilla.org/docs/Web/CSS/page-break-after
3634 */
3635 pageBreakAfter?: Property.PageBreakAfter | undefined;
3636 /**
3637 * The **`page-break-before`** CSS property adjusts page breaks _before_ the current element.
3638 *
3639 * **Syntax**: `auto | always | avoid | left | right | recto | verso`
3640 *
3641 * **Initial value**: `auto`
3642 *
3643 * | Chrome | Firefox | Safari | Edge | IE |
3644 * | :----: | :-----: | :-----: | :----: | :---: |
3645 * | **1** | **1** | **1.2** | **12** | **4** |
3646 *
3647 * @see https://developer.mozilla.org/docs/Web/CSS/page-break-before
3648 */
3649 pageBreakBefore?: Property.PageBreakBefore | undefined;
3650 /**
3651 * The **`page-break-inside`** CSS property adjusts page breaks _inside_ the current element.
3652 *
3653 * **Syntax**: `auto | avoid`
3654 *
3655 * **Initial value**: `auto`
3656 *
3657 * | Chrome | Firefox | Safari | Edge | IE |
3658 * | :----: | :-----: | :-----: | :----: | :---: |
3659 * | **1** | **19** | **1.3** | **12** | **8** |
3660 *
3661 * @see https://developer.mozilla.org/docs/Web/CSS/page-break-inside
3662 */
3663 pageBreakInside?: Property.PageBreakInside | undefined;
3664 /**
3665 * The **`paint-order`** CSS property lets you control the order in which the fill and stroke (and painting markers) of text content and shapes are drawn.
3666 *
3667 * **Syntax**: `normal | [ fill || stroke || markers ]`
3668 *
3669 * **Initial value**: `normal`
3670 *
3671 * | Chrome | Firefox | Safari | Edge | IE |
3672 * | :----: | :-----: | :----: | :----: | :-: |
3673 * | **35** | **60** | **8** | **17** | No |
3674 *
3675 * @see https://developer.mozilla.org/docs/Web/CSS/paint-order
3676 */
3677 paintOrder?: Property.PaintOrder | undefined;
3678 /**
3679 * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
3680 *
3681 * **Syntax**: `none | <length>`
3682 *
3683 * **Initial value**: `none`
3684 *
3685 * | Chrome | Firefox | Safari | Edge | IE |
3686 * | :------: | :------: | :-----: | :----: | :----: |
3687 * | **36** | **16** | **9** | **12** | **10** |
3688 * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | |
3689 *
3690 * @see https://developer.mozilla.org/docs/Web/CSS/perspective
3691 */
3692 perspective?: Property.Perspective<TLength> | undefined;
3693 /**
3694 * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
3695 *
3696 * **Syntax**: `<position>`
3697 *
3698 * **Initial value**: `50% 50%`
3699 *
3700 * | Chrome | Firefox | Safari | Edge | IE |
3701 * | :------: | :------: | :-----: | :----: | :----: |
3702 * | **36** | **16** | **9** | **12** | **10** |
3703 * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | |
3704 *
3705 * @see https://developer.mozilla.org/docs/Web/CSS/perspective-origin
3706 */
3707 perspectiveOrigin?: Property.PerspectiveOrigin<TLength> | undefined;
3708 /**
3709 * The `**place-content**` CSS shorthand property allows you to align content along both the block and inline directions at once (i.e. the `align-content` and `justify-content` properties) in a relevant layout system such as Grid or Flexbox.
3710 *
3711 * **Syntax**: `<'align-content'> <'justify-content'>?`
3712 *
3713 * **Initial value**: `normal`
3714 *
3715 * | Chrome | Firefox | Safari | Edge | IE |
3716 * | :----: | :-----: | :----: | :----: | :-: |
3717 * | **59** | **45** | **9** | **79** | No |
3718 *
3719 * @see https://developer.mozilla.org/docs/Web/CSS/place-content
3720 */
3721 placeContent?: Property.PlaceContent | undefined;
3722 /**
3723 * The **`pointer-events`** CSS property sets under what circumstances (if any) a particular graphic element can become the target of pointer events.
3724 *
3725 * **Syntax**: `auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit`
3726 *
3727 * **Initial value**: `auto`
3728 *
3729 * | Chrome | Firefox | Safari | Edge | IE |
3730 * | :----: | :-----: | :----: | :----: | :----: |
3731 * | **1** | **1.5** | **4** | **12** | **11** |
3732 *
3733 * @see https://developer.mozilla.org/docs/Web/CSS/pointer-events
3734 */
3735 pointerEvents?: Property.PointerEvents | undefined;
3736 /**
3737 * The **`position`** CSS property sets how an element is positioned in a document. The `top`, `right`, `bottom`, and `left` properties determine the final location of positioned elements.
3738 *
3739 * **Syntax**: `static | relative | absolute | sticky | fixed`
3740 *
3741 * **Initial value**: `static`
3742 *
3743 * | Chrome | Firefox | Safari | Edge | IE |
3744 * | :----: | :-----: | :----: | :----: | :---: |
3745 * | **1** | **1** | **1** | **12** | **4** |
3746 *
3747 * @see https://developer.mozilla.org/docs/Web/CSS/position
3748 */
3749 position?: Property.Position | undefined;
3750 /**
3751 * The **`quotes`** CSS property sets how the browser should render quotation marks that are added using the `open-quotes` or `close-quotes` values of the CSS `content` property.
3752 *
3753 * **Syntax**: `none | auto | [ <string> <string> ]+`
3754 *
3755 * **Initial value**: depends on user agent
3756 *
3757 * | Chrome | Firefox | Safari | Edge | IE |
3758 * | :----: | :-----: | :----: | :----: | :---: |
3759 * | **11** | **1.5** | **9** | **12** | **8** |
3760 *
3761 * @see https://developer.mozilla.org/docs/Web/CSS/quotes
3762 */
3763 quotes?: Property.Quotes | undefined;
3764 /**
3765 * The **`resize`** CSS property sets whether an element is resizable, and if so, in which directions.
3766 *
3767 * **Syntax**: `none | both | horizontal | vertical | block | inline`
3768 *
3769 * **Initial value**: `none`
3770 *
3771 * | Chrome | Firefox | Safari | Edge | IE |
3772 * | :----: | :-----: | :----: | :----: | :-: |
3773 * | **1** | **4** | **3** | **79** | No |
3774 *
3775 * @see https://developer.mozilla.org/docs/Web/CSS/resize
3776 */
3777 resize?: Property.Resize | undefined;
3778 /**
3779 * The **`right`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.
3780 *
3781 * **Syntax**: `<length> | <percentage> | auto`
3782 *
3783 * **Initial value**: `auto`
3784 *
3785 * | Chrome | Firefox | Safari | Edge | IE |
3786 * | :----: | :-----: | :----: | :----: | :-----: |
3787 * | **1** | **1** | **1** | **12** | **5.5** |
3788 *
3789 * @see https://developer.mozilla.org/docs/Web/CSS/right
3790 */
3791 right?: Property.Right<TLength> | undefined;
3792 /**
3793 * The **`rotate`** CSS property allows you to specify rotation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` property.
3794 *
3795 * **Syntax**: `none | <angle> | [ x | y | z | <number>{3} ] && <angle>`
3796 *
3797 * **Initial value**: `none`
3798 *
3799 * | Chrome | Firefox | Safari | Edge | IE |
3800 * | :----: | :-----: | :------: | :--: | :-: |
3801 * | No | **72** | **14.1** | No | No |
3802 *
3803 * @see https://developer.mozilla.org/docs/Web/CSS/rotate
3804 */
3805 rotate?: Property.Rotate | undefined;
3806 /**
3807 * The **`row-gap`** CSS property sets the size of the gap (gutter) between an element's grid rows.
3808 *
3809 * **Syntax**: `normal | <length-percentage>`
3810 *
3811 * **Initial value**: `normal`
3812 *
3813 * ---
3814 *
3815 * _Supported in Flex Layout_
3816 *
3817 * | Chrome | Firefox | Safari | Edge | IE |
3818 * | :----: | :-----: | :------: | :----: | :-: |
3819 * | **84** | **63** | **14.1** | **84** | No |
3820 *
3821 * ---
3822 *
3823 * _Supported in Grid Layout_
3824 *
3825 * | Chrome | Firefox | Safari | Edge | IE |
3826 * | :-----------------: | :-----------------: | :-------------------: | :----: | :-: |
3827 * | **66** | **61** | **12** | **16** | No |
3828 * | 57 _(grid-row-gap)_ | 52 _(grid-row-gap)_ | 10.1 _(grid-row-gap)_ | | |
3829 *
3830 * ---
3831 *
3832 * @see https://developer.mozilla.org/docs/Web/CSS/row-gap
3833 */
3834 rowGap?: Property.RowGap<TLength> | undefined;
3835 /**
3836 * The `**ruby-align**` CSS property defines the distribution of the different ruby elements over the base.
3837 *
3838 * **Syntax**: `start | center | space-between | space-around`
3839 *
3840 * **Initial value**: `space-around`
3841 *
3842 * | Chrome | Firefox | Safari | Edge | IE |
3843 * | :----: | :-----: | :----: | :--: | :-: |
3844 * | No | **38** | No | No | No |
3845 *
3846 * @see https://developer.mozilla.org/docs/Web/CSS/ruby-align
3847 */
3848 rubyAlign?: Property.RubyAlign | undefined;
3849 /**
3850 * **Syntax**: `separate | collapse | auto`
3851 *
3852 * **Initial value**: `separate`
3853 */
3854 rubyMerge?: Property.RubyMerge | undefined;
3855 /**
3856 * The `**ruby-position**` CSS property defines the position of a ruby element relatives to its base element. It can be position over the element (`over`), under it (`under`), or between the characters, on their right side (`inter-character`).
3857 *
3858 * **Syntax**: `[ alternate || [ over | under ] ] | inter-character`
3859 *
3860 * **Initial value**: `alternate`
3861 *
3862 * | Chrome | Firefox | Safari | Edge | IE |
3863 * | :-----: | :-----: | :-----------: | :---: | :-: |
3864 * | **84** | **38** | **6.1** _-x-_ | 12-79 | No |
3865 * | 1 _-x-_ | | | | |
3866 *
3867 * @see https://developer.mozilla.org/docs/Web/CSS/ruby-position
3868 */
3869 rubyPosition?: Property.RubyPosition | undefined;
3870 /**
3871 * The **`scale`** CSS property allows you to specify scale transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.
3872 *
3873 * **Syntax**: `none | <number>{1,3}`
3874 *
3875 * **Initial value**: `none`
3876 *
3877 * | Chrome | Firefox | Safari | Edge | IE |
3878 * | :----: | :-----: | :------: | :--: | :-: |
3879 * | No | **72** | **14.1** | No | No |
3880 *
3881 * @see https://developer.mozilla.org/docs/Web/CSS/scale
3882 */
3883 scale?: Property.Scale | undefined;
3884 /**
3885 * The **`scroll-behavior`** CSS property sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs.
3886 *
3887 * **Syntax**: `auto | smooth`
3888 *
3889 * **Initial value**: `auto`
3890 *
3891 * | Chrome | Firefox | Safari | Edge | IE |
3892 * | :----: | :-----: | :----: | :----: | :-: |
3893 * | **61** | **36** | n/a | **79** | No |
3894 *
3895 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-behavior
3896 */
3897 scrollBehavior?: Property.ScrollBehavior | undefined;
3898 /**
3899 * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.
3900 *
3901 * **Syntax**: `<length>{1,4}`
3902 *
3903 * **Initial value**: `0`
3904 *
3905 * | Chrome | Firefox | Safari | Edge | IE |
3906 * | :----: | :-----: | :-----------------------: | :----: | :-: |
3907 * | **69** | **90** | **14.1** | **79** | No |
3908 * | | | 11 _(scroll-snap-margin)_ | | |
3909 *
3910 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
3911 */
3912 scrollMargin?: Property.ScrollMargin<TLength> | undefined;
3913 /**
3914 * The `scroll-margin-block` shorthand property sets the scroll margins of an element in the block dimension.
3915 *
3916 * **Syntax**: `<length>{1,2}`
3917 *
3918 * **Initial value**: `0`
3919 *
3920 * | Chrome | Firefox | Safari | Edge | IE |
3921 * | :----: | :-----: | :------: | :----: | :-: |
3922 * | **69** | **68** | **14.1** | **79** | No |
3923 *
3924 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
3925 */
3926 scrollMarginBlock?: Property.ScrollMarginBlock<TLength> | undefined;
3927 /**
3928 * The `scroll-margin-block-end` property defines the margin of the scroll snap area at the end of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
3929 *
3930 * **Syntax**: `<length>`
3931 *
3932 * **Initial value**: `0`
3933 *
3934 * | Chrome | Firefox | Safari | Edge | IE |
3935 * | :----: | :-----: | :------: | :----: | :-: |
3936 * | **69** | **68** | **14.1** | **79** | No |
3937 *
3938 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
3939 */
3940 scrollMarginBlockEnd?: Property.ScrollMarginBlockEnd<TLength> | undefined;
3941 /**
3942 * The `scroll-margin-block-start` property defines the margin of the scroll snap area at the start of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
3943 *
3944 * **Syntax**: `<length>`
3945 *
3946 * **Initial value**: `0`
3947 *
3948 * | Chrome | Firefox | Safari | Edge | IE |
3949 * | :----: | :-----: | :------: | :----: | :-: |
3950 * | **69** | **68** | **14.1** | **79** | No |
3951 *
3952 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
3953 */
3954 scrollMarginBlockStart?: Property.ScrollMarginBlockStart<TLength> | undefined;
3955 /**
3956 * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
3957 *
3958 * **Syntax**: `<length>`
3959 *
3960 * **Initial value**: `0`
3961 *
3962 * | Chrome | Firefox | Safari | Edge | IE |
3963 * | :----: | :-----: | :------------------------------: | :----: | :-: |
3964 * | **69** | **68** | **14.1** | **79** | No |
3965 * | | | 11 _(scroll-snap-margin-bottom)_ | | |
3966 *
3967 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
3968 */
3969 scrollMarginBottom?: Property.ScrollMarginBottom<TLength> | undefined;
3970 /**
3971 * The `scroll-margin-inline` shorthand property sets the scroll margins of an element in the inline dimension.
3972 *
3973 * **Syntax**: `<length>{1,2}`
3974 *
3975 * **Initial value**: `0`
3976 *
3977 * | Chrome | Firefox | Safari | Edge | IE |
3978 * | :----: | :-----: | :------: | :----: | :-: |
3979 * | **69** | **68** | **14.1** | **79** | No |
3980 *
3981 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
3982 */
3983 scrollMarginInline?: Property.ScrollMarginInline<TLength> | undefined;
3984 /**
3985 * The `scroll-margin-inline-end` property defines the margin of the scroll snap area at the end of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
3986 *
3987 * **Syntax**: `<length>`
3988 *
3989 * **Initial value**: `0`
3990 *
3991 * | Chrome | Firefox | Safari | Edge | IE |
3992 * | :----: | :-----: | :------: | :----: | :-: |
3993 * | **69** | **68** | **14.1** | **79** | No |
3994 *
3995 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
3996 */
3997 scrollMarginInlineEnd?: Property.ScrollMarginInlineEnd<TLength> | undefined;
3998 /**
3999 * The `scroll-margin-inline-start` property defines the margin of the scroll snap area at the start of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
4000 *
4001 * **Syntax**: `<length>`
4002 *
4003 * **Initial value**: `0`
4004 *
4005 * | Chrome | Firefox | Safari | Edge | IE |
4006 * | :----: | :-----: | :------: | :----: | :-: |
4007 * | **69** | **68** | **14.1** | **79** | No |
4008 *
4009 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
4010 */
4011 scrollMarginInlineStart?: Property.ScrollMarginInlineStart<TLength> | undefined;
4012 /**
4013 * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
4014 *
4015 * **Syntax**: `<length>`
4016 *
4017 * **Initial value**: `0`
4018 *
4019 * | Chrome | Firefox | Safari | Edge | IE |
4020 * | :----: | :-----: | :----------------------------: | :----: | :-: |
4021 * | **69** | **68** | **14.1** | **79** | No |
4022 * | | | 11 _(scroll-snap-margin-left)_ | | |
4023 *
4024 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
4025 */
4026 scrollMarginLeft?: Property.ScrollMarginLeft<TLength> | undefined;
4027 /**
4028 * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
4029 *
4030 * **Syntax**: `<length>`
4031 *
4032 * **Initial value**: `0`
4033 *
4034 * | Chrome | Firefox | Safari | Edge | IE |
4035 * | :----: | :-----: | :-----------------------------: | :----: | :-: |
4036 * | **69** | **68** | **14.1** | **79** | No |
4037 * | | | 11 _(scroll-snap-margin-right)_ | | |
4038 *
4039 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
4040 */
4041 scrollMarginRight?: Property.ScrollMarginRight<TLength> | undefined;
4042 /**
4043 * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
4044 *
4045 * **Syntax**: `<length>`
4046 *
4047 * **Initial value**: `0`
4048 *
4049 * | Chrome | Firefox | Safari | Edge | IE |
4050 * | :----: | :-----: | :---------------------------: | :----: | :-: |
4051 * | **69** | **68** | **14.1** | **79** | No |
4052 * | | | 11 _(scroll-snap-margin-top)_ | | |
4053 *
4054 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
4055 */
4056 scrollMarginTop?: Property.ScrollMarginTop<TLength> | undefined;
4057 /**
4058 * The **`scroll-padding`** shorthand property sets scroll padding on all sides of an element at once, much like the `padding` property does for padding on an element.
4059 *
4060 * **Syntax**: `[ auto | <length-percentage> ]{1,4}`
4061 *
4062 * **Initial value**: `auto`
4063 *
4064 * | Chrome | Firefox | Safari | Edge | IE |
4065 * | :----: | :-----: | :------: | :----: | :-: |
4066 * | **69** | **68** | **14.1** | **79** | No |
4067 *
4068 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding
4069 */
4070 scrollPadding?: Property.ScrollPadding<TLength> | undefined;
4071 /**
4072 * The `scroll-padding-block` shorthand property sets the scroll padding of an element in the block dimension.
4073 *
4074 * **Syntax**: `[ auto | <length-percentage> ]{1,2}`
4075 *
4076 * **Initial value**: `auto`
4077 *
4078 * | Chrome | Firefox | Safari | Edge | IE |
4079 * | :----: | :-----: | :----: | :----: | :-: |
4080 * | **69** | **68** | **15** | **79** | No |
4081 *
4082 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block
4083 */
4084 scrollPaddingBlock?: Property.ScrollPaddingBlock<TLength> | undefined;
4085 /**
4086 * The `scroll-padding-block-end` property defines offsets for the end edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
4087 *
4088 * **Syntax**: `auto | <length-percentage>`
4089 *
4090 * **Initial value**: `auto`
4091 *
4092 * | Chrome | Firefox | Safari | Edge | IE |
4093 * | :----: | :-----: | :----: | :----: | :-: |
4094 * | **69** | **68** | **15** | **79** | No |
4095 *
4096 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end
4097 */
4098 scrollPaddingBlockEnd?: Property.ScrollPaddingBlockEnd<TLength> | undefined;
4099 /**
4100 * The `scroll-padding-block-start` property defines offsets for the start edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
4101 *
4102 * **Syntax**: `auto | <length-percentage>`
4103 *
4104 * **Initial value**: `auto`
4105 *
4106 * | Chrome | Firefox | Safari | Edge | IE |
4107 * | :----: | :-----: | :----: | :----: | :-: |
4108 * | **69** | **68** | **15** | **79** | No |
4109 *
4110 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start
4111 */
4112 scrollPaddingBlockStart?: Property.ScrollPaddingBlockStart<TLength> | undefined;
4113 /**
4114 * The `scroll-padding-bottom` property defines offsets for the bottom of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
4115 *
4116 * **Syntax**: `auto | <length-percentage>`
4117 *
4118 * **Initial value**: `auto`
4119 *
4120 * | Chrome | Firefox | Safari | Edge | IE |
4121 * | :----: | :-----: | :------: | :----: | :-: |
4122 * | **69** | **68** | **14.1** | **79** | No |
4123 *
4124 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom
4125 */
4126 scrollPaddingBottom?: Property.ScrollPaddingBottom<TLength> | undefined;
4127 /**
4128 * The `scroll-padding-inline` shorthand property sets the scroll padding of an element in the inline dimension.
4129 *
4130 * **Syntax**: `[ auto | <length-percentage> ]{1,2}`
4131 *
4132 * **Initial value**: `auto`
4133 *
4134 * | Chrome | Firefox | Safari | Edge | IE |
4135 * | :----: | :-----: | :----: | :----: | :-: |
4136 * | **69** | **68** | **15** | **79** | No |
4137 *
4138 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline
4139 */
4140 scrollPaddingInline?: Property.ScrollPaddingInline<TLength> | undefined;
4141 /**
4142 * The `scroll-padding-inline-end` property defines offsets for the end edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
4143 *
4144 * **Syntax**: `auto | <length-percentage>`
4145 *
4146 * **Initial value**: `auto`
4147 *
4148 * | Chrome | Firefox | Safari | Edge | IE |
4149 * | :----: | :-----: | :----: | :----: | :-: |
4150 * | **69** | **68** | **15** | **79** | No |
4151 *
4152 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end
4153 */
4154 scrollPaddingInlineEnd?: Property.ScrollPaddingInlineEnd<TLength> | undefined;
4155 /**
4156 * The `scroll-padding-inline-start` property defines offsets for the start edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
4157 *
4158 * **Syntax**: `auto | <length-percentage>`
4159 *
4160 * **Initial value**: `auto`
4161 *
4162 * | Chrome | Firefox | Safari | Edge | IE |
4163 * | :----: | :-----: | :----: | :----: | :-: |
4164 * | **69** | **68** | **15** | **79** | No |
4165 *
4166 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start
4167 */
4168 scrollPaddingInlineStart?: Property.ScrollPaddingInlineStart<TLength> | undefined;
4169 /**
4170 * The `scroll-padding-left` property defines offsets for the left of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
4171 *
4172 * **Syntax**: `auto | <length-percentage>`
4173 *
4174 * **Initial value**: `auto`
4175 *
4176 * | Chrome | Firefox | Safari | Edge | IE |
4177 * | :----: | :-----: | :------: | :----: | :-: |
4178 * | **69** | **68** | **14.1** | **79** | No |
4179 *
4180 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left
4181 */
4182 scrollPaddingLeft?: Property.ScrollPaddingLeft<TLength> | undefined;
4183 /**
4184 * The `scroll-padding-right` property defines offsets for the right of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
4185 *
4186 * **Syntax**: `auto | <length-percentage>`
4187 *
4188 * **Initial value**: `auto`
4189 *
4190 * | Chrome | Firefox | Safari | Edge | IE |
4191 * | :----: | :-----: | :------: | :----: | :-: |
4192 * | **69** | **68** | **14.1** | **79** | No |
4193 *
4194 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right
4195 */
4196 scrollPaddingRight?: Property.ScrollPaddingRight<TLength> | undefined;
4197 /**
4198 * The **`scroll-padding-top`** property defines offsets for the top of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
4199 *
4200 * **Syntax**: `auto | <length-percentage>`
4201 *
4202 * **Initial value**: `auto`
4203 *
4204 * | Chrome | Firefox | Safari | Edge | IE |
4205 * | :----: | :-----: | :------: | :----: | :-: |
4206 * | **69** | **68** | **14.1** | **79** | No |
4207 *
4208 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top
4209 */
4210 scrollPaddingTop?: Property.ScrollPaddingTop<TLength> | undefined;
4211 /**
4212 * The `scroll-snap-align` property specifies the box’s snap position as an alignment of its snap area (as the alignment subject) within its snap container’s snapport (as the alignment container). The two values specify the snapping alignment in the block axis and inline axis, respectively. If only one value is specified, the second value defaults to the same value.
4213 *
4214 * **Syntax**: `[ none | start | end | center ]{1,2}`
4215 *
4216 * **Initial value**: `none`
4217 *
4218 * | Chrome | Firefox | Safari | Edge | IE |
4219 * | :----: | :-----: | :----: | :----: | :-: |
4220 * | **69** | **68** | **11** | **79** | No |
4221 *
4222 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-align
4223 */
4224 scrollSnapAlign?: Property.ScrollSnapAlign | undefined;
4225 /**
4226 * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.
4227 *
4228 * **Syntax**: `<length>{1,4}`
4229 *
4230 * **Initial value**: `0`
4231 *
4232 * | Chrome | Firefox | Safari | Edge | IE |
4233 * | :----: | :-----: | :-----------------------: | :----: | :-: |
4234 * | **69** | 68-90 | **14.1** | **79** | No |
4235 * | | | 11 _(scroll-snap-margin)_ | | |
4236 *
4237 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
4238 */
4239 scrollSnapMargin?: Property.ScrollMargin<TLength> | undefined;
4240 /**
4241 * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
4242 *
4243 * **Syntax**: `<length>`
4244 *
4245 * **Initial value**: `0`
4246 *
4247 * | Chrome | Firefox | Safari | Edge | IE |
4248 * | :----: | :-----: | :------------------------------: | :----: | :-: |
4249 * | **69** | **68** | **14.1** | **79** | No |
4250 * | | | 11 _(scroll-snap-margin-bottom)_ | | |
4251 *
4252 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
4253 */
4254 scrollSnapMarginBottom?: Property.ScrollMarginBottom<TLength> | undefined;
4255 /**
4256 * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
4257 *
4258 * **Syntax**: `<length>`
4259 *
4260 * **Initial value**: `0`
4261 *
4262 * | Chrome | Firefox | Safari | Edge | IE |
4263 * | :----: | :-----: | :----------------------------: | :----: | :-: |
4264 * | **69** | **68** | **14.1** | **79** | No |
4265 * | | | 11 _(scroll-snap-margin-left)_ | | |
4266 *
4267 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
4268 */
4269 scrollSnapMarginLeft?: Property.ScrollMarginLeft<TLength> | undefined;
4270 /**
4271 * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
4272 *
4273 * **Syntax**: `<length>`
4274 *
4275 * **Initial value**: `0`
4276 *
4277 * | Chrome | Firefox | Safari | Edge | IE |
4278 * | :----: | :-----: | :-----------------------------: | :----: | :-: |
4279 * | **69** | **68** | **14.1** | **79** | No |
4280 * | | | 11 _(scroll-snap-margin-right)_ | | |
4281 *
4282 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
4283 */
4284 scrollSnapMarginRight?: Property.ScrollMarginRight<TLength> | undefined;
4285 /**
4286 * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
4287 *
4288 * **Syntax**: `<length>`
4289 *
4290 * **Initial value**: `0`
4291 *
4292 * | Chrome | Firefox | Safari | Edge | IE |
4293 * | :----: | :-----: | :---------------------------: | :----: | :-: |
4294 * | **69** | **68** | **14.1** | **79** | No |
4295 * | | | 11 _(scroll-snap-margin-top)_ | | |
4296 *
4297 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
4298 */
4299 scrollSnapMarginTop?: Property.ScrollMarginTop<TLength> | undefined;
4300 /**
4301 * The **`scroll-snap-stop`** CSS property defines whether the scroll container is allowed to "pass over" possible snap positions.
4302 *
4303 * **Syntax**: `normal | always`
4304 *
4305 * **Initial value**: `normal`
4306 *
4307 * | Chrome | Firefox | Safari | Edge | IE |
4308 * | :----: | :-----: | :----: | :----: | :-: |
4309 * | **75** | No | **15** | **79** | No |
4310 *
4311 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop
4312 */
4313 scrollSnapStop?: Property.ScrollSnapStop | undefined;
4314 /**
4315 * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.
4316 *
4317 * **Syntax**: `none | [ x | y | block | inline | both ] [ mandatory | proximity ]?`
4318 *
4319 * **Initial value**: `none`
4320 *
4321 * | Chrome | Firefox | Safari | Edge | IE |
4322 * | :----: | :-----: | :-----: | :----: | :----------: |
4323 * | **69** | 39-68 | **11** | **79** | **10** _-x-_ |
4324 * | | | 9 _-x-_ | | |
4325 *
4326 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type
4327 */
4328 scrollSnapType?: Property.ScrollSnapType | undefined;
4329 /**
4330 * The **`scrollbar-color`** CSS property sets the color of the scrollbar track and thumb.
4331 *
4332 * **Syntax**: `auto | <color>{2}`
4333 *
4334 * **Initial value**: `auto`
4335 *
4336 * | Chrome | Firefox | Safari | Edge | IE |
4337 * | :----: | :-----: | :----: | :--: | :-: |
4338 * | No | **64** | No | No | No |
4339 *
4340 * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-color
4341 */
4342 scrollbarColor?: Property.ScrollbarColor | undefined;
4343 /**
4344 * The **`scrollbar-gutter`** CSS property allows authors to reserve space for the scrollbar, preventing unwanted layout changes as the content grows while also avoiding unnecessary visuals when scrolling isn't needed.
4345 *
4346 * **Syntax**: `auto | stable && both-edges?`
4347 *
4348 * **Initial value**: `auto`
4349 *
4350 * | Chrome | Firefox | Safari | Edge | IE |
4351 * | :----: | :-----: | :----: | :----: | :-: |
4352 * | **94** | No | No | **94** | No |
4353 *
4354 * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter
4355 */
4356 scrollbarGutter?: Property.ScrollbarGutter | undefined;
4357 /**
4358 * The **`scrollbar-width`** property allows the author to set the maximum thickness of an element’s scrollbars when they are shown.
4359 *
4360 * **Syntax**: `auto | thin | none`
4361 *
4362 * **Initial value**: `auto`
4363 *
4364 * | Chrome | Firefox | Safari | Edge | IE |
4365 * | :----: | :-----: | :----: | :--: | :-: |
4366 * | No | **64** | No | No | No |
4367 *
4368 * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-width
4369 */
4370 scrollbarWidth?: Property.ScrollbarWidth | undefined;
4371 /**
4372 * The **`shape-image-threshold`** CSS property sets the alpha channel threshold used to extract the shape using an image as the value for `shape-outside`.
4373 *
4374 * **Syntax**: `<alpha-value>`
4375 *
4376 * **Initial value**: `0.0`
4377 *
4378 * | Chrome | Firefox | Safari | Edge | IE |
4379 * | :----: | :-----: | :------: | :----: | :-: |
4380 * | **37** | **62** | **10.1** | **79** | No |
4381 *
4382 * @see https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold
4383 */
4384 shapeImageThreshold?: Property.ShapeImageThreshold | undefined;
4385 /**
4386 * The **`shape-margin`** CSS property sets a margin for a CSS shape created using `shape-outside`.
4387 *
4388 * **Syntax**: `<length-percentage>`
4389 *
4390 * **Initial value**: `0`
4391 *
4392 * | Chrome | Firefox | Safari | Edge | IE |
4393 * | :----: | :-----: | :------: | :----: | :-: |
4394 * | **37** | **62** | **10.1** | **79** | No |
4395 *
4396 * @see https://developer.mozilla.org/docs/Web/CSS/shape-margin
4397 */
4398 shapeMargin?: Property.ShapeMargin<TLength> | undefined;
4399 /**
4400 * The **`shape-outside`** CSS property defines a shape—which may be non-rectangular—around which adjacent inline content should wrap. By default, inline content wraps around its margin box; `shape-outside` provides a way to customize this wrapping, making it possible to wrap text around complex objects rather than simple boxes.
4401 *
4402 * **Syntax**: `none | [ <shape-box> || <basic-shape> ] | <image>`
4403 *
4404 * **Initial value**: `none`
4405 *
4406 * | Chrome | Firefox | Safari | Edge | IE |
4407 * | :----: | :-----: | :------: | :----: | :-: |
4408 * | **37** | **62** | **10.1** | **79** | No |
4409 *
4410 * @see https://developer.mozilla.org/docs/Web/CSS/shape-outside
4411 */
4412 shapeOutside?: Property.ShapeOutside | undefined;
4413 /**
4414 * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
4415 *
4416 * **Syntax**: `<integer> | <length>`
4417 *
4418 * **Initial value**: `8`
4419 *
4420 * | Chrome | Firefox | Safari | Edge | IE |
4421 * | :----: | :-----: | :----: | :----: | :-: |
4422 * | **21** | **91** | **7** | **79** | No |
4423 * | | 4 _-x-_ | | | |
4424 *
4425 * @see https://developer.mozilla.org/docs/Web/CSS/tab-size
4426 */
4427 tabSize?: Property.TabSize<TLength> | undefined;
4428 /**
4429 * The **`table-layout`** CSS property sets the algorithm used to lay out `<table>` cells, rows, and columns.
4430 *
4431 * **Syntax**: `auto | fixed`
4432 *
4433 * **Initial value**: `auto`
4434 *
4435 * | Chrome | Firefox | Safari | Edge | IE |
4436 * | :----: | :-----: | :----: | :----: | :---: |
4437 * | **14** | **1** | **1** | **12** | **5** |
4438 *
4439 * @see https://developer.mozilla.org/docs/Web/CSS/table-layout
4440 */
4441 tableLayout?: Property.TableLayout | undefined;
4442 /**
4443 * The **`text-align`** CSS property sets the horizontal alignment of a block element or table-cell box. This means it works like `vertical-align` but in the horizontal direction.
4444 *
4445 * **Syntax**: `start | end | left | right | center | justify | match-parent`
4446 *
4447 * **Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser.
4448 *
4449 * | Chrome | Firefox | Safari | Edge | IE |
4450 * | :----: | :-----: | :----: | :----: | :---: |
4451 * | **1** | **1** | **1** | **12** | **3** |
4452 *
4453 * @see https://developer.mozilla.org/docs/Web/CSS/text-align
4454 */
4455 textAlign?: Property.TextAlign | undefined;
4456 /**
4457 * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.
4458 *
4459 * **Syntax**: `auto | start | end | left | right | center | justify`
4460 *
4461 * **Initial value**: `auto`
4462 *
4463 * | Chrome | Firefox | Safari | Edge | IE |
4464 * | :----: | :-----: | :----: | :----: | :-----: |
4465 * | **47** | **49** | No | **12** | **5.5** |
4466 *
4467 * @see https://developer.mozilla.org/docs/Web/CSS/text-align-last
4468 */
4469 textAlignLast?: Property.TextAlignLast | undefined;
4470 /**
4471 * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.
4472 *
4473 * **Syntax**: `none | all | [ digits <integer>? ]`
4474 *
4475 * **Initial value**: `none`
4476 *
4477 * | Chrome | Firefox | Safari | Edge | IE |
4478 * | :------------------------: | :-----: | :------------------------------: | :---: | :------------------------------------: |
4479 * | **48** | **48** | **5.1** _(-webkit-text-combine)_ | 15-79 | **11** _(-ms-text-combine-horizontal)_ |
4480 * | 9 _(-webkit-text-combine)_ | | | | |
4481 *
4482 * @see https://developer.mozilla.org/docs/Web/CSS/text-combine-upright
4483 */
4484 textCombineUpright?: Property.TextCombineUpright | undefined;
4485 /**
4486 * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
4487 *
4488 * **Syntax**: `<color>`
4489 *
4490 * **Initial value**: `currentcolor`
4491 *
4492 * | Chrome | Firefox | Safari | Edge | IE |
4493 * | :----: | :-----: | :------: | :----: | :-: |
4494 * | **57** | **36** | **12.1** | **79** | No |
4495 * | | | 8 _-x-_ | | |
4496 *
4497 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-color
4498 */
4499 textDecorationColor?: Property.TextDecorationColor | undefined;
4500 /**
4501 * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
4502 *
4503 * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
4504 *
4505 * **Initial value**: `none`
4506 *
4507 * | Chrome | Firefox | Safari | Edge | IE |
4508 * | :----: | :-----: | :------: | :----: | :-: |
4509 * | **57** | **36** | **12.1** | **79** | No |
4510 * | | | 8 _-x-_ | | |
4511 *
4512 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-line
4513 */
4514 textDecorationLine?: Property.TextDecorationLine | undefined;
4515 /**
4516 * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors.
4517 *
4518 * **Syntax**: `none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]`
4519 *
4520 * **Initial value**: `objects`
4521 *
4522 * | Chrome | Firefox | Safari | Edge | IE |
4523 * | :----: | :-----: | :------: | :--: | :-: |
4524 * | 57-64 | No | **12.1** | No | No |
4525 * | | | 7 _-x-_ | | |
4526 *
4527 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip
4528 */
4529 textDecorationSkip?: Property.TextDecorationSkip | undefined;
4530 /**
4531 * The **`text-decoration-skip-ink`** CSS property specifies how overlines and underlines are drawn when they pass over glyph ascenders and descenders.
4532 *
4533 * **Syntax**: `auto | all | none`
4534 *
4535 * **Initial value**: `auto`
4536 *
4537 * | Chrome | Firefox | Safari | Edge | IE |
4538 * | :----: | :-----: | :----: | :----: | :-: |
4539 * | **64** | **70** | No | **79** | No |
4540 *
4541 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink
4542 */
4543 textDecorationSkipInk?: Property.TextDecorationSkipInk | undefined;
4544 /**
4545 * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
4546 *
4547 * **Syntax**: `solid | double | dotted | dashed | wavy`
4548 *
4549 * **Initial value**: `solid`
4550 *
4551 * | Chrome | Firefox | Safari | Edge | IE |
4552 * | :----: | :-----: | :------: | :----: | :-: |
4553 * | **57** | **36** | **12.1** | **79** | No |
4554 * | | | 8 _-x-_ | | |
4555 *
4556 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-style
4557 */
4558 textDecorationStyle?: Property.TextDecorationStyle | undefined;
4559 /**
4560 * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.
4561 *
4562 * **Syntax**: `auto | from-font | <length> | <percentage> `
4563 *
4564 * **Initial value**: `auto`
4565 *
4566 * | Chrome | Firefox | Safari | Edge | IE |
4567 * | :----: | :-----: | :------: | :----: | :-: |
4568 * | **89** | **70** | **12.1** | **89** | No |
4569 *
4570 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness
4571 */
4572 textDecorationThickness?: Property.TextDecorationThickness<TLength> | undefined;
4573 /**
4574 * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.
4575 *
4576 * **Syntax**: `auto | from-font | <length> | <percentage> `
4577 *
4578 * **Initial value**: `auto`
4579 *
4580 * | Chrome | Firefox | Safari | Edge | IE |
4581 * | :----: | :-----: | :------: | :---: | :-: |
4582 * | 87-89 | **70** | **12.1** | 87-89 | No |
4583 *
4584 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness
4585 */
4586 textDecorationWidth?: Property.TextDecorationThickness<TLength> | undefined;
4587 /**
4588 * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand.
4589 *
4590 * **Syntax**: `<color>`
4591 *
4592 * **Initial value**: `currentcolor`
4593 *
4594 * | Chrome | Firefox | Safari | Edge | IE |
4595 * | :----------: | :-----: | :----: | :----------: | :-: |
4596 * | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
4597 *
4598 * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color
4599 */
4600 textEmphasisColor?: Property.TextEmphasisColor | undefined;
4601 /**
4602 * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased.
4603 *
4604 * **Syntax**: `[ over | under ] && [ right | left ]`
4605 *
4606 * **Initial value**: `over right`
4607 *
4608 * | Chrome | Firefox | Safari | Edge | IE |
4609 * | :----------: | :-----: | :----: | :----------: | :-: |
4610 * | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
4611 *
4612 * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position
4613 */
4614 textEmphasisPosition?: Property.TextEmphasisPosition | undefined;
4615 /**
4616 * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand.
4617 *
4618 * **Syntax**: `none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>`
4619 *
4620 * **Initial value**: `none`
4621 *
4622 * | Chrome | Firefox | Safari | Edge | IE |
4623 * | :----------: | :-----: | :----: | :----------: | :-: |
4624 * | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
4625 *
4626 * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style
4627 */
4628 textEmphasisStyle?: Property.TextEmphasisStyle | undefined;
4629 /**
4630 * The **`text-indent`** CSS property sets the length of empty space (indentation) that is put before lines of text in a block.
4631 *
4632 * **Syntax**: `<length-percentage> && hanging? && each-line?`
4633 *
4634 * **Initial value**: `0`
4635 *
4636 * | Chrome | Firefox | Safari | Edge | IE |
4637 * | :----: | :-----: | :----: | :----: | :---: |
4638 * | **1** | **1** | **1** | **12** | **3** |
4639 *
4640 * @see https://developer.mozilla.org/docs/Web/CSS/text-indent
4641 */
4642 textIndent?: Property.TextIndent<TLength> | undefined;
4643 /**
4644 * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element.
4645 *
4646 * **Syntax**: `auto | inter-character | inter-word | none`
4647 *
4648 * **Initial value**: `auto`
4649 *
4650 * | Chrome | Firefox | Safari | Edge | IE |
4651 * | :----: | :-----: | :----: | :----: | :----: |
4652 * | n/a | **55** | No | **12** | **11** |
4653 *
4654 * @see https://developer.mozilla.org/docs/Web/CSS/text-justify
4655 */
4656 textJustify?: Property.TextJustify | undefined;
4657 /**
4658 * The **`text-orientation`** CSS property sets the orientation of the text characters in a line. It only affects text in vertical mode (when `writing-mode` is not `horizontal-tb`). It is useful for controlling the display of languages that use vertical script, and also for making vertical table headers.
4659 *
4660 * **Syntax**: `mixed | upright | sideways`
4661 *
4662 * **Initial value**: `mixed`
4663 *
4664 * | Chrome | Firefox | Safari | Edge | IE |
4665 * | :------: | :-----: | :-------: | :----: | :-: |
4666 * | **48** | **41** | **14** | **79** | No |
4667 * | 11 _-x-_ | | 5.1 _-x-_ | | |
4668 *
4669 * @see https://developer.mozilla.org/docs/Web/CSS/text-orientation
4670 */
4671 textOrientation?: Property.TextOrientation | undefined;
4672 /**
4673 * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.
4674 *
4675 * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`
4676 *
4677 * **Initial value**: `clip`
4678 *
4679 * | Chrome | Firefox | Safari | Edge | IE |
4680 * | :----: | :-----: | :-----: | :----: | :---: |
4681 * | **1** | **7** | **1.3** | **12** | **6** |
4682 *
4683 * @see https://developer.mozilla.org/docs/Web/CSS/text-overflow
4684 */
4685 textOverflow?: Property.TextOverflow | undefined;
4686 /**
4687 * The **`text-rendering`** CSS property provides information to the rendering engine about what to optimize for when rendering text.
4688 *
4689 * **Syntax**: `auto | optimizeSpeed | optimizeLegibility | geometricPrecision`
4690 *
4691 * **Initial value**: `auto`
4692 *
4693 * | Chrome | Firefox | Safari | Edge | IE |
4694 * | :----: | :-----: | :----: | :----: | :-: |
4695 * | **4** | **1** | **5** | **79** | No |
4696 *
4697 * @see https://developer.mozilla.org/docs/Web/CSS/text-rendering
4698 */
4699 textRendering?: Property.TextRendering | undefined;
4700 /**
4701 * The **`text-shadow`** CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its `decorations`. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.
4702 *
4703 * **Syntax**: `none | <shadow-t>#`
4704 *
4705 * **Initial value**: `none`
4706 *
4707 * | Chrome | Firefox | Safari | Edge | IE |
4708 * | :----: | :-----: | :-----: | :----: | :----: |
4709 * | **2** | **3.5** | **1.1** | **12** | **10** |
4710 *
4711 * @see https://developer.mozilla.org/docs/Web/CSS/text-shadow
4712 */
4713 textShadow?: Property.TextShadow | undefined;
4714 /**
4715 * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
4716 *
4717 * **Syntax**: `none | auto | <percentage>`
4718 *
4719 * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
4720 *
4721 * | Chrome | Firefox | Safari | Edge | IE |
4722 * | :----: | :-----: | :----: | :----: | :-: |
4723 * | **54** | No | No | **79** | No |
4724 *
4725 * @see https://developer.mozilla.org/docs/Web/CSS/text-size-adjust
4726 */
4727 textSizeAdjust?: Property.TextSizeAdjust | undefined;
4728 /**
4729 * The **`text-transform`** CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. It also can help improve legibility for ruby.
4730 *
4731 * **Syntax**: `none | capitalize | uppercase | lowercase | full-width | full-size-kana`
4732 *
4733 * **Initial value**: `none`
4734 *
4735 * | Chrome | Firefox | Safari | Edge | IE |
4736 * | :----: | :-----: | :----: | :----: | :---: |
4737 * | **1** | **1** | **1** | **12** | **4** |
4738 *
4739 * @see https://developer.mozilla.org/docs/Web/CSS/text-transform
4740 */
4741 textTransform?: Property.TextTransform | undefined;
4742 /**
4743 * The **`text-underline-offset`** CSS property sets the offset distance of an underline text decoration line (applied using `text-decoration`) from its original position.
4744 *
4745 * **Syntax**: `auto | <length> | <percentage> `
4746 *
4747 * **Initial value**: `auto`
4748 *
4749 * | Chrome | Firefox | Safari | Edge | IE |
4750 * | :----: | :-----: | :------: | :----: | :-: |
4751 * | **87** | **70** | **12.1** | **87** | No |
4752 *
4753 * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-offset
4754 */
4755 textUnderlineOffset?: Property.TextUnderlineOffset<TLength> | undefined;
4756 /**
4757 * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value.
4758 *
4759 * **Syntax**: `auto | from-font | [ under || [ left | right ] ]`
4760 *
4761 * **Initial value**: `auto`
4762 *
4763 * | Chrome | Firefox | Safari | Edge | IE |
4764 * | :----: | :-----: | :------: | :----: | :---: |
4765 * | **33** | **74** | **12.1** | **12** | **6** |
4766 * | | | 9 _-x-_ | | |
4767 *
4768 * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-position
4769 */
4770 textUnderlinePosition?: Property.TextUnderlinePosition | undefined;
4771 /**
4772 * The **`top`** CSS property participates in specifying the vertical position of a positioned element. It has no effect on non-positioned elements.
4773 *
4774 * **Syntax**: `<length> | <percentage> | auto`
4775 *
4776 * **Initial value**: `auto`
4777 *
4778 * | Chrome | Firefox | Safari | Edge | IE |
4779 * | :----: | :-----: | :----: | :----: | :---: |
4780 * | **1** | **1** | **1** | **12** | **5** |
4781 *
4782 * @see https://developer.mozilla.org/docs/Web/CSS/top
4783 */
4784 top?: Property.Top<TLength> | undefined;
4785 /**
4786 * The **`touch-action`** CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser).
4787 *
4788 * **Syntax**: `auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation`
4789 *
4790 * **Initial value**: `auto`
4791 *
4792 * | Chrome | Firefox | Safari | Edge | IE |
4793 * | :----: | :-----: | :----: | :----: | :------: |
4794 * | **36** | **52** | **13** | **12** | **11** |
4795 * | | | | | 10 _-x-_ |
4796 *
4797 * @see https://developer.mozilla.org/docs/Web/CSS/touch-action
4798 */
4799 touchAction?: Property.TouchAction | undefined;
4800 /**
4801 * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
4802 *
4803 * **Syntax**: `none | <transform-list>`
4804 *
4805 * **Initial value**: `none`
4806 *
4807 * | Chrome | Firefox | Safari | Edge | IE |
4808 * | :-----: | :-----: | :-------: | :----: | :-----: |
4809 * | **36** | **16** | **9** | **12** | **10** |
4810 * | 1 _-x-_ | | 3.1 _-x-_ | | 9 _-x-_ |
4811 *
4812 * @see https://developer.mozilla.org/docs/Web/CSS/transform
4813 */
4814 transform?: Property.Transform | undefined;
4815 /**
4816 * The **`transform-box`** CSS property defines the layout box to which the `transform` and `transform-origin` properties relate.
4817 *
4818 * **Syntax**: `content-box | border-box | fill-box | stroke-box | view-box`
4819 *
4820 * **Initial value**: `view-box`
4821 *
4822 * | Chrome | Firefox | Safari | Edge | IE |
4823 * | :----: | :-----: | :----: | :----: | :-: |
4824 * | **64** | **55** | **11** | **79** | No |
4825 *
4826 * @see https://developer.mozilla.org/docs/Web/CSS/transform-box
4827 */
4828 transformBox?: Property.TransformBox | undefined;
4829 /**
4830 * The **`transform-origin`** CSS property sets the origin for an element's transformations.
4831 *
4832 * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
4833 *
4834 * **Initial value**: `50% 50% 0`
4835 *
4836 * | Chrome | Firefox | Safari | Edge | IE |
4837 * | :-----: | :-------: | :-----: | :----: | :-----: |
4838 * | **36** | **16** | **9** | **12** | **10** |
4839 * | 1 _-x-_ | 3.5 _-x-_ | 2 _-x-_ | | 9 _-x-_ |
4840 *
4841 * @see https://developer.mozilla.org/docs/Web/CSS/transform-origin
4842 */
4843 transformOrigin?: Property.TransformOrigin<TLength> | undefined;
4844 /**
4845 * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
4846 *
4847 * **Syntax**: `flat | preserve-3d`
4848 *
4849 * **Initial value**: `flat`
4850 *
4851 * | Chrome | Firefox | Safari | Edge | IE |
4852 * | :------: | :------: | :-----: | :----: | :-: |
4853 * | **36** | **16** | **9** | **12** | No |
4854 * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | |
4855 *
4856 * @see https://developer.mozilla.org/docs/Web/CSS/transform-style
4857 */
4858 transformStyle?: Property.TransformStyle | undefined;
4859 /**
4860 * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
4861 *
4862 * **Syntax**: `<time>#`
4863 *
4864 * **Initial value**: `0s`
4865 *
4866 * | Chrome | Firefox | Safari | Edge | IE |
4867 * | :-----: | :-----: | :-----: | :----: | :----: |
4868 * | **26** | **16** | **9** | **12** | **10** |
4869 * | 1 _-x-_ | 4 _-x-_ | 4 _-x-_ | | |
4870 *
4871 * @see https://developer.mozilla.org/docs/Web/CSS/transition-delay
4872 */
4873 transitionDelay?: Property.TransitionDelay<TTime> | undefined;
4874 /**
4875 * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
4876 *
4877 * **Syntax**: `<time>#`
4878 *
4879 * **Initial value**: `0s`
4880 *
4881 * | Chrome | Firefox | Safari | Edge | IE |
4882 * | :-----: | :-----: | :-------: | :----: | :----: |
4883 * | **26** | **16** | **9** | **12** | **10** |
4884 * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
4885 *
4886 * @see https://developer.mozilla.org/docs/Web/CSS/transition-duration
4887 */
4888 transitionDuration?: Property.TransitionDuration<TTime> | undefined;
4889 /**
4890 * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
4891 *
4892 * **Syntax**: `none | <single-transition-property>#`
4893 *
4894 * **Initial value**: all
4895 *
4896 * | Chrome | Firefox | Safari | Edge | IE |
4897 * | :-----: | :-----: | :-------: | :----: | :----: |
4898 * | **26** | **16** | **9** | **12** | **10** |
4899 * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
4900 *
4901 * @see https://developer.mozilla.org/docs/Web/CSS/transition-property
4902 */
4903 transitionProperty?: Property.TransitionProperty | undefined;
4904 /**
4905 * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
4906 *
4907 * **Syntax**: `<easing-function>#`
4908 *
4909 * **Initial value**: `ease`
4910 *
4911 * | Chrome | Firefox | Safari | Edge | IE |
4912 * | :-----: | :-----: | :-------: | :----: | :----: |
4913 * | **26** | **16** | **9** | **12** | **10** |
4914 * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
4915 *
4916 * @see https://developer.mozilla.org/docs/Web/CSS/transition-timing-function
4917 */
4918 transitionTimingFunction?: Property.TransitionTimingFunction | undefined;
4919 /**
4920 * The **`translate`** CSS property allows you to specify translation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.
4921 *
4922 * **Syntax**: `none | <length-percentage> [ <length-percentage> <length>? ]?`
4923 *
4924 * **Initial value**: `none`
4925 *
4926 * | Chrome | Firefox | Safari | Edge | IE |
4927 * | :----: | :-----: | :------: | :--: | :-: |
4928 * | No | **72** | **14.1** | No | No |
4929 *
4930 * @see https://developer.mozilla.org/docs/Web/CSS/translate
4931 */
4932 translate?: Property.Translate<TLength> | undefined;
4933 /**
4934 * The **`unicode-bidi`** CSS property, together with the `direction` property, determines how bidirectional text in a document is handled. For example, if a block of content contains both left-to-right and right-to-left text, the user-agent uses a complex Unicode algorithm to decide how to display the text. The `unicode-bidi` property overrides this algorithm and allows the developer to control the text embedding.
4935 *
4936 * **Syntax**: `normal | embed | isolate | bidi-override | isolate-override | plaintext`
4937 *
4938 * **Initial value**: `normal`
4939 *
4940 * | Chrome | Firefox | Safari | Edge | IE |
4941 * | :----: | :-----: | :-----: | :----: | :-----: |
4942 * | **2** | **1** | **1.3** | **12** | **5.5** |
4943 *
4944 * @see https://developer.mozilla.org/docs/Web/CSS/unicode-bidi
4945 */
4946 unicodeBidi?: Property.UnicodeBidi | undefined;
4947 /**
4948 * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
4949 *
4950 * **Syntax**: `auto | text | none | contain | all`
4951 *
4952 * **Initial value**: `auto`
4953 *
4954 * | Chrome | Firefox | Safari | Edge | IE |
4955 * | :-----: | :-----: | :---------: | :------: | :----------: |
4956 * | **54** | **69** | **3** _-x-_ | **79** | **10** _-x-_ |
4957 * | 1 _-x-_ | 1 _-x-_ | | 12 _-x-_ | |
4958 *
4959 * @see https://developer.mozilla.org/docs/Web/CSS/user-select
4960 */
4961 userSelect?: Property.UserSelect | undefined;
4962 /**
4963 * The **`vertical-align`** CSS property sets vertical alignment of an inline, inline-block or table-cell box.
4964 *
4965 * **Syntax**: `baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length>`
4966 *
4967 * **Initial value**: `baseline`
4968 *
4969 * | Chrome | Firefox | Safari | Edge | IE |
4970 * | :----: | :-----: | :----: | :----: | :---: |
4971 * | **1** | **1** | **1** | **12** | **4** |
4972 *
4973 * @see https://developer.mozilla.org/docs/Web/CSS/vertical-align
4974 */
4975 verticalAlign?: Property.VerticalAlign<TLength> | undefined;
4976 /**
4977 * The **`visibility`** CSS property shows or hides an element without changing the layout of a document. The property can also hide rows or columns in a `<table>`.
4978 *
4979 * **Syntax**: `visible | hidden | collapse`
4980 *
4981 * **Initial value**: `visible`
4982 *
4983 * | Chrome | Firefox | Safari | Edge | IE |
4984 * | :----: | :-----: | :----: | :----: | :---: |
4985 * | **1** | **1** | **1** | **12** | **4** |
4986 *
4987 * @see https://developer.mozilla.org/docs/Web/CSS/visibility
4988 */
4989 visibility?: Property.Visibility | undefined;
4990 /**
4991 * The **`white-space`** CSS property sets how white space inside an element is handled.
4992 *
4993 * **Syntax**: `normal | pre | nowrap | pre-wrap | pre-line | break-spaces`
4994 *
4995 * **Initial value**: `normal`
4996 *
4997 * | Chrome | Firefox | Safari | Edge | IE |
4998 * | :----: | :-----: | :----: | :----: | :-----: |
4999 * | **1** | **1** | **1** | **12** | **5.5** |
5000 *
5001 * @see https://developer.mozilla.org/docs/Web/CSS/white-space
5002 */
5003 whiteSpace?: Property.WhiteSpace | undefined;
5004 /**
5005 * The **`widows`** CSS property sets the minimum number of lines in a block container that must be shown at the _top_ of a page, region, or column.
5006 *
5007 * **Syntax**: `<integer>`
5008 *
5009 * **Initial value**: `2`
5010 *
5011 * | Chrome | Firefox | Safari | Edge | IE |
5012 * | :----: | :-----: | :-----: | :----: | :---: |
5013 * | **25** | No | **1.3** | **12** | **8** |
5014 *
5015 * @see https://developer.mozilla.org/docs/Web/CSS/widows
5016 */
5017 widows?: Property.Widows | undefined;
5018 /**
5019 * The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area.
5020 *
5021 * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
5022 *
5023 * **Initial value**: `auto`
5024 *
5025 * | Chrome | Firefox | Safari | Edge | IE |
5026 * | :----: | :-----: | :----: | :----: | :---: |
5027 * | **1** | **1** | **1** | **12** | **4** |
5028 *
5029 * @see https://developer.mozilla.org/docs/Web/CSS/width
5030 */
5031 width?: Property.Width<TLength> | undefined;
5032 /**
5033 * The **`will-change`** CSS property hints to browsers how an element is expected to change. Browsers may set up optimizations before an element is actually changed. These kinds of optimizations can increase the responsiveness of a page by doing potentially expensive work before they are actually required.
5034 *
5035 * **Syntax**: `auto | <animateable-feature>#`
5036 *
5037 * **Initial value**: `auto`
5038 *
5039 * | Chrome | Firefox | Safari | Edge | IE |
5040 * | :----: | :-----: | :-----: | :----: | :-: |
5041 * | **36** | **36** | **9.1** | **79** | No |
5042 *
5043 * @see https://developer.mozilla.org/docs/Web/CSS/will-change
5044 */
5045 willChange?: Property.WillChange | undefined;
5046 /**
5047 * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box.
5048 *
5049 * **Syntax**: `normal | break-all | keep-all | break-word`
5050 *
5051 * **Initial value**: `normal`
5052 *
5053 * | Chrome | Firefox | Safari | Edge | IE |
5054 * | :----: | :-----: | :----: | :----: | :-----: |
5055 * | **1** | **15** | **3** | **12** | **5.5** |
5056 *
5057 * @see https://developer.mozilla.org/docs/Web/CSS/word-break
5058 */
5059 wordBreak?: Property.WordBreak | undefined;
5060 /**
5061 * The **`word-spacing`** CSS property sets the length of space between words and between tags.
5062 *
5063 * **Syntax**: `normal | <length>`
5064 *
5065 * **Initial value**: `normal`
5066 *
5067 * | Chrome | Firefox | Safari | Edge | IE |
5068 * | :----: | :-----: | :----: | :----: | :---: |
5069 * | **1** | **1** | **1** | **12** | **6** |
5070 *
5071 * @see https://developer.mozilla.org/docs/Web/CSS/word-spacing
5072 */
5073 wordSpacing?: Property.WordSpacing<TLength> | undefined;
5074 /**
5075 * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.
5076 *
5077 * **Syntax**: `normal | break-word`
5078 *
5079 * **Initial value**: `normal`
5080 */
5081 wordWrap?: Property.WordWrap | undefined;
5082 /**
5083 * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).
5084 *
5085 * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`
5086 *
5087 * **Initial value**: `horizontal-tb`
5088 *
5089 * | Chrome | Firefox | Safari | Edge | IE |
5090 * | :-----: | :-----: | :-------: | :----: | :---: |
5091 * | **48** | **41** | **10.1** | **12** | **9** |
5092 * | 8 _-x-_ | | 5.1 _-x-_ | | |
5093 *
5094 * @see https://developer.mozilla.org/docs/Web/CSS/writing-mode
5095 */
5096 writingMode?: Property.WritingMode | undefined;
5097 /**
5098 * The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one.
5099 *
5100 * **Syntax**: `auto | <integer>`
5101 *
5102 * **Initial value**: `auto`
5103 *
5104 * | Chrome | Firefox | Safari | Edge | IE |
5105 * | :----: | :-----: | :----: | :----: | :---: |
5106 * | **1** | **1** | **1** | **12** | **4** |
5107 *
5108 * @see https://developer.mozilla.org/docs/Web/CSS/z-index
5109 */
5110 zIndex?: Property.ZIndex | undefined;
5111 /**
5112 * The non-standard **`zoom`** CSS property can be used to control the magnification level of an element. `transform: scale()` should be used instead of this property, if possible. However, unlike CSS Transforms, `zoom` affects the layout size of the element.
5113 *
5114 * **Syntax**: `normal | reset | <number> | <percentage>`
5115 *
5116 * **Initial value**: `normal`
5117 *
5118 * | Chrome | Firefox | Safari | Edge | IE |
5119 * | :----: | :-----: | :-----: | :----: | :-----: |
5120 * | **1** | No | **3.1** | **12** | **5.5** |
5121 *
5122 * @see https://developer.mozilla.org/docs/Web/CSS/zoom
5123 */
5124 zoom?: Property.Zoom | undefined;
5125}
5126export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime = string & {}> {
5127 /**
5128 * The `**all**` shorthand CSS property resets all of an element's properties except `unicode-bidi`, `direction`, and CSS Custom Properties. It can set properties to their initial or inherited values, or to the values specified in another stylesheet origin.
5129 *
5130 * **Syntax**: `initial | inherit | unset | revert`
5131 *
5132 * **Initial value**: There is no practical initial value for it.
5133 *
5134 * | Chrome | Firefox | Safari | Edge | IE |
5135 * | :----: | :-----: | :-----: | :----: | :-: |
5136 * | **37** | **27** | **9.1** | **79** | No |
5137 *
5138 * @see https://developer.mozilla.org/docs/Web/CSS/all
5139 */
5140 all?: Property.All | undefined;
5141 /**
5142 * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
5143 *
5144 * **Syntax**: `<single-animation>#`
5145 *
5146 * | Chrome | Firefox | Safari | Edge | IE |
5147 * | :-----: | :-----: | :-----: | :----: | :----: |
5148 * | **43** | **16** | **9** | **12** | **10** |
5149 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
5150 *
5151 * @see https://developer.mozilla.org/docs/Web/CSS/animation
5152 */
5153 animation?: Property.Animation<TTime> | undefined;
5154 /**
5155 * The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method.
5156 *
5157 * **Syntax**: `[ <bg-layer> , ]* <final-bg-layer>`
5158 *
5159 * | Chrome | Firefox | Safari | Edge | IE |
5160 * | :----: | :-----: | :----: | :----: | :---: |
5161 * | **1** | **1** | **1** | **12** | **4** |
5162 *
5163 * @see https://developer.mozilla.org/docs/Web/CSS/background
5164 */
5165 background?: Property.Background<TLength> | undefined;
5166 /**
5167 * The **`background-position`** CSS property sets the initial position for each background image. The position is relative to the position layer set by `background-origin`.
5168 *
5169 * **Syntax**: `<bg-position>#`
5170 *
5171 * **Initial value**: `0% 0%`
5172 *
5173 * | Chrome | Firefox | Safari | Edge | IE |
5174 * | :----: | :-----: | :----: | :----: | :---: |
5175 * | **1** | **1** | **1** | **12** | **4** |
5176 *
5177 * @see https://developer.mozilla.org/docs/Web/CSS/background-position
5178 */
5179 backgroundPosition?: Property.BackgroundPosition<TLength> | undefined;
5180 /**
5181 * The **`border`** shorthand CSS property sets an element's border. It sets the values of `border-width`, `border-style`, and `border-color`.
5182 *
5183 * **Syntax**: `<line-width> || <line-style> || <color>`
5184 *
5185 * | Chrome | Firefox | Safari | Edge | IE |
5186 * | :----: | :-----: | :----: | :----: | :---: |
5187 * | **1** | **1** | **1** | **12** | **4** |
5188 *
5189 * @see https://developer.mozilla.org/docs/Web/CSS/border
5190 */
5191 border?: Property.Border<TLength> | undefined;
5192 /**
5193 * The **`border-block`** CSS property is a shorthand property for setting the individual logical block border property values in a single place in the style sheet.
5194 *
5195 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
5196 *
5197 * | Chrome | Firefox | Safari | Edge | IE |
5198 * | :----: | :-----: | :------: | :----: | :-: |
5199 * | **87** | **66** | **14.1** | **87** | No |
5200 *
5201 * @see https://developer.mozilla.org/docs/Web/CSS/border-block
5202 */
5203 borderBlock?: Property.BorderBlock<TLength> | undefined;
5204 /**
5205 * The **`border-block-end`** CSS property is a shorthand property for setting the individual logical block-end border property values in a single place in the style sheet.
5206 *
5207 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
5208 *
5209 * | Chrome | Firefox | Safari | Edge | IE |
5210 * | :----: | :-----: | :------: | :----: | :-: |
5211 * | **69** | **41** | **12.1** | **79** | No |
5212 *
5213 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end
5214 */
5215 borderBlockEnd?: Property.BorderBlockEnd<TLength> | undefined;
5216 /**
5217 * The **`border-block-start`** CSS property is a shorthand property for setting the individual logical block-start border property values in a single place in the style sheet.
5218 *
5219 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
5220 *
5221 * | Chrome | Firefox | Safari | Edge | IE |
5222 * | :----: | :-----: | :------: | :----: | :-: |
5223 * | **69** | **41** | **12.1** | **79** | No |
5224 *
5225 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start
5226 */
5227 borderBlockStart?: Property.BorderBlockStart<TLength> | undefined;
5228 /**
5229 * The **`border-bottom`** shorthand CSS property sets an element's bottom border. It sets the values of `border-bottom-width`, `border-bottom-style` and `border-bottom-color`.
5230 *
5231 * **Syntax**: `<line-width> || <line-style> || <color>`
5232 *
5233 * | Chrome | Firefox | Safari | Edge | IE |
5234 * | :----: | :-----: | :----: | :----: | :---: |
5235 * | **1** | **1** | **1** | **12** | **4** |
5236 *
5237 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom
5238 */
5239 borderBottom?: Property.BorderBottom<TLength> | undefined;
5240 /**
5241 * The **`border-color`** shorthand CSS property sets the color of an element's border.
5242 *
5243 * **Syntax**: `<color>{1,4}`
5244 *
5245 * | Chrome | Firefox | Safari | Edge | IE |
5246 * | :----: | :-----: | :----: | :----: | :---: |
5247 * | **1** | **1** | **1** | **12** | **4** |
5248 *
5249 * @see https://developer.mozilla.org/docs/Web/CSS/border-color
5250 */
5251 borderColor?: Property.BorderColor | undefined;
5252 /**
5253 * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
5254 *
5255 * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
5256 *
5257 * | Chrome | Firefox | Safari | Edge | IE |
5258 * | :-----: | :-------: | :-----: | :----: | :----: |
5259 * | **16** | **15** | **6** | **12** | **11** |
5260 * | 7 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | |
5261 *
5262 * @see https://developer.mozilla.org/docs/Web/CSS/border-image
5263 */
5264 borderImage?: Property.BorderImage | undefined;
5265 /**
5266 * The **`border-inline`** CSS property is a shorthand property for setting the individual logical inline border property values in a single place in the style sheet.
5267 *
5268 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
5269 *
5270 * | Chrome | Firefox | Safari | Edge | IE |
5271 * | :----: | :-----: | :------: | :----: | :-: |
5272 * | **87** | **66** | **14.1** | **87** | No |
5273 *
5274 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline
5275 */
5276 borderInline?: Property.BorderInline<TLength> | undefined;
5277 /**
5278 * The **`border-inline-end`** CSS property is a shorthand property for setting the individual logical inline-end border property values in a single place in the style sheet.
5279 *
5280 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
5281 *
5282 * | Chrome | Firefox | Safari | Edge | IE |
5283 * | :----: | :-----: | :------: | :----: | :-: |
5284 * | **69** | **41** | **12.1** | **79** | No |
5285 *
5286 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end
5287 */
5288 borderInlineEnd?: Property.BorderInlineEnd<TLength> | undefined;
5289 /**
5290 * The **`border-inline-start`** CSS property is a shorthand property for setting the individual logical inline-start border property values in a single place in the style sheet.
5291 *
5292 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
5293 *
5294 * | Chrome | Firefox | Safari | Edge | IE |
5295 * | :----: | :-----: | :------: | :----: | :-: |
5296 * | **69** | **41** | **12.1** | **79** | No |
5297 *
5298 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start
5299 */
5300 borderInlineStart?: Property.BorderInlineStart<TLength> | undefined;
5301 /**
5302 * The **`border-left`** shorthand CSS property sets all the properties of an element's left border.
5303 *
5304 * **Syntax**: `<line-width> || <line-style> || <color>`
5305 *
5306 * | Chrome | Firefox | Safari | Edge | IE |
5307 * | :----: | :-----: | :----: | :----: | :---: |
5308 * | **1** | **1** | **1** | **12** | **4** |
5309 *
5310 * @see https://developer.mozilla.org/docs/Web/CSS/border-left
5311 */
5312 borderLeft?: Property.BorderLeft<TLength> | undefined;
5313 /**
5314 * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
5315 *
5316 * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`
5317 *
5318 * | Chrome | Firefox | Safari | Edge | IE |
5319 * | :-----: | :-----: | :-----: | :----: | :---: |
5320 * | **4** | **4** | **5** | **12** | **9** |
5321 * | 1 _-x-_ | | 3 _-x-_ | | |
5322 *
5323 * @see https://developer.mozilla.org/docs/Web/CSS/border-radius
5324 */
5325 borderRadius?: Property.BorderRadius<TLength> | undefined;
5326 /**
5327 * The **`border-right`** shorthand CSS property sets all the properties of an element's right border.
5328 *
5329 * **Syntax**: `<line-width> || <line-style> || <color>`
5330 *
5331 * | Chrome | Firefox | Safari | Edge | IE |
5332 * | :----: | :-----: | :----: | :----: | :-----: |
5333 * | **1** | **1** | **1** | **12** | **5.5** |
5334 *
5335 * @see https://developer.mozilla.org/docs/Web/CSS/border-right
5336 */
5337 borderRight?: Property.BorderRight<TLength> | undefined;
5338 /**
5339 * The **`border-style`** shorthand CSS property sets the line style for all four sides of an element's border.
5340 *
5341 * **Syntax**: `<line-style>{1,4}`
5342 *
5343 * | Chrome | Firefox | Safari | Edge | IE |
5344 * | :----: | :-----: | :----: | :----: | :---: |
5345 * | **1** | **1** | **1** | **12** | **4** |
5346 *
5347 * @see https://developer.mozilla.org/docs/Web/CSS/border-style
5348 */
5349 borderStyle?: Property.BorderStyle | undefined;
5350 /**
5351 * The **`border-top`** shorthand CSS property sets all the properties of an element's top border.
5352 *
5353 * **Syntax**: `<line-width> || <line-style> || <color>`
5354 *
5355 * | Chrome | Firefox | Safari | Edge | IE |
5356 * | :----: | :-----: | :----: | :----: | :---: |
5357 * | **1** | **1** | **1** | **12** | **4** |
5358 *
5359 * @see https://developer.mozilla.org/docs/Web/CSS/border-top
5360 */
5361 borderTop?: Property.BorderTop<TLength> | undefined;
5362 /**
5363 * The **`border-width`** shorthand CSS property sets the width of an element's border.
5364 *
5365 * **Syntax**: `<line-width>{1,4}`
5366 *
5367 * | Chrome | Firefox | Safari | Edge | IE |
5368 * | :----: | :-----: | :----: | :----: | :---: |
5369 * | **1** | **1** | **1** | **12** | **4** |
5370 *
5371 * @see https://developer.mozilla.org/docs/Web/CSS/border-width
5372 */
5373 borderWidth?: Property.BorderWidth<TLength> | undefined;
5374 /**
5375 * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
5376 *
5377 * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`
5378 *
5379 * | Chrome | Firefox | Safari | Edge | IE |
5380 * | :-----: | :-----: | :-----: | :----: | :----: |
5381 * | **50** | **52** | **9** | **12** | **10** |
5382 * | 1 _-x-_ | | 3 _-x-_ | | |
5383 *
5384 * @see https://developer.mozilla.org/docs/Web/CSS/column-rule
5385 */
5386 columnRule?: Property.ColumnRule<TLength> | undefined;
5387 /**
5388 * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
5389 *
5390 * **Syntax**: `<'column-width'> || <'column-count'>`
5391 *
5392 * | Chrome | Firefox | Safari | Edge | IE |
5393 * | :----: | :-----: | :-----: | :----: | :----: |
5394 * | **50** | **52** | **9** | **12** | **10** |
5395 * | | | 3 _-x-_ | | |
5396 *
5397 * @see https://developer.mozilla.org/docs/Web/CSS/columns
5398 */
5399 columns?: Property.Columns<TLength> | undefined;
5400 /**
5401 * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
5402 *
5403 * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
5404 *
5405 * | Chrome | Firefox | Safari | Edge | IE |
5406 * | :------: | :-----: | :-----: | :----: | :------: |
5407 * | **29** | **20** | **9** | **12** | **11** |
5408 * | 21 _-x-_ | | 7 _-x-_ | | 10 _-x-_ |
5409 *
5410 * @see https://developer.mozilla.org/docs/Web/CSS/flex
5411 */
5412 flex?: Property.Flex<TLength> | undefined;
5413 /**
5414 * The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.
5415 *
5416 * **Syntax**: `<'flex-direction'> || <'flex-wrap'>`
5417 *
5418 * | Chrome | Firefox | Safari | Edge | IE |
5419 * | :------: | :-----: | :-----: | :----: | :----: |
5420 * | **29** | **28** | **9** | **12** | **11** |
5421 * | 21 _-x-_ | | 7 _-x-_ | | |
5422 *
5423 * @see https://developer.mozilla.org/docs/Web/CSS/flex-flow
5424 */
5425 flexFlow?: Property.FlexFlow | undefined;
5426 /**
5427 * The **`font`** CSS shorthand property sets all the different properties of an element's font. Alternatively, it sets an element's font to a system font.
5428 *
5429 * **Syntax**: `[ [ <'font-style'> || <font-variant-css21> || <'font-weight'> || <'font-stretch'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar`
5430 *
5431 * | Chrome | Firefox | Safari | Edge | IE |
5432 * | :----: | :-----: | :----: | :----: | :---: |
5433 * | **1** | **1** | **1** | **12** | **3** |
5434 *
5435 * @see https://developer.mozilla.org/docs/Web/CSS/font
5436 */
5437 font?: Property.Font | undefined;
5438 /**
5439 * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`.
5440 *
5441 * **Syntax**: `<'row-gap'> <'column-gap'>?`
5442 *
5443 * ---
5444 *
5445 * _Supported in Flex Layout_
5446 *
5447 * | Chrome | Firefox | Safari | Edge | IE |
5448 * | :----: | :-----: | :------: | :----: | :-: |
5449 * | **84** | **63** | **14.1** | **84** | No |
5450 *
5451 * ---
5452 *
5453 * _Supported in Grid Layout_
5454 *
5455 * | Chrome | Firefox | Safari | Edge | IE |
5456 * | :-------------: | :-------------: | :---------------: | :----: | :-: |
5457 * | **66** | **61** | **12** | **16** | No |
5458 * | 57 _(grid-gap)_ | 52 _(grid-gap)_ | 10.1 _(grid-gap)_ | | |
5459 *
5460 * ---
5461 *
5462 * _Supported in Multi-column Layout_
5463 *
5464 * | Chrome | Firefox | Safari | Edge | IE |
5465 * | :----: | :-----: | :----: | :----: | :-: |
5466 * | **66** | **61** | No | **16** | No |
5467 *
5468 * ---
5469 *
5470 * @see https://developer.mozilla.org/docs/Web/CSS/gap
5471 */
5472 gap?: Property.Gap<TLength> | undefined;
5473 /**
5474 * The **`grid`** CSS property is a shorthand property that sets all of the explicit and implicit grid properties in a single declaration.
5475 *
5476 * **Syntax**: `<'grid-template'> | <'grid-template-rows'> / [ auto-flow && dense? ] <'grid-auto-columns'>? | [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>`
5477 *
5478 * | Chrome | Firefox | Safari | Edge | IE |
5479 * | :----: | :-----: | :------: | :----: | :-: |
5480 * | **57** | **52** | **10.1** | **16** | No |
5481 *
5482 * @see https://developer.mozilla.org/docs/Web/CSS/grid
5483 */
5484 grid?: Property.Grid | undefined;
5485 /**
5486 * The **`grid-area`** CSS shorthand property specifies a grid item’s size and location within a grid by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the edges of its grid area.
5487 *
5488 * **Syntax**: `<grid-line> [ / <grid-line> ]{0,3}`
5489 *
5490 * | Chrome | Firefox | Safari | Edge | IE |
5491 * | :----: | :-----: | :------: | :----: | :-: |
5492 * | **57** | **52** | **10.1** | **16** | No |
5493 *
5494 * @see https://developer.mozilla.org/docs/Web/CSS/grid-area
5495 */
5496 gridArea?: Property.GridArea | undefined;
5497 /**
5498 * The **`grid-column`** CSS shorthand property specifies a grid item's size and location within a grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.
5499 *
5500 * **Syntax**: `<grid-line> [ / <grid-line> ]?`
5501 *
5502 * | Chrome | Firefox | Safari | Edge | IE |
5503 * | :----: | :-----: | :------: | :----: | :-: |
5504 * | **57** | **52** | **10.1** | **16** | No |
5505 *
5506 * @see https://developer.mozilla.org/docs/Web/CSS/grid-column
5507 */
5508 gridColumn?: Property.GridColumn | undefined;
5509 /**
5510 * The **`grid-row`** CSS shorthand property specifies a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.
5511 *
5512 * **Syntax**: `<grid-line> [ / <grid-line> ]?`
5513 *
5514 * | Chrome | Firefox | Safari | Edge | IE |
5515 * | :----: | :-----: | :------: | :----: | :-: |
5516 * | **57** | **52** | **10.1** | **16** | No |
5517 *
5518 * @see https://developer.mozilla.org/docs/Web/CSS/grid-row
5519 */
5520 gridRow?: Property.GridRow | undefined;
5521 /**
5522 * The **`grid-template`** CSS property is a shorthand property for defining grid columns, rows, and areas.
5523 *
5524 * **Syntax**: `none | [ <'grid-template-rows'> / <'grid-template-columns'> ] | [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?`
5525 *
5526 * | Chrome | Firefox | Safari | Edge | IE |
5527 * | :----: | :-----: | :------: | :----: | :-: |
5528 * | **57** | **52** | **10.1** | **16** | No |
5529 *
5530 * @see https://developer.mozilla.org/docs/Web/CSS/grid-template
5531 */
5532 gridTemplate?: Property.GridTemplate | undefined;
5533 /**
5534 * **Syntax**: `none | <integer>`
5535 *
5536 * **Initial value**: `none`
5537 */
5538 lineClamp?: Property.LineClamp | undefined;
5539 /**
5540 * The **`list-style`** CSS shorthand property allows you set all the list style properties at once.
5541 *
5542 * **Syntax**: `<'list-style-type'> || <'list-style-position'> || <'list-style-image'>`
5543 *
5544 * | Chrome | Firefox | Safari | Edge | IE |
5545 * | :----: | :-----: | :----: | :----: | :---: |
5546 * | **1** | **1** | **1** | **12** | **4** |
5547 *
5548 * @see https://developer.mozilla.org/docs/Web/CSS/list-style
5549 */
5550 listStyle?: Property.ListStyle | undefined;
5551 /**
5552 * The **`margin`** CSS property sets the margin area on all four sides of an element. It is a shorthand for `margin-top`, `margin-right`, `margin-bottom`, and `margin-left`.
5553 *
5554 * **Syntax**: `[ <length> | <percentage> | auto ]{1,4}`
5555 *
5556 * | Chrome | Firefox | Safari | Edge | IE |
5557 * | :----: | :-----: | :----: | :----: | :---: |
5558 * | **1** | **1** | **1** | **12** | **3** |
5559 *
5560 * @see https://developer.mozilla.org/docs/Web/CSS/margin
5561 */
5562 margin?: Property.Margin<TLength> | undefined;
5563 /**
5564 * The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.
5565 *
5566 * **Syntax**: `<mask-layer>#`
5567 *
5568 * | Chrome | Firefox | Safari | Edge | IE |
5569 * | :----: | :-----: | :-----: | :---: | :-: |
5570 * | **1** | **2** | **3.1** | 12-79 | No |
5571 *
5572 * @see https://developer.mozilla.org/docs/Web/CSS/mask
5573 */
5574 mask?: Property.Mask<TLength> | undefined;
5575 /**
5576 * The **`mask-border`** CSS shorthand property lets you create a mask along the edge of an element's border.
5577 *
5578 * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`
5579 *
5580 * | Chrome | Firefox | Safari | Edge | IE |
5581 * | :------------------------------: | :-----: | :--------------------------------: | :-------------------------------: | :-: |
5582 * | **1** _(-webkit-mask-box-image)_ | No | **3.1** _(-webkit-mask-box-image)_ | **79** _(-webkit-mask-box-image)_ | No |
5583 *
5584 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border
5585 */
5586 maskBorder?: Property.MaskBorder | undefined;
5587 /**
5588 * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.
5589 *
5590 * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`
5591 *
5592 * | Chrome | Firefox | Safari | Edge | IE |
5593 * | :-----------: | :-----: | :----: | :----: | :-: |
5594 * | **55** | **72** | No | **79** | No |
5595 * | 46 _(motion)_ | | | | |
5596 *
5597 * @see https://developer.mozilla.org/docs/Web/CSS/offset
5598 */
5599 motion?: Property.Offset<TLength> | undefined;
5600 /**
5601 * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.
5602 *
5603 * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`
5604 *
5605 * | Chrome | Firefox | Safari | Edge | IE |
5606 * | :-----------: | :-----: | :----: | :----: | :-: |
5607 * | **55** | **72** | No | **79** | No |
5608 * | 46 _(motion)_ | | | | |
5609 *
5610 * @see https://developer.mozilla.org/docs/Web/CSS/offset
5611 */
5612 offset?: Property.Offset<TLength> | undefined;
5613 /**
5614 * The **`outline`** CSS shorthand property set all the outline properties in a single declaration.
5615 *
5616 * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`
5617 *
5618 * | Chrome | Firefox | Safari | Edge | IE |
5619 * | :----: | :-----: | :-----: | :----: | :---: |
5620 * | **1** | **1.5** | **1.2** | **12** | **8** |
5621 *
5622 * @see https://developer.mozilla.org/docs/Web/CSS/outline
5623 */
5624 outline?: Property.Outline<TLength> | undefined;
5625 /**
5626 * The **`overflow`** CSS shorthand property sets the desired behavior for an element's overflow — i.e. when an element's content is too big to fit in its block formatting context — in both directions.
5627 *
5628 * **Syntax**: `[ visible | hidden | clip | scroll | auto ]{1,2}`
5629 *
5630 * **Initial value**: `visible`
5631 *
5632 * | Chrome | Firefox | Safari | Edge | IE |
5633 * | :----: | :-----: | :----: | :----: | :---: |
5634 * | **1** | **1** | **1** | **12** | **4** |
5635 *
5636 * @see https://developer.mozilla.org/docs/Web/CSS/overflow
5637 */
5638 overflow?: Property.Overflow | undefined;
5639 /**
5640 * The **`overscroll-behavior`** CSS property sets what a browser does when reaching the boundary of a scrolling area. It's a shorthand for `overscroll-behavior-x` and `overscroll-behavior-y`.
5641 *
5642 * **Syntax**: `[ contain | none | auto ]{1,2}`
5643 *
5644 * **Initial value**: `auto`
5645 *
5646 * | Chrome | Firefox | Safari | Edge | IE |
5647 * | :----: | :-----: | :----: | :----: | :-: |
5648 * | **63** | **59** | No | **18** | No |
5649 *
5650 * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior
5651 */
5652 overscrollBehavior?: Property.OverscrollBehavior | undefined;
5653 /**
5654 * The **`padding`** CSS shorthand property sets the padding area on all four sides of an element at once.
5655 *
5656 * **Syntax**: `[ <length> | <percentage> ]{1,4}`
5657 *
5658 * | Chrome | Firefox | Safari | Edge | IE |
5659 * | :----: | :-----: | :----: | :----: | :---: |
5660 * | **1** | **1** | **1** | **12** | **4** |
5661 *
5662 * @see https://developer.mozilla.org/docs/Web/CSS/padding
5663 */
5664 padding?: Property.Padding<TLength> | undefined;
5665 /**
5666 * The CSS **`place-items`** shorthand property allows you to align items along both the block and inline directions at once (i.e. the `align-items` and `justify-items` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not set, the first value is also used for it.
5667 *
5668 * **Syntax**: `<'align-items'> <'justify-items'>?`
5669 *
5670 * | Chrome | Firefox | Safari | Edge | IE |
5671 * | :----: | :-----: | :----: | :----: | :-: |
5672 * | **59** | **45** | **11** | **79** | No |
5673 *
5674 * @see https://developer.mozilla.org/docs/Web/CSS/place-items
5675 */
5676 placeItems?: Property.PlaceItems | undefined;
5677 /**
5678 * The **`place-self`** CSS shorthand property allows you to align an individual item in both the block and inline directions at once (i.e. the `align-self` and `justify-self` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not present, the first value is also used for it.
5679 *
5680 * **Syntax**: `<'align-self'> <'justify-self'>?`
5681 *
5682 * | Chrome | Firefox | Safari | Edge | IE |
5683 * | :----: | :-----: | :----: | :----: | :-: |
5684 * | **59** | **45** | **11** | **79** | No |
5685 *
5686 * @see https://developer.mozilla.org/docs/Web/CSS/place-self
5687 */
5688 placeSelf?: Property.PlaceSelf | undefined;
5689 /**
5690 * The **`text-decoration`** shorthand CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, `text-decoration-style`, and the newer `text-decoration-thickness` property.
5691 *
5692 * **Syntax**: `<'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-thickness'>`
5693 *
5694 * | Chrome | Firefox | Safari | Edge | IE |
5695 * | :----: | :-----: | :----: | :----: | :---: |
5696 * | **1** | **1** | **1** | **12** | **3** |
5697 *
5698 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration
5699 */
5700 textDecoration?: Property.TextDecoration<TLength> | undefined;
5701 /**
5702 * The **`text-emphasis`** CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for `text-emphasis-style` and `text-emphasis-color`.
5703 *
5704 * **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`
5705 *
5706 * | Chrome | Firefox | Safari | Edge | IE |
5707 * | :----------: | :-----: | :----: | :----------: | :-: |
5708 * | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
5709 *
5710 * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis
5711 */
5712 textEmphasis?: Property.TextEmphasis | undefined;
5713 /**
5714 * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
5715 *
5716 * **Syntax**: `<single-transition>#`
5717 *
5718 * | Chrome | Firefox | Safari | Edge | IE |
5719 * | :-----: | :-----: | :-------: | :----: | :----: |
5720 * | **26** | **16** | **9** | **12** | **10** |
5721 * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
5722 *
5723 * @see https://developer.mozilla.org/docs/Web/CSS/transition
5724 */
5725 transition?: Property.Transition<TTime> | undefined;
5726}
5727export interface StandardProperties<TLength = (string & {}) | 0, TTime = string & {}> extends StandardLonghandProperties<TLength, TTime>, StandardShorthandProperties<TLength, TTime> {
5728}
5729export interface VendorLonghandProperties<TLength = (string & {}) | 0, TTime = string & {}> {
5730 /**
5731 * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
5732 *
5733 * **Syntax**: `<time>#`
5734 *
5735 * **Initial value**: `0s`
5736 */
5737 MozAnimationDelay?: Property.AnimationDelay<TTime> | undefined;
5738 /**
5739 * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
5740 *
5741 * **Syntax**: `<single-animation-direction>#`
5742 *
5743 * **Initial value**: `normal`
5744 */
5745 MozAnimationDirection?: Property.AnimationDirection | undefined;
5746 /**
5747 * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
5748 *
5749 * **Syntax**: `<time>#`
5750 *
5751 * **Initial value**: `0s`
5752 */
5753 MozAnimationDuration?: Property.AnimationDuration<TTime> | undefined;
5754 /**
5755 * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
5756 *
5757 * **Syntax**: `<single-animation-fill-mode>#`
5758 *
5759 * **Initial value**: `none`
5760 */
5761 MozAnimationFillMode?: Property.AnimationFillMode | undefined;
5762 /**
5763 * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
5764 *
5765 * **Syntax**: `<single-animation-iteration-count>#`
5766 *
5767 * **Initial value**: `1`
5768 */
5769 MozAnimationIterationCount?: Property.AnimationIterationCount | undefined;
5770 /**
5771 * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
5772 *
5773 * **Syntax**: `[ none | <keyframes-name> ]#`
5774 *
5775 * **Initial value**: `none`
5776 */
5777 MozAnimationName?: Property.AnimationName | undefined;
5778 /**
5779 * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
5780 *
5781 * **Syntax**: `<single-animation-play-state>#`
5782 *
5783 * **Initial value**: `running`
5784 */
5785 MozAnimationPlayState?: Property.AnimationPlayState | undefined;
5786 /**
5787 * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
5788 *
5789 * **Syntax**: `<easing-function>#`
5790 *
5791 * **Initial value**: `ease`
5792 */
5793 MozAnimationTimingFunction?: Property.AnimationTimingFunction | undefined;
5794 /**
5795 * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.
5796 *
5797 * **Syntax**: `none | button | button-arrow-down | button-arrow-next | button-arrow-previous | button-arrow-up | button-bevel | button-focus | caret | checkbox | checkbox-container | checkbox-label | checkmenuitem | dualbutton | groupbox | listbox | listitem | menuarrow | menubar | menucheckbox | menuimage | menuitem | menuitemtext | menulist | menulist-button | menulist-text | menulist-textfield | menupopup | menuradio | menuseparator | meterbar | meterchunk | progressbar | progressbar-vertical | progresschunk | progresschunk-vertical | radio | radio-container | radio-label | radiomenuitem | range | range-thumb | resizer | resizerpanel | scale-horizontal | scalethumbend | scalethumb-horizontal | scalethumbstart | scalethumbtick | scalethumb-vertical | scale-vertical | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical | searchfield | separator | sheet | spinner | spinner-downbutton | spinner-textfield | spinner-upbutton | splitter | statusbar | statusbarpanel | tab | tabpanel | tabpanels | tab-scroll-arrow-back | tab-scroll-arrow-forward | textfield | textfield-multiline | toolbar | toolbarbutton | toolbarbutton-dropdown | toolbargripper | toolbox | tooltip | treeheader | treeheadercell | treeheadersortarrow | treeitem | treeline | treetwisty | treetwistyopen | treeview | -moz-mac-unified-toolbar | -moz-win-borderless-glass | -moz-win-browsertabbar-toolbox | -moz-win-communicationstext | -moz-win-communications-toolbox | -moz-win-exclude-glass | -moz-win-glass | -moz-win-mediatext | -moz-win-media-toolbox | -moz-window-button-box | -moz-window-button-box-maximized | -moz-window-button-close | -moz-window-button-maximize | -moz-window-button-minimize | -moz-window-button-restore | -moz-window-frame-bottom | -moz-window-frame-left | -moz-window-frame-right | -moz-window-titlebar | -moz-window-titlebar-maximized`
5798 *
5799 * **Initial value**: `none` (but this value is overridden in the user agent CSS)
5800 */
5801 MozAppearance?: Property.MozAppearance | undefined;
5802 /**
5803 * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
5804 *
5805 * **Syntax**: `visible | hidden`
5806 *
5807 * **Initial value**: `visible`
5808 */
5809 MozBackfaceVisibility?: Property.BackfaceVisibility | undefined;
5810 /**
5811 * In Mozilla applications like Firefox, the **`-moz-border-bottom-colors`** CSS property sets a list of colors for the bottom border.
5812 *
5813 * **Syntax**: `<color>+ | none`
5814 *
5815 * **Initial value**: `none`
5816 */
5817 MozBorderBottomColors?: Property.MozBorderBottomColors | undefined;
5818 /**
5819 * The **`border-inline-end-color`** CSS property defines the color of the logical inline-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
5820 *
5821 * **Syntax**: `<'border-top-color'>`
5822 *
5823 * **Initial value**: `currentcolor`
5824 */
5825 MozBorderEndColor?: Property.BorderInlineEndColor | undefined;
5826 /**
5827 * The **`border-inline-end-style`** CSS property defines the style of the logical inline end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
5828 *
5829 * **Syntax**: `<'border-top-style'>`
5830 *
5831 * **Initial value**: `none`
5832 */
5833 MozBorderEndStyle?: Property.BorderInlineEndStyle | undefined;
5834 /**
5835 * The **`border-inline-end-width`** CSS property defines the width of the logical inline-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
5836 *
5837 * **Syntax**: `<'border-top-width'>`
5838 *
5839 * **Initial value**: `medium`
5840 */
5841 MozBorderEndWidth?: Property.BorderInlineEndWidth<TLength> | undefined;
5842 /**
5843 * In Mozilla applications like Firefox, the **`-moz-border-left-colors`** CSS property sets a list of colors for the left border.
5844 *
5845 * **Syntax**: `<color>+ | none`
5846 *
5847 * **Initial value**: `none`
5848 */
5849 MozBorderLeftColors?: Property.MozBorderLeftColors | undefined;
5850 /**
5851 * In Mozilla applications like Firefox, the **`-moz-border-right-colors`** CSS property sets a list of colors for the right border.
5852 *
5853 * **Syntax**: `<color>+ | none`
5854 *
5855 * **Initial value**: `none`
5856 */
5857 MozBorderRightColors?: Property.MozBorderRightColors | undefined;
5858 /**
5859 * The **`border-inline-start-color`** CSS property defines the color of the logical inline start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
5860 *
5861 * **Syntax**: `<'border-top-color'>`
5862 *
5863 * **Initial value**: `currentcolor`
5864 */
5865 MozBorderStartColor?: Property.BorderInlineStartColor | undefined;
5866 /**
5867 * The **`border-inline-start-style`** CSS property defines the style of the logical inline start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
5868 *
5869 * **Syntax**: `<'border-top-style'>`
5870 *
5871 * **Initial value**: `none`
5872 */
5873 MozBorderStartStyle?: Property.BorderInlineStartStyle | undefined;
5874 /**
5875 * In Mozilla applications like Firefox, the **`-moz-border-top-colors`** CSS property sets a list of colors for the top border.
5876 *
5877 * **Syntax**: `<color>+ | none`
5878 *
5879 * **Initial value**: `none`
5880 */
5881 MozBorderTopColors?: Property.MozBorderTopColors | undefined;
5882 /**
5883 * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
5884 *
5885 * **Syntax**: `content-box | border-box`
5886 *
5887 * **Initial value**: `content-box`
5888 */
5889 MozBoxSizing?: Property.BoxSizing | undefined;
5890 /**
5891 * The **`column-count`** CSS property breaks an element's content into the specified number of columns.
5892 *
5893 * **Syntax**: `<integer> | auto`
5894 *
5895 * **Initial value**: `auto`
5896 */
5897 MozColumnCount?: Property.ColumnCount | undefined;
5898 /**
5899 * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.
5900 *
5901 * **Syntax**: `auto | balance | balance-all`
5902 *
5903 * **Initial value**: `balance`
5904 */
5905 MozColumnFill?: Property.ColumnFill | undefined;
5906 /**
5907 * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
5908 *
5909 * **Syntax**: `normal | <length-percentage>`
5910 *
5911 * **Initial value**: `normal`
5912 */
5913 MozColumnGap?: Property.ColumnGap<TLength> | undefined;
5914 /**
5915 * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.
5916 *
5917 * **Syntax**: `<color>`
5918 *
5919 * **Initial value**: `currentcolor`
5920 */
5921 MozColumnRuleColor?: Property.ColumnRuleColor | undefined;
5922 /**
5923 * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.
5924 *
5925 * **Syntax**: `<'border-style'>`
5926 *
5927 * **Initial value**: `none`
5928 */
5929 MozColumnRuleStyle?: Property.ColumnRuleStyle | undefined;
5930 /**
5931 * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
5932 *
5933 * **Syntax**: `<'border-width'>`
5934 *
5935 * **Initial value**: `medium`
5936 */
5937 MozColumnRuleWidth?: Property.ColumnRuleWidth<TLength> | undefined;
5938 /**
5939 * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.
5940 *
5941 * **Syntax**: `<length> | auto`
5942 *
5943 * **Initial value**: `auto`
5944 */
5945 MozColumnWidth?: Property.ColumnWidth<TLength> | undefined;
5946 /**
5947 * The `**-moz-context-properties**` property can be used within privileged contexts in Firefox to share the values of specified properties of the element with a child SVG image.
5948 *
5949 * **Syntax**: `none | [ fill | fill-opacity | stroke | stroke-opacity ]#`
5950 *
5951 * **Initial value**: `none`
5952 */
5953 MozContextProperties?: Property.MozContextProperties | undefined;
5954 /**
5955 * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
5956 *
5957 * **Syntax**: `normal | <feature-tag-value>#`
5958 *
5959 * **Initial value**: `normal`
5960 */
5961 MozFontFeatureSettings?: Property.FontFeatureSettings | undefined;
5962 /**
5963 * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface.
5964 *
5965 * **Syntax**: `normal | <string>`
5966 *
5967 * **Initial value**: `normal`
5968 */
5969 MozFontLanguageOverride?: Property.FontLanguageOverride | undefined;
5970 /**
5971 * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
5972 *
5973 * **Syntax**: `none | manual | auto`
5974 *
5975 * **Initial value**: `manual`
5976 */
5977 MozHyphens?: Property.Hyphens | undefined;
5978 /**
5979 * For certain XUL elements and pseudo-elements that use an image from the `list-style-image` property, this property specifies a region of the image that is used in place of the whole image. This allows elements to use different pieces of the same image to improve performance.
5980 *
5981 * **Syntax**: `<shape> | auto`
5982 *
5983 * **Initial value**: `auto`
5984 */
5985 MozImageRegion?: Property.MozImageRegion | undefined;
5986 /**
5987 * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
5988 *
5989 * **Syntax**: `<'margin-left'>`
5990 *
5991 * **Initial value**: `0`
5992 */
5993 MozMarginEnd?: Property.MarginInlineEnd<TLength> | undefined;
5994 /**
5995 * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
5996 *
5997 * **Syntax**: `<'margin-left'>`
5998 *
5999 * **Initial value**: `0`
6000 */
6001 MozMarginStart?: Property.MarginInlineStart<TLength> | undefined;
6002 /**
6003 * The **`-moz-orient`** CSS property specifies the orientation of the element to which it's applied.
6004 *
6005 * **Syntax**: `inline | block | horizontal | vertical`
6006 *
6007 * **Initial value**: `inline`
6008 */
6009 MozOrient?: Property.MozOrient | undefined;
6010 /**
6011 * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.
6012 *
6013 * **Syntax**: `auto | never | always | <absolute-size> | <length>`
6014 *
6015 * **Initial value**: `auto`
6016 */
6017 MozOsxFontSmoothing?: Property.FontSmooth<TLength> | undefined;
6018 /**
6019 * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
6020 *
6021 * **Syntax**: `<'padding-left'>`
6022 *
6023 * **Initial value**: `0`
6024 */
6025 MozPaddingEnd?: Property.PaddingInlineEnd<TLength> | undefined;
6026 /**
6027 * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
6028 *
6029 * **Syntax**: `<'padding-left'>`
6030 *
6031 * **Initial value**: `0`
6032 */
6033 MozPaddingStart?: Property.PaddingInlineStart<TLength> | undefined;
6034 /**
6035 * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
6036 *
6037 * **Syntax**: `none | <length>`
6038 *
6039 * **Initial value**: `none`
6040 */
6041 MozPerspective?: Property.Perspective<TLength> | undefined;
6042 /**
6043 * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
6044 *
6045 * **Syntax**: `<position>`
6046 *
6047 * **Initial value**: `50% 50%`
6048 */
6049 MozPerspectiveOrigin?: Property.PerspectiveOrigin<TLength> | undefined;
6050 /**
6051 * **`-moz-stack-sizing`** is an extended CSS property. Normally, a `<xul:stack>` will change its size so that all of its child elements are completely visible. For example, moving a child of the stack far to the right will widen the stack so the child remains visible.
6052 *
6053 * **Syntax**: `ignore | stretch-to-fit`
6054 *
6055 * **Initial value**: `stretch-to-fit`
6056 */
6057 MozStackSizing?: Property.MozStackSizing | undefined;
6058 /**
6059 * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
6060 *
6061 * **Syntax**: `<integer> | <length>`
6062 *
6063 * **Initial value**: `8`
6064 */
6065 MozTabSize?: Property.TabSize<TLength> | undefined;
6066 /**
6067 * The **`-moz-text-blink`** non-standard Mozilla CSS extension specifies the blink mode.
6068 *
6069 * **Syntax**: `none | blink`
6070 *
6071 * **Initial value**: `none`
6072 */
6073 MozTextBlink?: Property.MozTextBlink | undefined;
6074 /**
6075 * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
6076 *
6077 * **Syntax**: `none | auto | <percentage>`
6078 *
6079 * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
6080 */
6081 MozTextSizeAdjust?: Property.TextSizeAdjust | undefined;
6082 /**
6083 * The **`transform-origin`** CSS property sets the origin for an element's transformations.
6084 *
6085 * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
6086 *
6087 * **Initial value**: `50% 50% 0`
6088 */
6089 MozTransformOrigin?: Property.TransformOrigin<TLength> | undefined;
6090 /**
6091 * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
6092 *
6093 * **Syntax**: `flat | preserve-3d`
6094 *
6095 * **Initial value**: `flat`
6096 */
6097 MozTransformStyle?: Property.TransformStyle | undefined;
6098 /**
6099 * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
6100 *
6101 * **Syntax**: `<time>#`
6102 *
6103 * **Initial value**: `0s`
6104 */
6105 MozTransitionDelay?: Property.TransitionDelay<TTime> | undefined;
6106 /**
6107 * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
6108 *
6109 * **Syntax**: `<time>#`
6110 *
6111 * **Initial value**: `0s`
6112 */
6113 MozTransitionDuration?: Property.TransitionDuration<TTime> | undefined;
6114 /**
6115 * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
6116 *
6117 * **Syntax**: `none | <single-transition-property>#`
6118 *
6119 * **Initial value**: all
6120 */
6121 MozTransitionProperty?: Property.TransitionProperty | undefined;
6122 /**
6123 * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
6124 *
6125 * **Syntax**: `<easing-function>#`
6126 *
6127 * **Initial value**: `ease`
6128 */
6129 MozTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
6130 /**
6131 * The **`-moz-user-focus`** CSS property is used to indicate whether an element can have the focus.
6132 *
6133 * **Syntax**: `ignore | normal | select-after | select-before | select-menu | select-same | select-all | none`
6134 *
6135 * **Initial value**: `none`
6136 */
6137 MozUserFocus?: Property.MozUserFocus | undefined;
6138 /**
6139 * The **`user-modify`** property has no effect in Firefox. It was originally planned to determine whether or not the content of an element can be edited by a user.
6140 *
6141 * **Syntax**: `read-only | read-write | write-only`
6142 *
6143 * **Initial value**: `read-only`
6144 */
6145 MozUserModify?: Property.MozUserModify | undefined;
6146 /**
6147 * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
6148 *
6149 * **Syntax**: `auto | text | none | contain | all`
6150 *
6151 * **Initial value**: `auto`
6152 */
6153 MozUserSelect?: Property.UserSelect | undefined;
6154 /**
6155 * The **`-moz-window-dragging`** CSS property specifies whether a window is draggable or not. It only works in Chrome code, and only on Mac OS X.
6156 *
6157 * **Syntax**: `drag | no-drag`
6158 *
6159 * **Initial value**: `drag`
6160 */
6161 MozWindowDragging?: Property.MozWindowDragging | undefined;
6162 /**
6163 * The **`-moz-window-shadow`** CSS property specifies whether a window will have a shadow. It only works on Mac OS X.
6164 *
6165 * **Syntax**: `default | menu | tooltip | sheet | none`
6166 *
6167 * **Initial value**: `default`
6168 */
6169 MozWindowShadow?: Property.MozWindowShadow | undefined;
6170 /**
6171 * The **`-ms-accelerator`** CSS property is a Microsoft extension that sets or retrieves a string indicating whether the object represents a keyboard shortcut.
6172 *
6173 * **Syntax**: `false | true`
6174 *
6175 * **Initial value**: `false`
6176 */
6177 msAccelerator?: Property.MsAccelerator | undefined;
6178 /**
6179 * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.
6180 *
6181 * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`
6182 *
6183 * **Initial value**: `auto`
6184 */
6185 msAlignSelf?: Property.AlignSelf | undefined;
6186 /**
6187 * The **`-ms-block-progression`** CSS property is a Microsoft extension that specifies the block progression and layout orientation.
6188 *
6189 * **Syntax**: `tb | rl | bt | lr`
6190 *
6191 * **Initial value**: `tb`
6192 */
6193 msBlockProgression?: Property.MsBlockProgression | undefined;
6194 /**
6195 * The **`-ms-content-zoom-chaining`** CSS property is a Microsoft extension specifying the zoom behavior that occurs when a user hits the zoom limit during page manipulation.
6196 *
6197 * **Syntax**: `none | chained`
6198 *
6199 * **Initial value**: `none`
6200 */
6201 msContentZoomChaining?: Property.MsContentZoomChaining | undefined;
6202 /**
6203 * The **`-ms-content-zoom-limit-max`** CSS property is a Microsoft extension that specifies the selected elements' maximum zoom factor.
6204 *
6205 * **Syntax**: `<percentage>`
6206 *
6207 * **Initial value**: `400%`
6208 */
6209 msContentZoomLimitMax?: Property.MsContentZoomLimitMax | undefined;
6210 /**
6211 * The **`-ms-content-zoom-limit-min`** CSS property is a Microsoft extension that specifies the minimum zoom factor.
6212 *
6213 * **Syntax**: `<percentage>`
6214 *
6215 * **Initial value**: `100%`
6216 */
6217 msContentZoomLimitMin?: Property.MsContentZoomLimitMin | undefined;
6218 /**
6219 * The **`-ms-content-zoom-snap-points`** CSS property is a Microsoft extension that specifies where zoom snap-points are located.
6220 *
6221 * **Syntax**: `snapInterval( <percentage>, <percentage> ) | snapList( <percentage># )`
6222 *
6223 * **Initial value**: `snapInterval(0%, 100%)`
6224 */
6225 msContentZoomSnapPoints?: Property.MsContentZoomSnapPoints | undefined;
6226 /**
6227 * The **`-ms-content-zoom-snap-type`** CSS property is a Microsoft extension that specifies how zooming is affected by defined snap-points.
6228 *
6229 * **Syntax**: `none | proximity | mandatory`
6230 *
6231 * **Initial value**: `none`
6232 */
6233 msContentZoomSnapType?: Property.MsContentZoomSnapType | undefined;
6234 /**
6235 * The **`-ms-content-zooming`** CSS property is a Microsoft extension that specifies whether zooming is enabled.
6236 *
6237 * **Syntax**: `none | zoom`
6238 *
6239 * **Initial value**: zoom for the top level element, none for all other elements
6240 */
6241 msContentZooming?: Property.MsContentZooming | undefined;
6242 /**
6243 * The `-ms-filter` CSS property is a Microsoft extension that sets or retrieves the filter or collection of filters applied to an object.
6244 *
6245 * **Syntax**: `<string>`
6246 *
6247 * **Initial value**: "" (the empty string)
6248 */
6249 msFilter?: Property.MsFilter | undefined;
6250 /**
6251 * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).
6252 *
6253 * **Syntax**: `row | row-reverse | column | column-reverse`
6254 *
6255 * **Initial value**: `row`
6256 */
6257 msFlexDirection?: Property.FlexDirection | undefined;
6258 /**
6259 * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.
6260 *
6261 * **Syntax**: `<number>`
6262 *
6263 * **Initial value**: `0`
6264 */
6265 msFlexPositive?: Property.FlexGrow | undefined;
6266 /**
6267 * The **`-ms-flow-from`** CSS property is a Microsoft extension that gets or sets a value identifying a region container in the document that accepts the content flow from the data source.
6268 *
6269 * **Syntax**: `[ none | <custom-ident> ]#`
6270 *
6271 * **Initial value**: `none`
6272 */
6273 msFlowFrom?: Property.MsFlowFrom | undefined;
6274 /**
6275 * The **`-ms-flow-into`** CSS property is a Microsoft extension that gets or sets a value identifying an iframe container in the document that serves as the region's data source.
6276 *
6277 * **Syntax**: `[ none | <custom-ident> ]#`
6278 *
6279 * **Initial value**: `none`
6280 */
6281 msFlowInto?: Property.MsFlowInto | undefined;
6282 /**
6283 * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.
6284 *
6285 * **Syntax**: `none | <track-list> | <auto-track-list>`
6286 *
6287 * **Initial value**: `none`
6288 */
6289 msGridColumns?: Property.MsGridColumns<TLength> | undefined;
6290 /**
6291 * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.
6292 *
6293 * **Syntax**: `none | <track-list> | <auto-track-list>`
6294 *
6295 * **Initial value**: `none`
6296 */
6297 msGridRows?: Property.MsGridRows<TLength> | undefined;
6298 /**
6299 * The **`-ms-high-contrast-adjust`** CSS property is a Microsoft extension that gets or sets a value indicating whether to override any CSS properties that would have been set in high contrast mode.
6300 *
6301 * **Syntax**: `auto | none`
6302 *
6303 * **Initial value**: `auto`
6304 */
6305 msHighContrastAdjust?: Property.MsHighContrastAdjust | undefined;
6306 /**
6307 * The **`-ms-hyphenate-limit-chars`** CSS property is a Microsoft extension that specifies one to three values indicating the minimum number of characters in a hyphenated word. If the word does not meet the required minimum number of characters in the word, before the hyphen, or after the hyphen, then the word is not hyphenated.
6308 *
6309 * **Syntax**: `auto | <integer>{1,3}`
6310 *
6311 * **Initial value**: `auto`
6312 */
6313 msHyphenateLimitChars?: Property.MsHyphenateLimitChars | undefined;
6314 /**
6315 * The **`-ms-hyphenate-limit-lines`** CSS property is a Microsoft extension specifying the maximum number of consecutive lines in an element that may be ended with a hyphenated word.
6316 *
6317 * **Syntax**: `no-limit | <integer>`
6318 *
6319 * **Initial value**: `no-limit`
6320 */
6321 msHyphenateLimitLines?: Property.MsHyphenateLimitLines | undefined;
6322 /**
6323 * The `**-ms-hyphenate-limit-zone**` CSS property is a Microsoft extension specifying the width of the hyphenation zone.
6324 *
6325 * **Syntax**: `<percentage> | <length>`
6326 *
6327 * **Initial value**: `0`
6328 */
6329 msHyphenateLimitZone?: Property.MsHyphenateLimitZone<TLength> | undefined;
6330 /**
6331 * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
6332 *
6333 * **Syntax**: `none | manual | auto`
6334 *
6335 * **Initial value**: `manual`
6336 */
6337 msHyphens?: Property.Hyphens | undefined;
6338 /**
6339 * The **`-ms-ime-align`** CSS property is a Microsoft extension aligning the Input Method Editor (IME) candidate window box relative to the element on which the IME composition is active. The extension is implemented in Microsoft Edge and Internet Explorer 11.
6340 *
6341 * **Syntax**: `auto | after`
6342 *
6343 * **Initial value**: `auto`
6344 */
6345 msImeAlign?: Property.MsImeAlign | undefined;
6346 /**
6347 * The CSS **`justify-self`** property sets the way a box is justified inside its alignment container along the appropriate axis.
6348 *
6349 * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]`
6350 *
6351 * **Initial value**: `auto`
6352 */
6353 msJustifySelf?: Property.JustifySelf | undefined;
6354 /**
6355 * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
6356 *
6357 * **Syntax**: `auto | loose | normal | strict | anywhere`
6358 *
6359 * **Initial value**: `auto`
6360 */
6361 msLineBreak?: Property.LineBreak | undefined;
6362 /**
6363 * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.
6364 *
6365 * **Syntax**: `<integer>`
6366 *
6367 * **Initial value**: `0`
6368 */
6369 msOrder?: Property.Order | undefined;
6370 /**
6371 * The **`-ms-overflow-style`** CSS property is a Microsoft extension controlling the behavior of scrollbars when the content of an element overflows.
6372 *
6373 * **Syntax**: `auto | none | scrollbar | -ms-autohiding-scrollbar`
6374 *
6375 * **Initial value**: `auto`
6376 */
6377 msOverflowStyle?: Property.MsOverflowStyle | undefined;
6378 /**
6379 * The **`overflow-x`** CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.
6380 *
6381 * **Syntax**: `visible | hidden | clip | scroll | auto`
6382 *
6383 * **Initial value**: `visible`
6384 */
6385 msOverflowX?: Property.OverflowX | undefined;
6386 /**
6387 * The **`overflow-y`** CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.
6388 *
6389 * **Syntax**: `visible | hidden | clip | scroll | auto`
6390 *
6391 * **Initial value**: `visible`
6392 */
6393 msOverflowY?: Property.OverflowY | undefined;
6394 /**
6395 * The `**-ms-scroll-chaining**` CSS property is a Microsoft extension that specifies the scrolling behavior that occurs when a user hits the scroll limit during a manipulation.
6396 *
6397 * **Syntax**: `chained | none`
6398 *
6399 * **Initial value**: `chained`
6400 */
6401 msScrollChaining?: Property.MsScrollChaining | undefined;
6402 /**
6403 * The `**-ms-scroll-limit-x-max**` CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollLeft` property.
6404 *
6405 * **Syntax**: `auto | <length>`
6406 *
6407 * **Initial value**: `auto`
6408 */
6409 msScrollLimitXMax?: Property.MsScrollLimitXMax<TLength> | undefined;
6410 /**
6411 * The **`-ms-scroll-limit-x-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollLeft` property.
6412 *
6413 * **Syntax**: `<length>`
6414 *
6415 * **Initial value**: `0`
6416 */
6417 msScrollLimitXMin?: Property.MsScrollLimitXMin<TLength> | undefined;
6418 /**
6419 * The **`-ms-scroll-limit-y-max`** CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollTop` property.
6420 *
6421 * **Syntax**: `auto | <length>`
6422 *
6423 * **Initial value**: `auto`
6424 */
6425 msScrollLimitYMax?: Property.MsScrollLimitYMax<TLength> | undefined;
6426 /**
6427 * The **`-ms-scroll-limit-y-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollTop` property.
6428 *
6429 * **Syntax**: `<length>`
6430 *
6431 * **Initial value**: `0`
6432 */
6433 msScrollLimitYMin?: Property.MsScrollLimitYMin<TLength> | undefined;
6434 /**
6435 * The **`-ms-scroll-rails`** CSS property is a Microsoft extension that specifies whether scrolling locks to the primary axis of motion.
6436 *
6437 * **Syntax**: `none | railed`
6438 *
6439 * **Initial value**: `railed`
6440 */
6441 msScrollRails?: Property.MsScrollRails | undefined;
6442 /**
6443 * The **`-ms-scroll-snap-points-x`** CSS property is a Microsoft extension that specifies where snap-points will be located along the x-axis.
6444 *
6445 * **Syntax**: `snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )`
6446 *
6447 * **Initial value**: `snapInterval(0px, 100%)`
6448 */
6449 msScrollSnapPointsX?: Property.MsScrollSnapPointsX | undefined;
6450 /**
6451 * The **`-ms-scroll-snap-points-y`** CSS property is a Microsoft extension that specifies where snap-points will be located along the y-axis.
6452 *
6453 * **Syntax**: `snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )`
6454 *
6455 * **Initial value**: `snapInterval(0px, 100%)`
6456 */
6457 msScrollSnapPointsY?: Property.MsScrollSnapPointsY | undefined;
6458 /**
6459 * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.
6460 *
6461 * **Syntax**: `none | proximity | mandatory`
6462 *
6463 * **Initial value**: `none`
6464 */
6465 msScrollSnapType?: Property.MsScrollSnapType | undefined;
6466 /**
6467 * The **`-ms-scroll-translation`** CSS property is a Microsoft extension that specifies whether vertical-to-horizontal scroll wheel translation occurs on the specified element.
6468 *
6469 * **Syntax**: `none | vertical-to-horizontal`
6470 *
6471 * **Initial value**: `none`
6472 */
6473 msScrollTranslation?: Property.MsScrollTranslation | undefined;
6474 /**
6475 * The **`-ms-scrollbar-3dlight-color`** CSS property is a Microsoft extension specifying the color of the top and left edges of the scroll box and scroll arrows of a scroll bar.
6476 *
6477 * **Syntax**: `<color>`
6478 *
6479 * **Initial value**: depends on user agent
6480 */
6481 msScrollbar3dlightColor?: Property.MsScrollbar3dlightColor | undefined;
6482 /**
6483 * The **`-ms-scrollbar-arrow-color`** CSS property is a Microsoft extension that specifies the color of the arrow elements of a scroll arrow.
6484 *
6485 * **Syntax**: `<color>`
6486 *
6487 * **Initial value**: `ButtonText`
6488 */
6489 msScrollbarArrowColor?: Property.MsScrollbarArrowColor | undefined;
6490 /**
6491 * The `**-ms-scrollbar-base-color**` CSS property is a Microsoft extension that specifies the base color of the main elements of a scroll bar.
6492 *
6493 * **Syntax**: `<color>`
6494 *
6495 * **Initial value**: depends on user agent
6496 */
6497 msScrollbarBaseColor?: Property.MsScrollbarBaseColor | undefined;
6498 /**
6499 * The **`-ms-scrollbar-darkshadow-color`** CSS property is a Microsoft extension that specifies the color of a scroll bar's gutter.
6500 *
6501 * **Syntax**: `<color>`
6502 *
6503 * **Initial value**: `ThreeDDarkShadow`
6504 */
6505 msScrollbarDarkshadowColor?: Property.MsScrollbarDarkshadowColor | undefined;
6506 /**
6507 * The `**-ms-scrollbar-face-color**` CSS property is a Microsoft extension that specifies the color of the scroll box and scroll arrows of a scroll bar.
6508 *
6509 * **Syntax**: `<color>`
6510 *
6511 * **Initial value**: `ThreeDFace`
6512 */
6513 msScrollbarFaceColor?: Property.MsScrollbarFaceColor | undefined;
6514 /**
6515 * The `**-ms-scrollbar-highlight-color**` CSS property is a Microsoft extension that specifies the color of the slider tray, the top and left edges of the scroll box, and the scroll arrows of a scroll bar.
6516 *
6517 * **Syntax**: `<color>`
6518 *
6519 * **Initial value**: `ThreeDHighlight`
6520 */
6521 msScrollbarHighlightColor?: Property.MsScrollbarHighlightColor | undefined;
6522 /**
6523 * The **`-ms-scrollbar-shadow-color`** CSS property is a Microsoft extension that specifies the color of the bottom and right edges of the scroll box and scroll arrows of a scroll bar.
6524 *
6525 * **Syntax**: `<color>`
6526 *
6527 * **Initial value**: `ThreeDDarkShadow`
6528 */
6529 msScrollbarShadowColor?: Property.MsScrollbarShadowColor | undefined;
6530 /**
6531 * The **`-ms-text-autospace`** CSS property is a Microsoft extension that specifies the autospacing and narrow space width adjustment of text.
6532 *
6533 * **Syntax**: `none | ideograph-alpha | ideograph-numeric | ideograph-parenthesis | ideograph-space`
6534 *
6535 * **Initial value**: `none`
6536 */
6537 msTextAutospace?: Property.MsTextAutospace | undefined;
6538 /**
6539 * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.
6540 *
6541 * **Syntax**: `none | all | [ digits <integer>? ]`
6542 *
6543 * **Initial value**: `none`
6544 */
6545 msTextCombineHorizontal?: Property.TextCombineUpright | undefined;
6546 /**
6547 * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.
6548 *
6549 * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`
6550 *
6551 * **Initial value**: `clip`
6552 */
6553 msTextOverflow?: Property.TextOverflow | undefined;
6554 /**
6555 * The **`touch-action`** CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser).
6556 *
6557 * **Syntax**: `auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation`
6558 *
6559 * **Initial value**: `auto`
6560 */
6561 msTouchAction?: Property.TouchAction | undefined;
6562 /**
6563 * The **`-ms-touch-select`** CSS property is a Microsoft extension that toggles the gripper visual elements that enable touch text selection.
6564 *
6565 * **Syntax**: `grippers | none`
6566 *
6567 * **Initial value**: `grippers`
6568 */
6569 msTouchSelect?: Property.MsTouchSelect | undefined;
6570 /**
6571 * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
6572 *
6573 * **Syntax**: `none | <transform-list>`
6574 *
6575 * **Initial value**: `none`
6576 */
6577 msTransform?: Property.Transform | undefined;
6578 /**
6579 * The **`transform-origin`** CSS property sets the origin for an element's transformations.
6580 *
6581 * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
6582 *
6583 * **Initial value**: `50% 50% 0`
6584 */
6585 msTransformOrigin?: Property.TransformOrigin<TLength> | undefined;
6586 /**
6587 * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
6588 *
6589 * **Syntax**: `<time>#`
6590 *
6591 * **Initial value**: `0s`
6592 */
6593 msTransitionDelay?: Property.TransitionDelay<TTime> | undefined;
6594 /**
6595 * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
6596 *
6597 * **Syntax**: `<time>#`
6598 *
6599 * **Initial value**: `0s`
6600 */
6601 msTransitionDuration?: Property.TransitionDuration<TTime> | undefined;
6602 /**
6603 * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
6604 *
6605 * **Syntax**: `none | <single-transition-property>#`
6606 *
6607 * **Initial value**: all
6608 */
6609 msTransitionProperty?: Property.TransitionProperty | undefined;
6610 /**
6611 * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
6612 *
6613 * **Syntax**: `<easing-function>#`
6614 *
6615 * **Initial value**: `ease`
6616 */
6617 msTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
6618 /**
6619 * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
6620 *
6621 * **Syntax**: `none | element | text`
6622 *
6623 * **Initial value**: `text`
6624 */
6625 msUserSelect?: Property.MsUserSelect | undefined;
6626 /**
6627 * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box.
6628 *
6629 * **Syntax**: `normal | break-all | keep-all | break-word`
6630 *
6631 * **Initial value**: `normal`
6632 */
6633 msWordBreak?: Property.WordBreak | undefined;
6634 /**
6635 * The **`-ms-wrap-flow`** CSS property is a Microsoft extension that specifies how exclusions impact inline content within block-level elements.
6636 *
6637 * **Syntax**: `auto | both | start | end | maximum | clear`
6638 *
6639 * **Initial value**: `auto`
6640 */
6641 msWrapFlow?: Property.MsWrapFlow | undefined;
6642 /**
6643 * The **`-ms-wrap-margin`** CSS property is a Microsoft extension that specifies a margin that offsets the inner wrap shape from other shapes.
6644 *
6645 * **Syntax**: `<length>`
6646 *
6647 * **Initial value**: `0`
6648 */
6649 msWrapMargin?: Property.MsWrapMargin<TLength> | undefined;
6650 /**
6651 * The **`-ms-wrap-through`** CSS property is a Microsoft extension that specifies how content should wrap around an exclusion element.
6652 *
6653 * **Syntax**: `wrap | none`
6654 *
6655 * **Initial value**: `wrap`
6656 */
6657 msWrapThrough?: Property.MsWrapThrough | undefined;
6658 /**
6659 * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).
6660 *
6661 * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`
6662 *
6663 * **Initial value**: `horizontal-tb`
6664 */
6665 msWritingMode?: Property.WritingMode | undefined;
6666 /**
6667 * The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.
6668 *
6669 * **Syntax**: `normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>`
6670 *
6671 * **Initial value**: `normal`
6672 */
6673 WebkitAlignContent?: Property.AlignContent | undefined;
6674 /**
6675 * The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area.
6676 *
6677 * **Syntax**: `normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]`
6678 *
6679 * **Initial value**: `normal`
6680 */
6681 WebkitAlignItems?: Property.AlignItems | undefined;
6682 /**
6683 * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.
6684 *
6685 * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`
6686 *
6687 * **Initial value**: `auto`
6688 */
6689 WebkitAlignSelf?: Property.AlignSelf | undefined;
6690 /**
6691 * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
6692 *
6693 * **Syntax**: `<time>#`
6694 *
6695 * **Initial value**: `0s`
6696 */
6697 WebkitAnimationDelay?: Property.AnimationDelay<TTime> | undefined;
6698 /**
6699 * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
6700 *
6701 * **Syntax**: `<single-animation-direction>#`
6702 *
6703 * **Initial value**: `normal`
6704 */
6705 WebkitAnimationDirection?: Property.AnimationDirection | undefined;
6706 /**
6707 * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
6708 *
6709 * **Syntax**: `<time>#`
6710 *
6711 * **Initial value**: `0s`
6712 */
6713 WebkitAnimationDuration?: Property.AnimationDuration<TTime> | undefined;
6714 /**
6715 * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
6716 *
6717 * **Syntax**: `<single-animation-fill-mode>#`
6718 *
6719 * **Initial value**: `none`
6720 */
6721 WebkitAnimationFillMode?: Property.AnimationFillMode | undefined;
6722 /**
6723 * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
6724 *
6725 * **Syntax**: `<single-animation-iteration-count>#`
6726 *
6727 * **Initial value**: `1`
6728 */
6729 WebkitAnimationIterationCount?: Property.AnimationIterationCount | undefined;
6730 /**
6731 * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
6732 *
6733 * **Syntax**: `[ none | <keyframes-name> ]#`
6734 *
6735 * **Initial value**: `none`
6736 */
6737 WebkitAnimationName?: Property.AnimationName | undefined;
6738 /**
6739 * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
6740 *
6741 * **Syntax**: `<single-animation-play-state>#`
6742 *
6743 * **Initial value**: `running`
6744 */
6745 WebkitAnimationPlayState?: Property.AnimationPlayState | undefined;
6746 /**
6747 * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
6748 *
6749 * **Syntax**: `<easing-function>#`
6750 *
6751 * **Initial value**: `ease`
6752 */
6753 WebkitAnimationTimingFunction?: Property.AnimationTimingFunction | undefined;
6754 /**
6755 * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.
6756 *
6757 * **Syntax**: `none | button | button-bevel | caret | checkbox | default-button | inner-spin-button | listbox | listitem | media-controls-background | media-controls-fullscreen-background | media-current-time-display | media-enter-fullscreen-button | media-exit-fullscreen-button | media-fullscreen-button | media-mute-button | media-overlay-play-button | media-play-button | media-seek-back-button | media-seek-forward-button | media-slider | media-sliderthumb | media-time-remaining-display | media-toggle-closed-captions-button | media-volume-slider | media-volume-slider-container | media-volume-sliderthumb | menulist | menulist-button | menulist-text | menulist-textfield | meter | progress-bar | progress-bar-value | push-button | radio | searchfield | searchfield-cancel-button | searchfield-decoration | searchfield-results-button | searchfield-results-decoration | slider-horizontal | slider-vertical | sliderthumb-horizontal | sliderthumb-vertical | square-button | textarea | textfield | -apple-pay-button`
6758 *
6759 * **Initial value**: `none` (but this value is overridden in the user agent CSS)
6760 */
6761 WebkitAppearance?: Property.WebkitAppearance | undefined;
6762 /**
6763 * The **`backdrop-filter`** CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything _behind_ the element, to see the effect you must make the element or its background at least partially transparent.
6764 *
6765 * **Syntax**: `none | <filter-function-list>`
6766 *
6767 * **Initial value**: `none`
6768 */
6769 WebkitBackdropFilter?: Property.BackdropFilter | undefined;
6770 /**
6771 * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
6772 *
6773 * **Syntax**: `visible | hidden`
6774 *
6775 * **Initial value**: `visible`
6776 */
6777 WebkitBackfaceVisibility?: Property.BackfaceVisibility | undefined;
6778 /**
6779 * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
6780 *
6781 * **Syntax**: `<box>#`
6782 *
6783 * **Initial value**: `border-box`
6784 */
6785 WebkitBackgroundClip?: Property.BackgroundClip | undefined;
6786 /**
6787 * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
6788 *
6789 * **Syntax**: `<box>#`
6790 *
6791 * **Initial value**: `padding-box`
6792 */
6793 WebkitBackgroundOrigin?: Property.BackgroundOrigin | undefined;
6794 /**
6795 * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
6796 *
6797 * **Syntax**: `<bg-size>#`
6798 *
6799 * **Initial value**: `auto auto`
6800 */
6801 WebkitBackgroundSize?: Property.BackgroundSize<TLength> | undefined;
6802 /**
6803 * **Syntax**: `<color>`
6804 *
6805 * **Initial value**: `currentcolor`
6806 */
6807 WebkitBorderBeforeColor?: Property.WebkitBorderBeforeColor | undefined;
6808 /**
6809 * **Syntax**: `<'border-style'>`
6810 *
6811 * **Initial value**: `none`
6812 */
6813 WebkitBorderBeforeStyle?: Property.WebkitBorderBeforeStyle | undefined;
6814 /**
6815 * **Syntax**: `<'border-width'>`
6816 *
6817 * **Initial value**: `medium`
6818 */
6819 WebkitBorderBeforeWidth?: Property.WebkitBorderBeforeWidth<TLength> | undefined;
6820 /**
6821 * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
6822 *
6823 * **Syntax**: `<length-percentage>{1,2}`
6824 *
6825 * **Initial value**: `0`
6826 */
6827 WebkitBorderBottomLeftRadius?: Property.BorderBottomLeftRadius<TLength> | undefined;
6828 /**
6829 * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
6830 *
6831 * **Syntax**: `<length-percentage>{1,2}`
6832 *
6833 * **Initial value**: `0`
6834 */
6835 WebkitBorderBottomRightRadius?: Property.BorderBottomRightRadius<TLength> | undefined;
6836 /**
6837 * The **`border-image-slice`** CSS property divides the image specified by `border-image-source` into regions. These regions form the components of an element's border image.
6838 *
6839 * **Syntax**: `<number-percentage>{1,4} && fill?`
6840 *
6841 * **Initial value**: `100%`
6842 */
6843 WebkitBorderImageSlice?: Property.BorderImageSlice | undefined;
6844 /**
6845 * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
6846 *
6847 * **Syntax**: `<length-percentage>{1,2}`
6848 *
6849 * **Initial value**: `0`
6850 */
6851 WebkitBorderTopLeftRadius?: Property.BorderTopLeftRadius<TLength> | undefined;
6852 /**
6853 * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
6854 *
6855 * **Syntax**: `<length-percentage>{1,2}`
6856 *
6857 * **Initial value**: `0`
6858 */
6859 WebkitBorderTopRightRadius?: Property.BorderTopRightRadius<TLength> | undefined;
6860 /**
6861 * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
6862 *
6863 * **Syntax**: `slice | clone`
6864 *
6865 * **Initial value**: `slice`
6866 */
6867 WebkitBoxDecorationBreak?: Property.BoxDecorationBreak | undefined;
6868 /**
6869 * The **`-webkit-box-reflect`** CSS property lets you reflect the content of an element in one specific direction.
6870 *
6871 * **Syntax**: `[ above | below | right | left ]? <length>? <image>?`
6872 *
6873 * **Initial value**: `none`
6874 */
6875 WebkitBoxReflect?: Property.WebkitBoxReflect<TLength> | undefined;
6876 /**
6877 * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.
6878 *
6879 * **Syntax**: `none | <shadow>#`
6880 *
6881 * **Initial value**: `none`
6882 */
6883 WebkitBoxShadow?: Property.BoxShadow | undefined;
6884 /**
6885 * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
6886 *
6887 * **Syntax**: `content-box | border-box`
6888 *
6889 * **Initial value**: `content-box`
6890 */
6891 WebkitBoxSizing?: Property.BoxSizing | undefined;
6892 /**
6893 * The `**clip-path**` CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden.
6894 *
6895 * **Syntax**: `<clip-source> | [ <basic-shape> || <geometry-box> ] | none`
6896 *
6897 * **Initial value**: `none`
6898 */
6899 WebkitClipPath?: Property.ClipPath | undefined;
6900 /**
6901 * The **`column-count`** CSS property breaks an element's content into the specified number of columns.
6902 *
6903 * **Syntax**: `<integer> | auto`
6904 *
6905 * **Initial value**: `auto`
6906 */
6907 WebkitColumnCount?: Property.ColumnCount | undefined;
6908 /**
6909 * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.
6910 *
6911 * **Syntax**: `auto | balance | balance-all`
6912 *
6913 * **Initial value**: `balance`
6914 */
6915 WebkitColumnFill?: Property.ColumnFill | undefined;
6916 /**
6917 * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
6918 *
6919 * **Syntax**: `normal | <length-percentage>`
6920 *
6921 * **Initial value**: `normal`
6922 */
6923 WebkitColumnGap?: Property.ColumnGap<TLength> | undefined;
6924 /**
6925 * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.
6926 *
6927 * **Syntax**: `<color>`
6928 *
6929 * **Initial value**: `currentcolor`
6930 */
6931 WebkitColumnRuleColor?: Property.ColumnRuleColor | undefined;
6932 /**
6933 * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.
6934 *
6935 * **Syntax**: `<'border-style'>`
6936 *
6937 * **Initial value**: `none`
6938 */
6939 WebkitColumnRuleStyle?: Property.ColumnRuleStyle | undefined;
6940 /**
6941 * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
6942 *
6943 * **Syntax**: `<'border-width'>`
6944 *
6945 * **Initial value**: `medium`
6946 */
6947 WebkitColumnRuleWidth?: Property.ColumnRuleWidth<TLength> | undefined;
6948 /**
6949 * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`.
6950 *
6951 * **Syntax**: `none | all`
6952 *
6953 * **Initial value**: `none`
6954 */
6955 WebkitColumnSpan?: Property.ColumnSpan | undefined;
6956 /**
6957 * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.
6958 *
6959 * **Syntax**: `<length> | auto`
6960 *
6961 * **Initial value**: `auto`
6962 */
6963 WebkitColumnWidth?: Property.ColumnWidth<TLength> | undefined;
6964 /**
6965 * The **`filter`** CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders.
6966 *
6967 * **Syntax**: `none | <filter-function-list>`
6968 *
6969 * **Initial value**: `none`
6970 */
6971 WebkitFilter?: Property.Filter | undefined;
6972 /**
6973 * The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`.
6974 *
6975 * **Syntax**: `content | <'width'>`
6976 *
6977 * **Initial value**: `auto`
6978 */
6979 WebkitFlexBasis?: Property.FlexBasis<TLength> | undefined;
6980 /**
6981 * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).
6982 *
6983 * **Syntax**: `row | row-reverse | column | column-reverse`
6984 *
6985 * **Initial value**: `row`
6986 */
6987 WebkitFlexDirection?: Property.FlexDirection | undefined;
6988 /**
6989 * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.
6990 *
6991 * **Syntax**: `<number>`
6992 *
6993 * **Initial value**: `0`
6994 */
6995 WebkitFlexGrow?: Property.FlexGrow | undefined;
6996 /**
6997 * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of all flex items is larger than the flex container, items shrink to fit according to `flex-shrink`.
6998 *
6999 * **Syntax**: `<number>`
7000 *
7001 * **Initial value**: `1`
7002 */
7003 WebkitFlexShrink?: Property.FlexShrink | undefined;
7004 /**
7005 * The **`flex-wrap`** CSS property sets whether flex items are forced onto one line or can wrap onto multiple lines. If wrapping is allowed, it sets the direction that lines are stacked.
7006 *
7007 * **Syntax**: `nowrap | wrap | wrap-reverse`
7008 *
7009 * **Initial value**: `nowrap`
7010 */
7011 WebkitFlexWrap?: Property.FlexWrap | undefined;
7012 /**
7013 * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
7014 *
7015 * **Syntax**: `normal | <feature-tag-value>#`
7016 *
7017 * **Initial value**: `normal`
7018 */
7019 WebkitFontFeatureSettings?: Property.FontFeatureSettings | undefined;
7020 /**
7021 * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font.
7022 *
7023 * **Syntax**: `auto | normal | none`
7024 *
7025 * **Initial value**: `auto`
7026 */
7027 WebkitFontKerning?: Property.FontKerning | undefined;
7028 /**
7029 * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.
7030 *
7031 * **Syntax**: `auto | never | always | <absolute-size> | <length>`
7032 *
7033 * **Initial value**: `auto`
7034 */
7035 WebkitFontSmoothing?: Property.FontSmooth<TLength> | undefined;
7036 /**
7037 * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text.
7038 *
7039 * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]`
7040 *
7041 * **Initial value**: `normal`
7042 */
7043 WebkitFontVariantLigatures?: Property.FontVariantLigatures | undefined;
7044 /**
7045 * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
7046 *
7047 * **Syntax**: `none | manual | auto`
7048 *
7049 * **Initial value**: `manual`
7050 */
7051 WebkitHyphens?: Property.Hyphens | undefined;
7052 /**
7053 * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters.
7054 *
7055 * **Syntax**: `normal | [ <number> <integer>? ]`
7056 *
7057 * **Initial value**: `normal`
7058 */
7059 WebkitInitialLetter?: Property.InitialLetter | undefined;
7060 /**
7061 * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.
7062 *
7063 * **Syntax**: `normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]`
7064 *
7065 * **Initial value**: `normal`
7066 */
7067 WebkitJustifyContent?: Property.JustifyContent | undefined;
7068 /**
7069 * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
7070 *
7071 * **Syntax**: `auto | loose | normal | strict | anywhere`
7072 *
7073 * **Initial value**: `auto`
7074 */
7075 WebkitLineBreak?: Property.LineBreak | undefined;
7076 /**
7077 * The **`-webkit-line-clamp`** CSS property allows limiting of the contents of a block container to the specified number of lines.
7078 *
7079 * **Syntax**: `none | <integer>`
7080 *
7081 * **Initial value**: `none`
7082 */
7083 WebkitLineClamp?: Property.WebkitLineClamp | undefined;
7084 /**
7085 * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
7086 *
7087 * **Syntax**: `<'margin-left'>`
7088 *
7089 * **Initial value**: `0`
7090 */
7091 WebkitMarginEnd?: Property.MarginInlineEnd<TLength> | undefined;
7092 /**
7093 * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
7094 *
7095 * **Syntax**: `<'margin-left'>`
7096 *
7097 * **Initial value**: `0`
7098 */
7099 WebkitMarginStart?: Property.MarginInlineStart<TLength> | undefined;
7100 /**
7101 * If a `-webkit-mask-image` is specified, `-webkit-mask-attachment` determines whether the mask image's position is fixed within the viewport, or scrolls along with its containing block.
7102 *
7103 * **Syntax**: `<attachment>#`
7104 *
7105 * **Initial value**: `scroll`
7106 */
7107 WebkitMaskAttachment?: Property.WebkitMaskAttachment | undefined;
7108 /**
7109 * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box.
7110 *
7111 * **Syntax**: `[ <length> | <number> ]{1,4}`
7112 *
7113 * **Initial value**: `0`
7114 */
7115 WebkitMaskBoxImageOutset?: Property.MaskBorderOutset<TLength> | undefined;
7116 /**
7117 * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border.
7118 *
7119 * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`
7120 *
7121 * **Initial value**: `stretch`
7122 */
7123 WebkitMaskBoxImageRepeat?: Property.MaskBorderRepeat | undefined;
7124 /**
7125 * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border.
7126 *
7127 * **Syntax**: `<number-percentage>{1,4} fill?`
7128 *
7129 * **Initial value**: `0`
7130 */
7131 WebkitMaskBoxImageSlice?: Property.MaskBorderSlice | undefined;
7132 /**
7133 * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border.
7134 *
7135 * **Syntax**: `none | <image>`
7136 *
7137 * **Initial value**: `none`
7138 */
7139 WebkitMaskBoxImageSource?: Property.MaskBorderSource | undefined;
7140 /**
7141 * The **`mask-border-width`** CSS property sets the width of an element's mask border.
7142 *
7143 * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`
7144 *
7145 * **Initial value**: `auto`
7146 */
7147 WebkitMaskBoxImageWidth?: Property.MaskBorderWidth<TLength> | undefined;
7148 /**
7149 * The **`mask-clip`** CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area.
7150 *
7151 * **Syntax**: `[ <box> | border | padding | content | text ]#`
7152 *
7153 * **Initial value**: `border`
7154 */
7155 WebkitMaskClip?: Property.WebkitMaskClip | undefined;
7156 /**
7157 * The **`-webkit-mask-composite`** property specifies the manner in which multiple mask images applied to the same element are composited with one another. Mask images are composited in the opposite order that they are declared with the `-webkit-mask-image` property.
7158 *
7159 * **Syntax**: `<composite-style>#`
7160 *
7161 * **Initial value**: `source-over`
7162 */
7163 WebkitMaskComposite?: Property.WebkitMaskComposite | undefined;
7164 /**
7165 * The **`mask-image`** CSS property sets the image that is used as mask layer for an element.
7166 *
7167 * **Syntax**: `<mask-reference>#`
7168 *
7169 * **Initial value**: `none`
7170 */
7171 WebkitMaskImage?: Property.WebkitMaskImage | undefined;
7172 /**
7173 * The **`mask-origin`** CSS property sets the origin of a mask.
7174 *
7175 * **Syntax**: `[ <box> | border | padding | content ]#`
7176 *
7177 * **Initial value**: `padding`
7178 */
7179 WebkitMaskOrigin?: Property.WebkitMaskOrigin | undefined;
7180 /**
7181 * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image.
7182 *
7183 * **Syntax**: `<position>#`
7184 *
7185 * **Initial value**: `0% 0%`
7186 */
7187 WebkitMaskPosition?: Property.WebkitMaskPosition<TLength> | undefined;
7188 /**
7189 * The `-webkit-mask-position-x` CSS property sets the initial horizontal position of a mask image.
7190 *
7191 * **Syntax**: `[ <length-percentage> | left | center | right ]#`
7192 *
7193 * **Initial value**: `0%`
7194 */
7195 WebkitMaskPositionX?: Property.WebkitMaskPositionX<TLength> | undefined;
7196 /**
7197 * The `-webkit-mask-position-y` CSS property sets the initial vertical position of a mask image.
7198 *
7199 * **Syntax**: `[ <length-percentage> | top | center | bottom ]#`
7200 *
7201 * **Initial value**: `0%`
7202 */
7203 WebkitMaskPositionY?: Property.WebkitMaskPositionY<TLength> | undefined;
7204 /**
7205 * The **`mask-repeat`** CSS property sets how mask images are repeated. A mask image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all.
7206 *
7207 * **Syntax**: `<repeat-style>#`
7208 *
7209 * **Initial value**: `repeat`
7210 */
7211 WebkitMaskRepeat?: Property.WebkitMaskRepeat | undefined;
7212 /**
7213 * The `-webkit-mask-repeat-x` property specifies whether and how a mask image is repeated (tiled) horizontally.
7214 *
7215 * **Syntax**: `repeat | no-repeat | space | round`
7216 *
7217 * **Initial value**: `repeat`
7218 */
7219 WebkitMaskRepeatX?: Property.WebkitMaskRepeatX | undefined;
7220 /**
7221 * The `-webkit-mask-repeat-y` property sets whether and how a mask image is repeated (tiled) vertically.
7222 *
7223 * **Syntax**: `repeat | no-repeat | space | round`
7224 *
7225 * **Initial value**: `repeat`
7226 */
7227 WebkitMaskRepeatY?: Property.WebkitMaskRepeatY | undefined;
7228 /**
7229 * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio.
7230 *
7231 * **Syntax**: `<bg-size>#`
7232 *
7233 * **Initial value**: `auto auto`
7234 */
7235 WebkitMaskSize?: Property.WebkitMaskSize<TLength> | undefined;
7236 /**
7237 * The **`max-inline-size`** CSS property defines the horizontal or vertical maximum size of an element's block, depending on its writing mode. It corresponds to either the `max-width` or the `max-height` property, depending on the value of `writing-mode`.
7238 *
7239 * **Syntax**: `<'max-width'>`
7240 *
7241 * **Initial value**: `0`
7242 */
7243 WebkitMaxInlineSize?: Property.MaxInlineSize<TLength> | undefined;
7244 /**
7245 * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.
7246 *
7247 * **Syntax**: `<integer>`
7248 *
7249 * **Initial value**: `0`
7250 */
7251 WebkitOrder?: Property.Order | undefined;
7252 /**
7253 * The `-webkit-overflow-scrolling` CSS property controls whether or not touch devices use momentum-based scrolling for a given element.
7254 *
7255 * **Syntax**: `auto | touch`
7256 *
7257 * **Initial value**: `auto`
7258 */
7259 WebkitOverflowScrolling?: Property.WebkitOverflowScrolling | undefined;
7260 /**
7261 * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
7262 *
7263 * **Syntax**: `<'padding-left'>`
7264 *
7265 * **Initial value**: `0`
7266 */
7267 WebkitPaddingEnd?: Property.PaddingInlineEnd<TLength> | undefined;
7268 /**
7269 * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
7270 *
7271 * **Syntax**: `<'padding-left'>`
7272 *
7273 * **Initial value**: `0`
7274 */
7275 WebkitPaddingStart?: Property.PaddingInlineStart<TLength> | undefined;
7276 /**
7277 * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
7278 *
7279 * **Syntax**: `none | <length>`
7280 *
7281 * **Initial value**: `none`
7282 */
7283 WebkitPerspective?: Property.Perspective<TLength> | undefined;
7284 /**
7285 * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
7286 *
7287 * **Syntax**: `<position>`
7288 *
7289 * **Initial value**: `50% 50%`
7290 */
7291 WebkitPerspectiveOrigin?: Property.PerspectiveOrigin<TLength> | undefined;
7292 /**
7293 * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.
7294 *
7295 * **Syntax**: `economy | exact`
7296 *
7297 * **Initial value**: `economy`
7298 */
7299 WebkitPrintColorAdjust?: Property.ColorAdjust | undefined;
7300 /**
7301 * The `**ruby-position**` CSS property defines the position of a ruby element relatives to its base element. It can be position over the element (`over`), under it (`under`), or between the characters, on their right side (`inter-character`).
7302 *
7303 * **Syntax**: `[ alternate || [ over | under ] ] | inter-character`
7304 *
7305 * **Initial value**: `alternate`
7306 */
7307 WebkitRubyPosition?: Property.RubyPosition | undefined;
7308 /**
7309 * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.
7310 *
7311 * **Syntax**: `none | [ x | y | block | inline | both ] [ mandatory | proximity ]?`
7312 *
7313 * **Initial value**: `none`
7314 */
7315 WebkitScrollSnapType?: Property.ScrollSnapType | undefined;
7316 /**
7317 * The **`shape-margin`** CSS property sets a margin for a CSS shape created using `shape-outside`.
7318 *
7319 * **Syntax**: `<length-percentage>`
7320 *
7321 * **Initial value**: `0`
7322 */
7323 WebkitShapeMargin?: Property.ShapeMargin<TLength> | undefined;
7324 /**
7325 * **`-webkit-tap-highlight-color`** is a non-standard CSS property that sets the color of the highlight that appears over a link while it's being tapped. The highlighting indicates to the user that their tap is being successfully recognized, and indicates which element they're tapping on.
7326 *
7327 * **Syntax**: `<color>`
7328 *
7329 * **Initial value**: `black`
7330 */
7331 WebkitTapHighlightColor?: Property.WebkitTapHighlightColor | undefined;
7332 /**
7333 * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.
7334 *
7335 * **Syntax**: `none | all | [ digits <integer>? ]`
7336 *
7337 * **Initial value**: `none`
7338 */
7339 WebkitTextCombine?: Property.TextCombineUpright | undefined;
7340 /**
7341 * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
7342 *
7343 * **Syntax**: `<color>`
7344 *
7345 * **Initial value**: `currentcolor`
7346 */
7347 WebkitTextDecorationColor?: Property.TextDecorationColor | undefined;
7348 /**
7349 * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
7350 *
7351 * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
7352 *
7353 * **Initial value**: `none`
7354 */
7355 WebkitTextDecorationLine?: Property.TextDecorationLine | undefined;
7356 /**
7357 * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors.
7358 *
7359 * **Syntax**: `none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]`
7360 *
7361 * **Initial value**: `objects`
7362 */
7363 WebkitTextDecorationSkip?: Property.TextDecorationSkip | undefined;
7364 /**
7365 * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
7366 *
7367 * **Syntax**: `solid | double | dotted | dashed | wavy`
7368 *
7369 * **Initial value**: `solid`
7370 */
7371 WebkitTextDecorationStyle?: Property.TextDecorationStyle | undefined;
7372 /**
7373 * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand.
7374 *
7375 * **Syntax**: `<color>`
7376 *
7377 * **Initial value**: `currentcolor`
7378 */
7379 WebkitTextEmphasisColor?: Property.TextEmphasisColor | undefined;
7380 /**
7381 * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased.
7382 *
7383 * **Syntax**: `[ over | under ] && [ right | left ]`
7384 *
7385 * **Initial value**: `over right`
7386 */
7387 WebkitTextEmphasisPosition?: Property.TextEmphasisPosition | undefined;
7388 /**
7389 * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand.
7390 *
7391 * **Syntax**: `none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>`
7392 *
7393 * **Initial value**: `none`
7394 */
7395 WebkitTextEmphasisStyle?: Property.TextEmphasisStyle | undefined;
7396 /**
7397 * The **`-webkit-text-fill-color`** CSS property specifies the fill color of characters of text. If this property is not set, the value of the `color` property is used.
7398 *
7399 * **Syntax**: `<color>`
7400 *
7401 * **Initial value**: `currentcolor`
7402 */
7403 WebkitTextFillColor?: Property.WebkitTextFillColor | undefined;
7404 /**
7405 * The **`text-orientation`** CSS property sets the orientation of the text characters in a line. It only affects text in vertical mode (when `writing-mode` is not `horizontal-tb`). It is useful for controlling the display of languages that use vertical script, and also for making vertical table headers.
7406 *
7407 * **Syntax**: `mixed | upright | sideways`
7408 *
7409 * **Initial value**: `mixed`
7410 */
7411 WebkitTextOrientation?: Property.TextOrientation | undefined;
7412 /**
7413 * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
7414 *
7415 * **Syntax**: `none | auto | <percentage>`
7416 *
7417 * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
7418 */
7419 WebkitTextSizeAdjust?: Property.TextSizeAdjust | undefined;
7420 /**
7421 * The **`-webkit-text-stroke-color`** CSS property specifies the stroke color of characters of text. If this property is not set, the value of the `color` property is used.
7422 *
7423 * **Syntax**: `<color>`
7424 *
7425 * **Initial value**: `currentcolor`
7426 */
7427 WebkitTextStrokeColor?: Property.WebkitTextStrokeColor | undefined;
7428 /**
7429 * The **`-webkit-text-stroke-width`** CSS property specifies the width of the stroke for text.
7430 *
7431 * **Syntax**: `<length>`
7432 *
7433 * **Initial value**: `0`
7434 */
7435 WebkitTextStrokeWidth?: Property.WebkitTextStrokeWidth<TLength> | undefined;
7436 /**
7437 * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value.
7438 *
7439 * **Syntax**: `auto | from-font | [ under || [ left | right ] ]`
7440 *
7441 * **Initial value**: `auto`
7442 */
7443 WebkitTextUnderlinePosition?: Property.TextUnderlinePosition | undefined;
7444 /**
7445 * The `-webkit-touch-callout` CSS property controls the display of the default callout shown when you touch and hold a touch target.
7446 *
7447 * **Syntax**: `default | none`
7448 *
7449 * **Initial value**: `default`
7450 */
7451 WebkitTouchCallout?: Property.WebkitTouchCallout | undefined;
7452 /**
7453 * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
7454 *
7455 * **Syntax**: `none | <transform-list>`
7456 *
7457 * **Initial value**: `none`
7458 */
7459 WebkitTransform?: Property.Transform | undefined;
7460 /**
7461 * The **`transform-origin`** CSS property sets the origin for an element's transformations.
7462 *
7463 * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
7464 *
7465 * **Initial value**: `50% 50% 0`
7466 */
7467 WebkitTransformOrigin?: Property.TransformOrigin<TLength> | undefined;
7468 /**
7469 * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
7470 *
7471 * **Syntax**: `flat | preserve-3d`
7472 *
7473 * **Initial value**: `flat`
7474 */
7475 WebkitTransformStyle?: Property.TransformStyle | undefined;
7476 /**
7477 * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
7478 *
7479 * **Syntax**: `<time>#`
7480 *
7481 * **Initial value**: `0s`
7482 */
7483 WebkitTransitionDelay?: Property.TransitionDelay<TTime> | undefined;
7484 /**
7485 * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
7486 *
7487 * **Syntax**: `<time>#`
7488 *
7489 * **Initial value**: `0s`
7490 */
7491 WebkitTransitionDuration?: Property.TransitionDuration<TTime> | undefined;
7492 /**
7493 * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
7494 *
7495 * **Syntax**: `none | <single-transition-property>#`
7496 *
7497 * **Initial value**: all
7498 */
7499 WebkitTransitionProperty?: Property.TransitionProperty | undefined;
7500 /**
7501 * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
7502 *
7503 * **Syntax**: `<easing-function>#`
7504 *
7505 * **Initial value**: `ease`
7506 */
7507 WebkitTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
7508 /**
7509 * **Syntax**: `read-only | read-write | read-write-plaintext-only`
7510 *
7511 * **Initial value**: `read-only`
7512 */
7513 WebkitUserModify?: Property.WebkitUserModify | undefined;
7514 /**
7515 * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
7516 *
7517 * **Syntax**: `auto | text | none | contain | all`
7518 *
7519 * **Initial value**: `auto`
7520 */
7521 WebkitUserSelect?: Property.UserSelect | undefined;
7522 /**
7523 * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).
7524 *
7525 * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`
7526 *
7527 * **Initial value**: `horizontal-tb`
7528 */
7529 WebkitWritingMode?: Property.WritingMode | undefined;
7530}
7531export interface VendorShorthandProperties<TLength = (string & {}) | 0, TTime = string & {}> {
7532 /**
7533 * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
7534 *
7535 * **Syntax**: `<single-animation>#`
7536 */
7537 MozAnimation?: Property.Animation<TTime> | undefined;
7538 /**
7539 * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
7540 *
7541 * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
7542 */
7543 MozBorderImage?: Property.BorderImage | undefined;
7544 /**
7545 * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
7546 *
7547 * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`
7548 */
7549 MozColumnRule?: Property.ColumnRule<TLength> | undefined;
7550 /**
7551 * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
7552 *
7553 * **Syntax**: `<'column-width'> || <'column-count'>`
7554 */
7555 MozColumns?: Property.Columns<TLength> | undefined;
7556 /**
7557 * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
7558 *
7559 * **Syntax**: `<single-transition>#`
7560 */
7561 MozTransition?: Property.Transition<TTime> | undefined;
7562 /**
7563 * The **`-ms-content-zoom-limit`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-content-zoom-limit-min` and `-ms-content-zoom-limit-max` properties.
7564 *
7565 * **Syntax**: `<'-ms-content-zoom-limit-min'> <'-ms-content-zoom-limit-max'>`
7566 */
7567 msContentZoomLimit?: Property.MsContentZoomLimit | undefined;
7568 /**
7569 * The **`-ms-content-zoom-snap`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-content-zoom-snap-type` and `-ms-content-zoom-snap-points` properties.
7570 *
7571 * **Syntax**: `<'-ms-content-zoom-snap-type'> || <'-ms-content-zoom-snap-points'>`
7572 */
7573 msContentZoomSnap?: Property.MsContentZoomSnap | undefined;
7574 /**
7575 * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
7576 *
7577 * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
7578 */
7579 msFlex?: Property.Flex<TLength> | undefined;
7580 /**
7581 * The **\-ms-scroll-limit** CSS property is a Microsoft extension that specifies values for the `-ms-scroll-limit-x-min`, `-ms-scroll-limit-y-min`, `-ms-scroll-limit-x-max`, and `-ms-scroll-limit-y-max` properties.
7582 *
7583 * **Syntax**: `<'-ms-scroll-limit-x-min'> <'-ms-scroll-limit-y-min'> <'-ms-scroll-limit-x-max'> <'-ms-scroll-limit-y-max'>`
7584 */
7585 msScrollLimit?: Property.MsScrollLimit | undefined;
7586 /**
7587 * The **`-ms-scroll-snap-x`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-scroll-snap-type` and `-ms-scroll-snap-points-x` properties.
7588 *
7589 * **Syntax**: `<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-x'>`
7590 */
7591 msScrollSnapX?: Property.MsScrollSnapX | undefined;
7592 /**
7593 * The **`-ms-scroll-snap-x`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-scroll-snap-type` and `-ms-scroll-snap-points-y` properties.
7594 *
7595 * **Syntax**: `<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-y'>`
7596 */
7597 msScrollSnapY?: Property.MsScrollSnapY | undefined;
7598 /**
7599 * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
7600 *
7601 * **Syntax**: `<single-transition>#`
7602 */
7603 msTransition?: Property.Transition<TTime> | undefined;
7604 /**
7605 * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
7606 *
7607 * **Syntax**: `<single-animation>#`
7608 */
7609 WebkitAnimation?: Property.Animation<TTime> | undefined;
7610 /**
7611 * The **`-webkit-border-before`** CSS property is a shorthand property for setting the individual logical block start border property values in a single place in the style sheet.
7612 *
7613 * **Syntax**: `<'border-width'> || <'border-style'> || <color>`
7614 */
7615 WebkitBorderBefore?: Property.WebkitBorderBefore<TLength> | undefined;
7616 /**
7617 * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
7618 *
7619 * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
7620 */
7621 WebkitBorderImage?: Property.BorderImage | undefined;
7622 /**
7623 * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
7624 *
7625 * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`
7626 */
7627 WebkitBorderRadius?: Property.BorderRadius<TLength> | undefined;
7628 /**
7629 * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
7630 *
7631 * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`
7632 */
7633 WebkitColumnRule?: Property.ColumnRule<TLength> | undefined;
7634 /**
7635 * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
7636 *
7637 * **Syntax**: `<'column-width'> || <'column-count'>`
7638 */
7639 WebkitColumns?: Property.Columns<TLength> | undefined;
7640 /**
7641 * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
7642 *
7643 * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
7644 */
7645 WebkitFlex?: Property.Flex<TLength> | undefined;
7646 /**
7647 * The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.
7648 *
7649 * **Syntax**: `<'flex-direction'> || <'flex-wrap'>`
7650 */
7651 WebkitFlexFlow?: Property.FlexFlow | undefined;
7652 /**
7653 * The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.
7654 *
7655 * **Syntax**: `[ <mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || [ <box> | border | padding | content | text ] || [ <box> | border | padding | content ] ]#`
7656 */
7657 WebkitMask?: Property.WebkitMask<TLength> | undefined;
7658 /**
7659 * The **`mask-border`** CSS shorthand property lets you create a mask along the edge of an element's border.
7660 *
7661 * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`
7662 */
7663 WebkitMaskBoxImage?: Property.MaskBorder | undefined;
7664 /**
7665 * The **`text-emphasis`** CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for `text-emphasis-style` and `text-emphasis-color`.
7666 *
7667 * **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`
7668 */
7669 WebkitTextEmphasis?: Property.TextEmphasis | undefined;
7670 /**
7671 * The **`-webkit-text-stroke`** CSS property specifies the width and color of strokes for text characters. This is a shorthand property for the longhand properties `-webkit-text-stroke-width` and `-webkit-text-stroke-color`.
7672 *
7673 * **Syntax**: `<length> || <color>`
7674 */
7675 WebkitTextStroke?: Property.WebkitTextStroke<TLength> | undefined;
7676 /**
7677 * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
7678 *
7679 * **Syntax**: `<single-transition>#`
7680 */
7681 WebkitTransition?: Property.Transition<TTime> | undefined;
7682}
7683export interface VendorProperties<TLength = (string & {}) | 0, TTime = string & {}> extends VendorLonghandProperties<TLength, TTime>, VendorShorthandProperties<TLength, TTime> {
7684}
7685export interface ObsoleteProperties<TLength = (string & {}) | 0, TTime = string & {}> {
7686 /**
7687 * In combination with `elevation`, the **`azimuth`** CSS property enables different audio sources to be positioned spatially for aural presentation. This is important in that it provides a natural way to tell several voices apart, as each can be positioned to originate at a different location on the sound stage. Stereo output produce a lateral sound stage, while binaural headphones and multi-speaker setups allow for a fully three-dimensional stage.
7688 *
7689 * **Syntax**: `<angle> | [ [ left-side | far-left | left | center-left | center | center-right | right | far-right | right-side ] || behind ] | leftwards | rightwards`
7690 *
7691 * **Initial value**: `center`
7692 *
7693 * @deprecated
7694 */
7695 azimuth?: Property.Azimuth | undefined;
7696 /**
7697 * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
7698 *
7699 * **Syntax**: `start | center | end | baseline | stretch`
7700 *
7701 * **Initial value**: `stretch`
7702 *
7703 * @deprecated
7704 */
7705 boxAlign?: Property.BoxAlign | undefined;
7706 /**
7707 * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
7708 *
7709 * **Syntax**: `normal | reverse | inherit`
7710 *
7711 * **Initial value**: `normal`
7712 *
7713 * @deprecated
7714 */
7715 boxDirection?: Property.BoxDirection | undefined;
7716 /**
7717 * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
7718 *
7719 * **Syntax**: `<number>`
7720 *
7721 * **Initial value**: `0`
7722 *
7723 * @deprecated
7724 */
7725 boxFlex?: Property.BoxFlex | undefined;
7726 /**
7727 * The **`box-flex-group`** CSS property assigns the flexbox's child elements to a flex group.
7728 *
7729 * **Syntax**: `<integer>`
7730 *
7731 * **Initial value**: `1`
7732 *
7733 * @deprecated
7734 */
7735 boxFlexGroup?: Property.BoxFlexGroup | undefined;
7736 /**
7737 * The **`box-lines`** CSS property determines whether the box may have a single or multiple lines (rows for horizontally oriented boxes, columns for vertically oriented boxes).
7738 *
7739 * **Syntax**: `single | multiple`
7740 *
7741 * **Initial value**: `single`
7742 *
7743 * @deprecated
7744 */
7745 boxLines?: Property.BoxLines | undefined;
7746 /**
7747 * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
7748 *
7749 * **Syntax**: `<integer>`
7750 *
7751 * **Initial value**: `1`
7752 *
7753 * @deprecated
7754 */
7755 boxOrdinalGroup?: Property.BoxOrdinalGroup | undefined;
7756 /**
7757 * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
7758 *
7759 * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
7760 *
7761 * **Initial value**: `inline-axis` (`horizontal` in XUL)
7762 *
7763 * @deprecated
7764 */
7765 boxOrient?: Property.BoxOrient | undefined;
7766 /**
7767 * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
7768 *
7769 * **Syntax**: `start | center | end | justify`
7770 *
7771 * **Initial value**: `start`
7772 *
7773 * @deprecated
7774 */
7775 boxPack?: Property.BoxPack | undefined;
7776 /**
7777 * The **`clip`** CSS property defines a visible portion of an element. The `clip` property applies only to absolutely positioned elements — that is, elements with `position:absolute` or `position:fixed`.
7778 *
7779 * **Syntax**: `<shape> | auto`
7780 *
7781 * **Initial value**: `auto`
7782 *
7783 * @deprecated
7784 */
7785 clip?: Property.Clip | undefined;
7786 /**
7787 * The **`font-variant-alternates`** CSS property controls the usage of alternate glyphs. These alternate glyphs may be referenced by alternative names defined in `@font-feature-values`.
7788 *
7789 * **Syntax**: `normal | [ stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) ]`
7790 *
7791 * **Initial value**: `normal`
7792 *
7793 * @deprecated
7794 */
7795 fontVariantAlternates?: Property.FontVariantAlternates | undefined;
7796 /**
7797 * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
7798 *
7799 * **Syntax**: `<length-percentage>`
7800 *
7801 * **Initial value**: `0`
7802 *
7803 * @deprecated
7804 */
7805 gridColumnGap?: Property.GridColumnGap<TLength> | undefined;
7806 /**
7807 * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`.
7808 *
7809 * **Syntax**: `<'grid-row-gap'> <'grid-column-gap'>?`
7810 *
7811 * @deprecated
7812 */
7813 gridGap?: Property.GridGap<TLength> | undefined;
7814 /**
7815 * The **`row-gap`** CSS property sets the size of the gap (gutter) between an element's grid rows.
7816 *
7817 * **Syntax**: `<length-percentage>`
7818 *
7819 * **Initial value**: `0`
7820 *
7821 * @deprecated
7822 */
7823 gridRowGap?: Property.GridRowGap<TLength> | undefined;
7824 /**
7825 * The **`ime-mode`** CSS property controls the state of the input method editor (IME) for text fields. This property is obsolete.
7826 *
7827 * **Syntax**: `auto | normal | active | inactive | disabled`
7828 *
7829 * **Initial value**: `auto`
7830 *
7831 * @deprecated
7832 */
7833 imeMode?: Property.ImeMode | undefined;
7834 /**
7835 * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
7836 *
7837 * **Syntax**: `<'top'>{1,2}`
7838 *
7839 * **Initial value**: `auto`
7840 *
7841 * @deprecated
7842 */
7843 offsetBlock?: Property.InsetBlock<TLength> | undefined;
7844 /**
7845 * The **`inset-block-end`** CSS property defines the logical block end offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
7846 *
7847 * **Syntax**: `<'top'>`
7848 *
7849 * **Initial value**: `auto`
7850 *
7851 * @deprecated
7852 */
7853 offsetBlockEnd?: Property.InsetBlockEnd<TLength> | undefined;
7854 /**
7855 * The **`inset-block-start`** CSS property defines the logical block start offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
7856 *
7857 * **Syntax**: `<'top'>`
7858 *
7859 * **Initial value**: `auto`
7860 *
7861 * @deprecated
7862 */
7863 offsetBlockStart?: Property.InsetBlockStart<TLength> | undefined;
7864 /**
7865 * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
7866 *
7867 * **Syntax**: `<'top'>{1,2}`
7868 *
7869 * **Initial value**: `auto`
7870 *
7871 * @deprecated
7872 */
7873 offsetInline?: Property.InsetInline<TLength> | undefined;
7874 /**
7875 * The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
7876 *
7877 * **Syntax**: `<'top'>`
7878 *
7879 * **Initial value**: `auto`
7880 *
7881 * @deprecated
7882 */
7883 offsetInlineEnd?: Property.InsetInlineEnd<TLength> | undefined;
7884 /**
7885 * The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
7886 *
7887 * **Syntax**: `<'top'>`
7888 *
7889 * **Initial value**: `auto`
7890 *
7891 * @deprecated
7892 */
7893 offsetInlineStart?: Property.InsetInlineStart<TLength> | undefined;
7894 /**
7895 * The **`scroll-snap-coordinate`** CSS property defines the x and y coordinate positions within an element that will align with its nearest ancestor scroll container's `scroll-snap-destination` for each respective axis.
7896 *
7897 * **Syntax**: `none | <position>#`
7898 *
7899 * **Initial value**: `none`
7900 *
7901 * @deprecated
7902 */
7903 scrollSnapCoordinate?: Property.ScrollSnapCoordinate<TLength> | undefined;
7904 /**
7905 * The **`scroll-snap-destination`** CSS property defines the position in x and y coordinates within the scroll container's visual viewport which element snap points align with.
7906 *
7907 * **Syntax**: `<position>`
7908 *
7909 * **Initial value**: `0px 0px`
7910 *
7911 * @deprecated
7912 */
7913 scrollSnapDestination?: Property.ScrollSnapDestination<TLength> | undefined;
7914 /**
7915 * The **`scroll-snap-points-x`** CSS property defines the horizontal positioning of snap points within the content of the scroll container they are applied to.
7916 *
7917 * **Syntax**: `none | repeat( <length-percentage> )`
7918 *
7919 * **Initial value**: `none`
7920 *
7921 * @deprecated
7922 */
7923 scrollSnapPointsX?: Property.ScrollSnapPointsX | undefined;
7924 /**
7925 * The **`scroll-snap-points-y`** CSS property defines the vertical positioning of snap points within the content of the scroll container they are applied to.
7926 *
7927 * **Syntax**: `none | repeat( <length-percentage> )`
7928 *
7929 * **Initial value**: `none`
7930 *
7931 * @deprecated
7932 */
7933 scrollSnapPointsY?: Property.ScrollSnapPointsY | undefined;
7934 /**
7935 * The **`scroll-snap-type-x`** CSS property defines how strictly snap points are enforced on the horizontal axis of the scroll container in case there is one.
7936 *
7937 * **Syntax**: `none | mandatory | proximity`
7938 *
7939 * **Initial value**: `none`
7940 *
7941 * @deprecated
7942 */
7943 scrollSnapTypeX?: Property.ScrollSnapTypeX | undefined;
7944 /**
7945 * The **`scroll-snap-type-y`** CSS property defines how strictly snap points are enforced on the vertical axis of the scroll container in case there is one.
7946 *
7947 * **Syntax**: `none | mandatory | proximity`
7948 *
7949 * **Initial value**: `none`
7950 *
7951 * @deprecated
7952 */
7953 scrollSnapTypeY?: Property.ScrollSnapTypeY | undefined;
7954 /**
7955 * The **`-ms-scrollbar-track-color`** CSS property is a Microsoft extension that specifies the color of the track element of a scrollbar.
7956 *
7957 * **Syntax**: `<color>`
7958 *
7959 * **Initial value**: `Scrollbar`
7960 *
7961 * @deprecated
7962 */
7963 scrollbarTrackColor?: Property.MsScrollbarTrackColor | undefined;
7964 /**
7965 * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
7966 *
7967 * **Syntax**: `start | center | end | baseline | stretch`
7968 *
7969 * **Initial value**: `stretch`
7970 *
7971 * @deprecated
7972 */
7973 KhtmlBoxAlign?: Property.BoxAlign | undefined;
7974 /**
7975 * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
7976 *
7977 * **Syntax**: `normal | reverse | inherit`
7978 *
7979 * **Initial value**: `normal`
7980 *
7981 * @deprecated
7982 */
7983 KhtmlBoxDirection?: Property.BoxDirection | undefined;
7984 /**
7985 * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
7986 *
7987 * **Syntax**: `<number>`
7988 *
7989 * **Initial value**: `0`
7990 *
7991 * @deprecated
7992 */
7993 KhtmlBoxFlex?: Property.BoxFlex | undefined;
7994 /**
7995 * The **`box-flex-group`** CSS property assigns the flexbox's child elements to a flex group.
7996 *
7997 * **Syntax**: `<integer>`
7998 *
7999 * **Initial value**: `1`
8000 *
8001 * @deprecated
8002 */
8003 KhtmlBoxFlexGroup?: Property.BoxFlexGroup | undefined;
8004 /**
8005 * The **`box-lines`** CSS property determines whether the box may have a single or multiple lines (rows for horizontally oriented boxes, columns for vertically oriented boxes).
8006 *
8007 * **Syntax**: `single | multiple`
8008 *
8009 * **Initial value**: `single`
8010 *
8011 * @deprecated
8012 */
8013 KhtmlBoxLines?: Property.BoxLines | undefined;
8014 /**
8015 * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
8016 *
8017 * **Syntax**: `<integer>`
8018 *
8019 * **Initial value**: `1`
8020 *
8021 * @deprecated
8022 */
8023 KhtmlBoxOrdinalGroup?: Property.BoxOrdinalGroup | undefined;
8024 /**
8025 * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
8026 *
8027 * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
8028 *
8029 * **Initial value**: `inline-axis` (`horizontal` in XUL)
8030 *
8031 * @deprecated
8032 */
8033 KhtmlBoxOrient?: Property.BoxOrient | undefined;
8034 /**
8035 * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
8036 *
8037 * **Syntax**: `start | center | end | justify`
8038 *
8039 * **Initial value**: `start`
8040 *
8041 * @deprecated
8042 */
8043 KhtmlBoxPack?: Property.BoxPack | undefined;
8044 /**
8045 * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
8046 *
8047 * **Syntax**: `auto | loose | normal | strict | anywhere`
8048 *
8049 * **Initial value**: `auto`
8050 *
8051 * @deprecated
8052 */
8053 KhtmlLineBreak?: Property.LineBreak | undefined;
8054 /**
8055 * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.
8056 *
8057 * **Syntax**: `<alpha-value>`
8058 *
8059 * **Initial value**: `1.0`
8060 *
8061 * @deprecated
8062 */
8063 KhtmlOpacity?: Property.Opacity | undefined;
8064 /**
8065 * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
8066 *
8067 * **Syntax**: `auto | text | none | contain | all`
8068 *
8069 * **Initial value**: `auto`
8070 *
8071 * @deprecated
8072 */
8073 KhtmlUserSelect?: Property.UserSelect | undefined;
8074 /**
8075 * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
8076 *
8077 * **Syntax**: `<box>#`
8078 *
8079 * **Initial value**: `border-box`
8080 *
8081 * @deprecated
8082 */
8083 MozBackgroundClip?: Property.BackgroundClip | undefined;
8084 /**
8085 * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
8086 *
8087 * **Syntax**: `slice | clone`
8088 *
8089 * **Initial value**: `slice`
8090 *
8091 * @deprecated
8092 */
8093 MozBackgroundInlinePolicy?: Property.BoxDecorationBreak | undefined;
8094 /**
8095 * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
8096 *
8097 * **Syntax**: `<box>#`
8098 *
8099 * **Initial value**: `padding-box`
8100 *
8101 * @deprecated
8102 */
8103 MozBackgroundOrigin?: Property.BackgroundOrigin | undefined;
8104 /**
8105 * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
8106 *
8107 * **Syntax**: `<bg-size>#`
8108 *
8109 * **Initial value**: `auto auto`
8110 *
8111 * @deprecated
8112 */
8113 MozBackgroundSize?: Property.BackgroundSize<TLength> | undefined;
8114 /**
8115 * The **`-moz-binding`** CSS property is used by Mozilla-based applications to attach an XBL binding to a DOM element.
8116 *
8117 * **Syntax**: `<url> | none`
8118 *
8119 * **Initial value**: `none`
8120 *
8121 * @deprecated
8122 */
8123 MozBinding?: Property.MozBinding | undefined;
8124 /**
8125 * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
8126 *
8127 * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`
8128 *
8129 * @deprecated
8130 */
8131 MozBorderRadius?: Property.BorderRadius<TLength> | undefined;
8132 /**
8133 * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
8134 *
8135 * **Syntax**: `<length-percentage>{1,2}`
8136 *
8137 * **Initial value**: `0`
8138 *
8139 * @deprecated
8140 */
8141 MozBorderRadiusBottomleft?: Property.BorderBottomLeftRadius<TLength> | undefined;
8142 /**
8143 * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
8144 *
8145 * **Syntax**: `<length-percentage>{1,2}`
8146 *
8147 * **Initial value**: `0`
8148 *
8149 * @deprecated
8150 */
8151 MozBorderRadiusBottomright?: Property.BorderBottomRightRadius<TLength> | undefined;
8152 /**
8153 * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
8154 *
8155 * **Syntax**: `<length-percentage>{1,2}`
8156 *
8157 * **Initial value**: `0`
8158 *
8159 * @deprecated
8160 */
8161 MozBorderRadiusTopleft?: Property.BorderTopLeftRadius<TLength> | undefined;
8162 /**
8163 * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
8164 *
8165 * **Syntax**: `<length-percentage>{1,2}`
8166 *
8167 * **Initial value**: `0`
8168 *
8169 * @deprecated
8170 */
8171 MozBorderRadiusTopright?: Property.BorderTopRightRadius<TLength> | undefined;
8172 /**
8173 * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
8174 *
8175 * **Syntax**: `start | center | end | baseline | stretch`
8176 *
8177 * **Initial value**: `stretch`
8178 *
8179 * @deprecated
8180 */
8181 MozBoxAlign?: Property.BoxAlign | undefined;
8182 /**
8183 * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
8184 *
8185 * **Syntax**: `normal | reverse | inherit`
8186 *
8187 * **Initial value**: `normal`
8188 *
8189 * @deprecated
8190 */
8191 MozBoxDirection?: Property.BoxDirection | undefined;
8192 /**
8193 * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
8194 *
8195 * **Syntax**: `<number>`
8196 *
8197 * **Initial value**: `0`
8198 *
8199 * @deprecated
8200 */
8201 MozBoxFlex?: Property.BoxFlex | undefined;
8202 /**
8203 * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
8204 *
8205 * **Syntax**: `<integer>`
8206 *
8207 * **Initial value**: `1`
8208 *
8209 * @deprecated
8210 */
8211 MozBoxOrdinalGroup?: Property.BoxOrdinalGroup | undefined;
8212 /**
8213 * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
8214 *
8215 * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
8216 *
8217 * **Initial value**: `inline-axis` (`horizontal` in XUL)
8218 *
8219 * @deprecated
8220 */
8221 MozBoxOrient?: Property.BoxOrient | undefined;
8222 /**
8223 * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
8224 *
8225 * **Syntax**: `start | center | end | justify`
8226 *
8227 * **Initial value**: `start`
8228 *
8229 * @deprecated
8230 */
8231 MozBoxPack?: Property.BoxPack | undefined;
8232 /**
8233 * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.
8234 *
8235 * **Syntax**: `none | <shadow>#`
8236 *
8237 * **Initial value**: `none`
8238 *
8239 * @deprecated
8240 */
8241 MozBoxShadow?: Property.BoxShadow | undefined;
8242 /**
8243 * The non-standard **`-moz-float-edge`** CSS property specifies whether the height and width properties of the element include the margin, border, or padding thickness.
8244 *
8245 * **Syntax**: `border-box | content-box | margin-box | padding-box`
8246 *
8247 * **Initial value**: `content-box`
8248 *
8249 * @deprecated
8250 */
8251 MozFloatEdge?: Property.MozFloatEdge | undefined;
8252 /**
8253 * The **`-moz-force-broken-image-icon`** extended CSS property can be used to force the broken image icon to be shown even when a broken image has an `alt` attribute.
8254 *
8255 * **Syntax**: `0 | 1`
8256 *
8257 * **Initial value**: `0`
8258 *
8259 * @deprecated
8260 */
8261 MozForceBrokenImageIcon?: Property.MozForceBrokenImageIcon | undefined;
8262 /**
8263 * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.
8264 *
8265 * **Syntax**: `<alpha-value>`
8266 *
8267 * **Initial value**: `1.0`
8268 *
8269 * @deprecated
8270 */
8271 MozOpacity?: Property.Opacity | undefined;
8272 /**
8273 * The **`outline`** CSS shorthand property set all the outline properties in a single declaration.
8274 *
8275 * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`
8276 *
8277 * @deprecated
8278 */
8279 MozOutline?: Property.Outline<TLength> | undefined;
8280 /**
8281 * The **`outline-color`** CSS property sets the color of an element's outline.
8282 *
8283 * **Syntax**: `<color> | invert`
8284 *
8285 * **Initial value**: `invert`, for browsers supporting it, `currentColor` for the other
8286 *
8287 * @deprecated
8288 */
8289 MozOutlineColor?: Property.OutlineColor | undefined;
8290 /**
8291 * In Mozilla applications like Firefox, the **`-moz-outline-radius`** CSS shorthand property can be used to give an element's `outline` rounded corners.
8292 *
8293 * **Syntax**: `<outline-radius>{1,4} [ / <outline-radius>{1,4} ]?`
8294 *
8295 * @deprecated
8296 */
8297 MozOutlineRadius?: Property.MozOutlineRadius<TLength> | undefined;
8298 /**
8299 * In Mozilla applications, the **`-moz-outline-radius-bottomleft`** CSS property can be used to round the bottom-left corner of an element's `outline`.
8300 *
8301 * **Syntax**: `<outline-radius>`
8302 *
8303 * **Initial value**: `0`
8304 *
8305 * @deprecated
8306 */
8307 MozOutlineRadiusBottomleft?: Property.MozOutlineRadiusBottomleft<TLength> | undefined;
8308 /**
8309 * In Mozilla applications, the **`-moz-outline-radius-bottomright`** CSS property can be used to round the bottom-right corner of an element's `outline`.
8310 *
8311 * **Syntax**: `<outline-radius>`
8312 *
8313 * **Initial value**: `0`
8314 *
8315 * @deprecated
8316 */
8317 MozOutlineRadiusBottomright?: Property.MozOutlineRadiusBottomright<TLength> | undefined;
8318 /**
8319 * In Mozilla applications, the **`-moz-outline-radius-topleft`** CSS property can be used to round the top-left corner of an element's `outline`.
8320 *
8321 * **Syntax**: `<outline-radius>`
8322 *
8323 * **Initial value**: `0`
8324 *
8325 * @deprecated
8326 */
8327 MozOutlineRadiusTopleft?: Property.MozOutlineRadiusTopleft<TLength> | undefined;
8328 /**
8329 * In Mozilla applications, the **`-moz-outline-radius-topright`** CSS property can be used to round the top-right corner of an element's `outline`.
8330 *
8331 * **Syntax**: `<outline-radius>`
8332 *
8333 * **Initial value**: `0`
8334 *
8335 * @deprecated
8336 */
8337 MozOutlineRadiusTopright?: Property.MozOutlineRadiusTopright<TLength> | undefined;
8338 /**
8339 * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
8340 *
8341 * **Syntax**: `auto | <'border-style'>`
8342 *
8343 * **Initial value**: `none`
8344 *
8345 * @deprecated
8346 */
8347 MozOutlineStyle?: Property.OutlineStyle | undefined;
8348 /**
8349 * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
8350 *
8351 * **Syntax**: `<line-width>`
8352 *
8353 * **Initial value**: `medium`
8354 *
8355 * @deprecated
8356 */
8357 MozOutlineWidth?: Property.OutlineWidth<TLength> | undefined;
8358 /**
8359 * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.
8360 *
8361 * **Syntax**: `auto | start | end | left | right | center | justify`
8362 *
8363 * **Initial value**: `auto`
8364 *
8365 * @deprecated
8366 */
8367 MozTextAlignLast?: Property.TextAlignLast | undefined;
8368 /**
8369 * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
8370 *
8371 * **Syntax**: `<color>`
8372 *
8373 * **Initial value**: `currentcolor`
8374 *
8375 * @deprecated
8376 */
8377 MozTextDecorationColor?: Property.TextDecorationColor | undefined;
8378 /**
8379 * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
8380 *
8381 * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
8382 *
8383 * **Initial value**: `none`
8384 *
8385 * @deprecated
8386 */
8387 MozTextDecorationLine?: Property.TextDecorationLine | undefined;
8388 /**
8389 * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
8390 *
8391 * **Syntax**: `solid | double | dotted | dashed | wavy`
8392 *
8393 * **Initial value**: `solid`
8394 *
8395 * @deprecated
8396 */
8397 MozTextDecorationStyle?: Property.TextDecorationStyle | undefined;
8398 /**
8399 * In Mozilla applications, **`-moz-user-input`** determines if an element will accept user input.
8400 *
8401 * **Syntax**: `auto | none | enabled | disabled`
8402 *
8403 * **Initial value**: `auto`
8404 *
8405 * @deprecated
8406 */
8407 MozUserInput?: Property.MozUserInput | undefined;
8408 /**
8409 * The **`ime-mode`** CSS property controls the state of the input method editor (IME) for text fields. This property is obsolete.
8410 *
8411 * **Syntax**: `auto | normal | active | inactive | disabled`
8412 *
8413 * **Initial value**: `auto`
8414 *
8415 * @deprecated
8416 */
8417 msImeMode?: Property.ImeMode | undefined;
8418 /**
8419 * The **`-ms-scrollbar-track-color`** CSS property is a Microsoft extension that specifies the color of the track element of a scrollbar.
8420 *
8421 * **Syntax**: `<color>`
8422 *
8423 * **Initial value**: `Scrollbar`
8424 *
8425 * @deprecated
8426 */
8427 msScrollbarTrackColor?: Property.MsScrollbarTrackColor | undefined;
8428 /**
8429 * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
8430 *
8431 * **Syntax**: `<single-animation>#`
8432 *
8433 * @deprecated
8434 */
8435 OAnimation?: Property.Animation<TTime> | undefined;
8436 /**
8437 * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
8438 *
8439 * **Syntax**: `<time>#`
8440 *
8441 * **Initial value**: `0s`
8442 *
8443 * @deprecated
8444 */
8445 OAnimationDelay?: Property.AnimationDelay<TTime> | undefined;
8446 /**
8447 * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
8448 *
8449 * **Syntax**: `<single-animation-direction>#`
8450 *
8451 * **Initial value**: `normal`
8452 *
8453 * @deprecated
8454 */
8455 OAnimationDirection?: Property.AnimationDirection | undefined;
8456 /**
8457 * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
8458 *
8459 * **Syntax**: `<time>#`
8460 *
8461 * **Initial value**: `0s`
8462 *
8463 * @deprecated
8464 */
8465 OAnimationDuration?: Property.AnimationDuration<TTime> | undefined;
8466 /**
8467 * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
8468 *
8469 * **Syntax**: `<single-animation-fill-mode>#`
8470 *
8471 * **Initial value**: `none`
8472 *
8473 * @deprecated
8474 */
8475 OAnimationFillMode?: Property.AnimationFillMode | undefined;
8476 /**
8477 * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
8478 *
8479 * **Syntax**: `<single-animation-iteration-count>#`
8480 *
8481 * **Initial value**: `1`
8482 *
8483 * @deprecated
8484 */
8485 OAnimationIterationCount?: Property.AnimationIterationCount | undefined;
8486 /**
8487 * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
8488 *
8489 * **Syntax**: `[ none | <keyframes-name> ]#`
8490 *
8491 * **Initial value**: `none`
8492 *
8493 * @deprecated
8494 */
8495 OAnimationName?: Property.AnimationName | undefined;
8496 /**
8497 * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
8498 *
8499 * **Syntax**: `<single-animation-play-state>#`
8500 *
8501 * **Initial value**: `running`
8502 *
8503 * @deprecated
8504 */
8505 OAnimationPlayState?: Property.AnimationPlayState | undefined;
8506 /**
8507 * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
8508 *
8509 * **Syntax**: `<easing-function>#`
8510 *
8511 * **Initial value**: `ease`
8512 *
8513 * @deprecated
8514 */
8515 OAnimationTimingFunction?: Property.AnimationTimingFunction | undefined;
8516 /**
8517 * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
8518 *
8519 * **Syntax**: `<bg-size>#`
8520 *
8521 * **Initial value**: `auto auto`
8522 *
8523 * @deprecated
8524 */
8525 OBackgroundSize?: Property.BackgroundSize<TLength> | undefined;
8526 /**
8527 * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
8528 *
8529 * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
8530 *
8531 * @deprecated
8532 */
8533 OBorderImage?: Property.BorderImage | undefined;
8534 /**
8535 * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `<img>` or `<video>`, should be resized to fit its container.
8536 *
8537 * **Syntax**: `fill | contain | cover | none | scale-down`
8538 *
8539 * **Initial value**: `fill`
8540 *
8541 * @deprecated
8542 */
8543 OObjectFit?: Property.ObjectFit | undefined;
8544 /**
8545 * The **`object-position`** CSS property specifies the alignment of the selected replaced element's contents within the element's box. Areas of the box which aren't covered by the replaced element's object will show the element's background.
8546 *
8547 * **Syntax**: `<position>`
8548 *
8549 * **Initial value**: `50% 50%`
8550 *
8551 * @deprecated
8552 */
8553 OObjectPosition?: Property.ObjectPosition<TLength> | undefined;
8554 /**
8555 * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
8556 *
8557 * **Syntax**: `<integer> | <length>`
8558 *
8559 * **Initial value**: `8`
8560 *
8561 * @deprecated
8562 */
8563 OTabSize?: Property.TabSize<TLength> | undefined;
8564 /**
8565 * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.
8566 *
8567 * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`
8568 *
8569 * **Initial value**: `clip`
8570 *
8571 * @deprecated
8572 */
8573 OTextOverflow?: Property.TextOverflow | undefined;
8574 /**
8575 * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
8576 *
8577 * **Syntax**: `none | <transform-list>`
8578 *
8579 * **Initial value**: `none`
8580 *
8581 * @deprecated
8582 */
8583 OTransform?: Property.Transform | undefined;
8584 /**
8585 * The **`transform-origin`** CSS property sets the origin for an element's transformations.
8586 *
8587 * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
8588 *
8589 * **Initial value**: `50% 50% 0`
8590 *
8591 * @deprecated
8592 */
8593 OTransformOrigin?: Property.TransformOrigin<TLength> | undefined;
8594 /**
8595 * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
8596 *
8597 * **Syntax**: `<single-transition>#`
8598 *
8599 * @deprecated
8600 */
8601 OTransition?: Property.Transition<TTime> | undefined;
8602 /**
8603 * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
8604 *
8605 * **Syntax**: `<time>#`
8606 *
8607 * **Initial value**: `0s`
8608 *
8609 * @deprecated
8610 */
8611 OTransitionDelay?: Property.TransitionDelay<TTime> | undefined;
8612 /**
8613 * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
8614 *
8615 * **Syntax**: `<time>#`
8616 *
8617 * **Initial value**: `0s`
8618 *
8619 * @deprecated
8620 */
8621 OTransitionDuration?: Property.TransitionDuration<TTime> | undefined;
8622 /**
8623 * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
8624 *
8625 * **Syntax**: `none | <single-transition-property>#`
8626 *
8627 * **Initial value**: all
8628 *
8629 * @deprecated
8630 */
8631 OTransitionProperty?: Property.TransitionProperty | undefined;
8632 /**
8633 * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
8634 *
8635 * **Syntax**: `<easing-function>#`
8636 *
8637 * **Initial value**: `ease`
8638 *
8639 * @deprecated
8640 */
8641 OTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
8642 /**
8643 * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
8644 *
8645 * **Syntax**: `start | center | end | baseline | stretch`
8646 *
8647 * **Initial value**: `stretch`
8648 *
8649 * @deprecated
8650 */
8651 WebkitBoxAlign?: Property.BoxAlign | undefined;
8652 /**
8653 * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
8654 *
8655 * **Syntax**: `normal | reverse | inherit`
8656 *
8657 * **Initial value**: `normal`
8658 *
8659 * @deprecated
8660 */
8661 WebkitBoxDirection?: Property.BoxDirection | undefined;
8662 /**
8663 * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
8664 *
8665 * **Syntax**: `<number>`
8666 *
8667 * **Initial value**: `0`
8668 *
8669 * @deprecated
8670 */
8671 WebkitBoxFlex?: Property.BoxFlex | undefined;
8672 /**
8673 * The **`box-flex-group`** CSS property assigns the flexbox's child elements to a flex group.
8674 *
8675 * **Syntax**: `<integer>`
8676 *
8677 * **Initial value**: `1`
8678 *
8679 * @deprecated
8680 */
8681 WebkitBoxFlexGroup?: Property.BoxFlexGroup | undefined;
8682 /**
8683 * The **`box-lines`** CSS property determines whether the box may have a single or multiple lines (rows for horizontally oriented boxes, columns for vertically oriented boxes).
8684 *
8685 * **Syntax**: `single | multiple`
8686 *
8687 * **Initial value**: `single`
8688 *
8689 * @deprecated
8690 */
8691 WebkitBoxLines?: Property.BoxLines | undefined;
8692 /**
8693 * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
8694 *
8695 * **Syntax**: `<integer>`
8696 *
8697 * **Initial value**: `1`
8698 *
8699 * @deprecated
8700 */
8701 WebkitBoxOrdinalGroup?: Property.BoxOrdinalGroup | undefined;
8702 /**
8703 * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
8704 *
8705 * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
8706 *
8707 * **Initial value**: `inline-axis` (`horizontal` in XUL)
8708 *
8709 * @deprecated
8710 */
8711 WebkitBoxOrient?: Property.BoxOrient | undefined;
8712 /**
8713 * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
8714 *
8715 * **Syntax**: `start | center | end | justify`
8716 *
8717 * **Initial value**: `start`
8718 *
8719 * @deprecated
8720 */
8721 WebkitBoxPack?: Property.BoxPack | undefined;
8722 /**
8723 * The **`scroll-snap-points-x`** CSS property defines the horizontal positioning of snap points within the content of the scroll container they are applied to.
8724 *
8725 * **Syntax**: `none | repeat( <length-percentage> )`
8726 *
8727 * **Initial value**: `none`
8728 *
8729 * @deprecated
8730 */
8731 WebkitScrollSnapPointsX?: Property.ScrollSnapPointsX | undefined;
8732 /**
8733 * The **`scroll-snap-points-y`** CSS property defines the vertical positioning of snap points within the content of the scroll container they are applied to.
8734 *
8735 * **Syntax**: `none | repeat( <length-percentage> )`
8736 *
8737 * **Initial value**: `none`
8738 *
8739 * @deprecated
8740 */
8741 WebkitScrollSnapPointsY?: Property.ScrollSnapPointsY | undefined;
8742}
8743export interface SvgProperties<TLength = (string & {}) | 0, TTime = string & {}> {
8744 alignmentBaseline?: Property.AlignmentBaseline | undefined;
8745 baselineShift?: Property.BaselineShift<TLength> | undefined;
8746 clip?: Property.Clip | undefined;
8747 clipPath?: Property.ClipPath | undefined;
8748 clipRule?: Property.ClipRule | undefined;
8749 color?: Property.Color | undefined;
8750 colorInterpolation?: Property.ColorInterpolation | undefined;
8751 colorRendering?: Property.ColorRendering | undefined;
8752 cursor?: Property.Cursor | undefined;
8753 direction?: Property.Direction | undefined;
8754 display?: Property.Display | undefined;
8755 dominantBaseline?: Property.DominantBaseline | undefined;
8756 fill?: Property.Fill | undefined;
8757 fillOpacity?: Property.FillOpacity | undefined;
8758 fillRule?: Property.FillRule | undefined;
8759 filter?: Property.Filter | undefined;
8760 floodColor?: Property.FloodColor | undefined;
8761 floodOpacity?: Property.FloodOpacity | undefined;
8762 font?: Property.Font | undefined;
8763 fontFamily?: Property.FontFamily | undefined;
8764 fontSize?: Property.FontSize<TLength> | undefined;
8765 fontSizeAdjust?: Property.FontSizeAdjust | undefined;
8766 fontStretch?: Property.FontStretch | undefined;
8767 fontStyle?: Property.FontStyle | undefined;
8768 fontVariant?: Property.FontVariant | undefined;
8769 fontWeight?: Property.FontWeight | undefined;
8770 glyphOrientationVertical?: Property.GlyphOrientationVertical | undefined;
8771 imageRendering?: Property.ImageRendering | undefined;
8772 letterSpacing?: Property.LetterSpacing<TLength> | undefined;
8773 lightingColor?: Property.LightingColor | undefined;
8774 lineHeight?: Property.LineHeight<TLength> | undefined;
8775 marker?: Property.Marker | undefined;
8776 markerEnd?: Property.MarkerEnd | undefined;
8777 markerMid?: Property.MarkerMid | undefined;
8778 markerStart?: Property.MarkerStart | undefined;
8779 mask?: Property.Mask<TLength> | undefined;
8780 opacity?: Property.Opacity | undefined;
8781 overflow?: Property.Overflow | undefined;
8782 paintOrder?: Property.PaintOrder | undefined;
8783 pointerEvents?: Property.PointerEvents | undefined;
8784 shapeRendering?: Property.ShapeRendering | undefined;
8785 stopColor?: Property.StopColor | undefined;
8786 stopOpacity?: Property.StopOpacity | undefined;
8787 stroke?: Property.Stroke | undefined;
8788 strokeDasharray?: Property.StrokeDasharray<TLength> | undefined;
8789 strokeDashoffset?: Property.StrokeDashoffset<TLength> | undefined;
8790 strokeLinecap?: Property.StrokeLinecap | undefined;
8791 strokeLinejoin?: Property.StrokeLinejoin | undefined;
8792 strokeMiterlimit?: Property.StrokeMiterlimit | undefined;
8793 strokeOpacity?: Property.StrokeOpacity | undefined;
8794 strokeWidth?: Property.StrokeWidth<TLength> | undefined;
8795 textAnchor?: Property.TextAnchor | undefined;
8796 textDecoration?: Property.TextDecoration<TLength> | undefined;
8797 textRendering?: Property.TextRendering | undefined;
8798 unicodeBidi?: Property.UnicodeBidi | undefined;
8799 vectorEffect?: Property.VectorEffect | undefined;
8800 visibility?: Property.Visibility | undefined;
8801 whiteSpace?: Property.WhiteSpace | undefined;
8802 wordSpacing?: Property.WordSpacing<TLength> | undefined;
8803 writingMode?: Property.WritingMode | undefined;
8804}
8805export interface Properties<TLength = (string & {}) | 0, TTime = string & {}> extends StandardProperties<TLength, TTime>, VendorProperties<TLength, TTime>, ObsoleteProperties<TLength, TTime>, SvgProperties<TLength, TTime> {
8806}
8807export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
8808 /**
8809 * The **`accent-color`** CSS property sets the color of the elements accent. An accent appears in elements such as `<input>` of `type="checkbox"`, or `type="radio"`.
8810 *
8811 * **Syntax**: `auto | <color>`
8812 *
8813 * **Initial value**: `auto`
8814 *
8815 * | Chrome | Firefox | Safari | Edge | IE |
8816 * | :----: | :-----: | :----: | :----: | :-: |
8817 * | **93** | **92** | No | **93** | No |
8818 *
8819 * @see https://developer.mozilla.org/docs/Web/CSS/accent-color
8820 */
8821 "accent-color"?: Property.AccentColor | undefined;
8822 /**
8823 * The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.
8824 *
8825 * **Syntax**: `normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>`
8826 *
8827 * **Initial value**: `normal`
8828 *
8829 * ---
8830 *
8831 * _Supported in Flex Layout_
8832 *
8833 * | Chrome | Firefox | Safari | Edge | IE |
8834 * | :------: | :-----: | :-----: | :----: | :----: |
8835 * | **29** | **28** | **9** | **12** | **11** |
8836 * | 21 _-x-_ | | 7 _-x-_ | | |
8837 *
8838 * ---
8839 *
8840 * _Supported in Grid Layout_
8841 *
8842 * | Chrome | Firefox | Safari | Edge | IE |
8843 * | :----: | :-----: | :------: | :----: | :-: |
8844 * | **57** | **52** | **10.1** | **16** | No |
8845 *
8846 * ---
8847 *
8848 * @see https://developer.mozilla.org/docs/Web/CSS/align-content
8849 */
8850 "align-content"?: Property.AlignContent | undefined;
8851 /**
8852 * The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area.
8853 *
8854 * **Syntax**: `normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]`
8855 *
8856 * **Initial value**: `normal`
8857 *
8858 * ---
8859 *
8860 * _Supported in Flex Layout_
8861 *
8862 * | Chrome | Firefox | Safari | Edge | IE |
8863 * | :------: | :-----: | :-----: | :----: | :----: |
8864 * | **52** | **20** | **9** | **12** | **11** |
8865 * | 21 _-x-_ | | 7 _-x-_ | | |
8866 *
8867 * ---
8868 *
8869 * _Supported in Grid Layout_
8870 *
8871 * | Chrome | Firefox | Safari | Edge | IE |
8872 * | :----: | :-----: | :------: | :----: | :-: |
8873 * | **57** | **52** | **10.1** | **16** | No |
8874 *
8875 * ---
8876 *
8877 * @see https://developer.mozilla.org/docs/Web/CSS/align-items
8878 */
8879 "align-items"?: Property.AlignItems | undefined;
8880 /**
8881 * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.
8882 *
8883 * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`
8884 *
8885 * **Initial value**: `auto`
8886 *
8887 * ---
8888 *
8889 * _Supported in Flex Layout_
8890 *
8891 * | Chrome | Firefox | Safari | Edge | IE |
8892 * | :------: | :-----: | :-------: | :----: | :----: |
8893 * | **36** | **20** | **9** | **12** | **11** |
8894 * | 21 _-x-_ | | 6.1 _-x-_ | | |
8895 *
8896 * ---
8897 *
8898 * _Supported in Grid Layout_
8899 *
8900 * | Chrome | Firefox | Safari | Edge | IE |
8901 * | :----: | :-----: | :------: | :----: | :----------: |
8902 * | **57** | **52** | **10.1** | **16** | **10** _-x-_ |
8903 *
8904 * ---
8905 *
8906 * @see https://developer.mozilla.org/docs/Web/CSS/align-self
8907 */
8908 "align-self"?: Property.AlignSelf | undefined;
8909 /**
8910 * The **`align-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their block axis.
8911 *
8912 * **Syntax**: `[ normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position> ]#`
8913 *
8914 * **Initial value**: `normal`
8915 *
8916 * | Chrome | Firefox | Safari | Edge | IE |
8917 * | :----: | :-----: | :----: | :--: | :-: |
8918 * | No | n/a | No | No | No |
8919 *
8920 * @see https://developer.mozilla.org/docs/Web/CSS/align-tracks
8921 */
8922 "align-tracks"?: Property.AlignTracks | undefined;
8923 /**
8924 * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
8925 *
8926 * **Syntax**: `<time>#`
8927 *
8928 * **Initial value**: `0s`
8929 *
8930 * | Chrome | Firefox | Safari | Edge | IE |
8931 * | :-----: | :-----: | :-----: | :----: | :----: |
8932 * | **43** | **16** | **9** | **12** | **10** |
8933 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
8934 *
8935 * @see https://developer.mozilla.org/docs/Web/CSS/animation-delay
8936 */
8937 "animation-delay"?: Property.AnimationDelay<TTime> | undefined;
8938 /**
8939 * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
8940 *
8941 * **Syntax**: `<single-animation-direction>#`
8942 *
8943 * **Initial value**: `normal`
8944 *
8945 * | Chrome | Firefox | Safari | Edge | IE |
8946 * | :-----: | :-----: | :-----: | :----: | :----: |
8947 * | **43** | **16** | **9** | **12** | **10** |
8948 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
8949 *
8950 * @see https://developer.mozilla.org/docs/Web/CSS/animation-direction
8951 */
8952 "animation-direction"?: Property.AnimationDirection | undefined;
8953 /**
8954 * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
8955 *
8956 * **Syntax**: `<time>#`
8957 *
8958 * **Initial value**: `0s`
8959 *
8960 * | Chrome | Firefox | Safari | Edge | IE |
8961 * | :-----: | :-----: | :-----: | :----: | :----: |
8962 * | **43** | **16** | **9** | **12** | **10** |
8963 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
8964 *
8965 * @see https://developer.mozilla.org/docs/Web/CSS/animation-duration
8966 */
8967 "animation-duration"?: Property.AnimationDuration<TTime> | undefined;
8968 /**
8969 * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
8970 *
8971 * **Syntax**: `<single-animation-fill-mode>#`
8972 *
8973 * **Initial value**: `none`
8974 *
8975 * | Chrome | Firefox | Safari | Edge | IE |
8976 * | :-----: | :-----: | :-----: | :----: | :----: |
8977 * | **43** | **16** | **9** | **12** | **10** |
8978 * | 3 _-x-_ | 5 _-x-_ | 5 _-x-_ | | |
8979 *
8980 * @see https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode
8981 */
8982 "animation-fill-mode"?: Property.AnimationFillMode | undefined;
8983 /**
8984 * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
8985 *
8986 * **Syntax**: `<single-animation-iteration-count>#`
8987 *
8988 * **Initial value**: `1`
8989 *
8990 * | Chrome | Firefox | Safari | Edge | IE |
8991 * | :-----: | :-----: | :-----: | :----: | :----: |
8992 * | **43** | **16** | **9** | **12** | **10** |
8993 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
8994 *
8995 * @see https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count
8996 */
8997 "animation-iteration-count"?: Property.AnimationIterationCount | undefined;
8998 /**
8999 * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
9000 *
9001 * **Syntax**: `[ none | <keyframes-name> ]#`
9002 *
9003 * **Initial value**: `none`
9004 *
9005 * | Chrome | Firefox | Safari | Edge | IE |
9006 * | :-----: | :-----: | :-----: | :----: | :----: |
9007 * | **43** | **16** | **9** | **12** | **10** |
9008 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
9009 *
9010 * @see https://developer.mozilla.org/docs/Web/CSS/animation-name
9011 */
9012 "animation-name"?: Property.AnimationName | undefined;
9013 /**
9014 * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
9015 *
9016 * **Syntax**: `<single-animation-play-state>#`
9017 *
9018 * **Initial value**: `running`
9019 *
9020 * | Chrome | Firefox | Safari | Edge | IE |
9021 * | :-----: | :-----: | :-----: | :----: | :----: |
9022 * | **43** | **16** | **9** | **12** | **10** |
9023 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
9024 *
9025 * @see https://developer.mozilla.org/docs/Web/CSS/animation-play-state
9026 */
9027 "animation-play-state"?: Property.AnimationPlayState | undefined;
9028 /**
9029 * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
9030 *
9031 * **Syntax**: `<easing-function>#`
9032 *
9033 * **Initial value**: `ease`
9034 *
9035 * | Chrome | Firefox | Safari | Edge | IE |
9036 * | :-----: | :-----: | :-----: | :----: | :----: |
9037 * | **43** | **16** | **9** | **12** | **10** |
9038 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
9039 *
9040 * @see https://developer.mozilla.org/docs/Web/CSS/animation-timing-function
9041 */
9042 "animation-timing-function"?: Property.AnimationTimingFunction | undefined;
9043 /**
9044 * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.
9045 *
9046 * **Syntax**: `none | auto | textfield | menulist-button | <compat-auto>`
9047 *
9048 * **Initial value**: `auto`
9049 *
9050 * | Chrome | Firefox | Safari | Edge | IE |
9051 * | :-----: | :-----: | :---------: | :------: | :-: |
9052 * | **84** | **80** | **3** _-x-_ | **84** | No |
9053 * | 1 _-x-_ | 1 _-x-_ | | 12 _-x-_ | |
9054 *
9055 * @see https://developer.mozilla.org/docs/Web/CSS/appearance
9056 */
9057 appearance?: Property.Appearance | undefined;
9058 /**
9059 * The **`aspect-ratio`**  CSS property sets a **preferred aspect ratio** for the box, which will be used in the calculation of auto sizes and some other layout functions.
9060 *
9061 * **Syntax**: `auto | <ratio>`
9062 *
9063 * **Initial value**: `auto`
9064 *
9065 * | Chrome | Firefox | Safari | Edge | IE |
9066 * | :----: | :-----: | :----: | :----: | :-: |
9067 * | **88** | **89** | **15** | **88** | No |
9068 *
9069 * @see https://developer.mozilla.org/docs/Web/CSS/aspect-ratio
9070 */
9071 "aspect-ratio"?: Property.AspectRatio | undefined;
9072 /**
9073 * The **`backdrop-filter`** CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything _behind_ the element, to see the effect you must make the element or its background at least partially transparent.
9074 *
9075 * **Syntax**: `none | <filter-function-list>`
9076 *
9077 * **Initial value**: `none`
9078 *
9079 * | Chrome | Firefox | Safari | Edge | IE |
9080 * | :----: | :-----: | :---------: | :----: | :-: |
9081 * | **76** | n/a | **9** _-x-_ | **17** | No |
9082 *
9083 * @see https://developer.mozilla.org/docs/Web/CSS/backdrop-filter
9084 */
9085 "backdrop-filter"?: Property.BackdropFilter | undefined;
9086 /**
9087 * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
9088 *
9089 * **Syntax**: `visible | hidden`
9090 *
9091 * **Initial value**: `visible`
9092 *
9093 * | Chrome | Firefox | Safari | Edge | IE |
9094 * | :------: | :------: | :-----------: | :----: | :----: |
9095 * | **36** | **16** | **5.1** _-x-_ | **12** | **10** |
9096 * | 12 _-x-_ | 10 _-x-_ | | | |
9097 *
9098 * @see https://developer.mozilla.org/docs/Web/CSS/backface-visibility
9099 */
9100 "backface-visibility"?: Property.BackfaceVisibility | undefined;
9101 /**
9102 * The **`background-attachment`** CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block.
9103 *
9104 * **Syntax**: `<attachment>#`
9105 *
9106 * **Initial value**: `scroll`
9107 *
9108 * | Chrome | Firefox | Safari | Edge | IE |
9109 * | :----: | :-----: | :----: | :----: | :---: |
9110 * | **1** | **1** | **1** | **12** | **4** |
9111 *
9112 * @see https://developer.mozilla.org/docs/Web/CSS/background-attachment
9113 */
9114 "background-attachment"?: Property.BackgroundAttachment | undefined;
9115 /**
9116 * The **`background-blend-mode`** CSS property sets how an element's background images should blend with each other and with the element's background color.
9117 *
9118 * **Syntax**: `<blend-mode>#`
9119 *
9120 * **Initial value**: `normal`
9121 *
9122 * | Chrome | Firefox | Safari | Edge | IE |
9123 * | :----: | :-----: | :----: | :----: | :-: |
9124 * | **35** | **30** | **8** | **79** | No |
9125 *
9126 * @see https://developer.mozilla.org/docs/Web/CSS/background-blend-mode
9127 */
9128 "background-blend-mode"?: Property.BackgroundBlendMode | undefined;
9129 /**
9130 * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
9131 *
9132 * **Syntax**: `<box>#`
9133 *
9134 * **Initial value**: `border-box`
9135 *
9136 * | Chrome | Firefox | Safari | Edge | IE |
9137 * | :----: | :-----: | :---------: | :----: | :---: |
9138 * | **1** | **4** | **3** _-x-_ | **12** | **9** |
9139 *
9140 * @see https://developer.mozilla.org/docs/Web/CSS/background-clip
9141 */
9142 "background-clip"?: Property.BackgroundClip | undefined;
9143 /**
9144 * The **`background-color`** CSS property sets the background color of an element.
9145 *
9146 * **Syntax**: `<color>`
9147 *
9148 * **Initial value**: `transparent`
9149 *
9150 * | Chrome | Firefox | Safari | Edge | IE |
9151 * | :----: | :-----: | :----: | :----: | :---: |
9152 * | **1** | **1** | **1** | **12** | **4** |
9153 *
9154 * @see https://developer.mozilla.org/docs/Web/CSS/background-color
9155 */
9156 "background-color"?: Property.BackgroundColor | undefined;
9157 /**
9158 * The **`background-image`** CSS property sets one or more background images on an element.
9159 *
9160 * **Syntax**: `<bg-image>#`
9161 *
9162 * **Initial value**: `none`
9163 *
9164 * | Chrome | Firefox | Safari | Edge | IE |
9165 * | :----: | :-----: | :----: | :----: | :---: |
9166 * | **1** | **1** | **1** | **12** | **4** |
9167 *
9168 * @see https://developer.mozilla.org/docs/Web/CSS/background-image
9169 */
9170 "background-image"?: Property.BackgroundImage | undefined;
9171 /**
9172 * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
9173 *
9174 * **Syntax**: `<box>#`
9175 *
9176 * **Initial value**: `padding-box`
9177 *
9178 * | Chrome | Firefox | Safari | Edge | IE |
9179 * | :----: | :-----: | :----: | :----: | :---: |
9180 * | **1** | **4** | **3** | **12** | **9** |
9181 *
9182 * @see https://developer.mozilla.org/docs/Web/CSS/background-origin
9183 */
9184 "background-origin"?: Property.BackgroundOrigin | undefined;
9185 /**
9186 * The **`background-position-x`** CSS property sets the initial horizontal position for each background image. The position is relative to the position layer set by `background-origin`.
9187 *
9188 * **Syntax**: `[ center | [ [ left | right | x-start | x-end ]? <length-percentage>? ]! ]#`
9189 *
9190 * **Initial value**: `left`
9191 *
9192 * | Chrome | Firefox | Safari | Edge | IE |
9193 * | :----: | :-----: | :----: | :----: | :---: |
9194 * | **1** | **49** | **1** | **12** | **6** |
9195 *
9196 * @see https://developer.mozilla.org/docs/Web/CSS/background-position-x
9197 */
9198 "background-position-x"?: Property.BackgroundPositionX<TLength> | undefined;
9199 /**
9200 * The **`background-position-y`** CSS property sets the initial vertical position for each background image. The position is relative to the position layer set by `background-origin`.
9201 *
9202 * **Syntax**: `[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#`
9203 *
9204 * **Initial value**: `top`
9205 *
9206 * | Chrome | Firefox | Safari | Edge | IE |
9207 * | :----: | :-----: | :----: | :----: | :---: |
9208 * | **1** | **49** | **1** | **12** | **6** |
9209 *
9210 * @see https://developer.mozilla.org/docs/Web/CSS/background-position-y
9211 */
9212 "background-position-y"?: Property.BackgroundPositionY<TLength> | undefined;
9213 /**
9214 * The **`background-repeat`** CSS property sets how background images are repeated. A background image can be repeated along the horizontal and vertical axes, or not repeated at all.
9215 *
9216 * **Syntax**: `<repeat-style>#`
9217 *
9218 * **Initial value**: `repeat`
9219 *
9220 * | Chrome | Firefox | Safari | Edge | IE |
9221 * | :----: | :-----: | :----: | :----: | :---: |
9222 * | **1** | **1** | **1** | **12** | **4** |
9223 *
9224 * @see https://developer.mozilla.org/docs/Web/CSS/background-repeat
9225 */
9226 "background-repeat"?: Property.BackgroundRepeat | undefined;
9227 /**
9228 * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
9229 *
9230 * **Syntax**: `<bg-size>#`
9231 *
9232 * **Initial value**: `auto auto`
9233 *
9234 * | Chrome | Firefox | Safari | Edge | IE |
9235 * | :-----: | :-----: | :-----: | :----: | :---: |
9236 * | **3** | **4** | **5** | **12** | **9** |
9237 * | 1 _-x-_ | | 3 _-x-_ | | |
9238 *
9239 * @see https://developer.mozilla.org/docs/Web/CSS/background-size
9240 */
9241 "background-size"?: Property.BackgroundSize<TLength> | undefined;
9242 /**
9243 * **Syntax**: `clip | ellipsis | <string>`
9244 *
9245 * **Initial value**: `clip`
9246 */
9247 "block-overflow"?: Property.BlockOverflow | undefined;
9248 /**
9249 * The **`block-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.
9250 *
9251 * **Syntax**: `<'width'>`
9252 *
9253 * **Initial value**: `auto`
9254 *
9255 * | Chrome | Firefox | Safari | Edge | IE |
9256 * | :----: | :-----: | :------: | :----: | :-: |
9257 * | **57** | **41** | **12.1** | **79** | No |
9258 *
9259 * @see https://developer.mozilla.org/docs/Web/CSS/block-size
9260 */
9261 "block-size"?: Property.BlockSize<TLength> | undefined;
9262 /**
9263 * The **`border-block-color`** CSS property defines the color of the logical block borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9264 *
9265 * **Syntax**: `<'border-top-color'>{1,2}`
9266 *
9267 * **Initial value**: `currentcolor`
9268 *
9269 * | Chrome | Firefox | Safari | Edge | IE |
9270 * | :----: | :-----: | :------: | :----: | :-: |
9271 * | **87** | **66** | **14.1** | **87** | No |
9272 *
9273 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-color
9274 */
9275 "border-block-color"?: Property.BorderBlockColor | undefined;
9276 /**
9277 * The **`border-block-end-color`** CSS property defines the color of the logical block-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9278 *
9279 * **Syntax**: `<'border-top-color'>`
9280 *
9281 * **Initial value**: `currentcolor`
9282 *
9283 * | Chrome | Firefox | Safari | Edge | IE |
9284 * | :----: | :-----: | :------: | :----: | :-: |
9285 * | **69** | **41** | **12.1** | **79** | No |
9286 *
9287 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-color
9288 */
9289 "border-block-end-color"?: Property.BorderBlockEndColor | undefined;
9290 /**
9291 * The **`border-block-end-style`** CSS property defines the style of the logical block-end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9292 *
9293 * **Syntax**: `<'border-top-style'>`
9294 *
9295 * **Initial value**: `none`
9296 *
9297 * | Chrome | Firefox | Safari | Edge | IE |
9298 * | :----: | :-----: | :------: | :----: | :-: |
9299 * | **69** | **41** | **12.1** | **79** | No |
9300 *
9301 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-style
9302 */
9303 "border-block-end-style"?: Property.BorderBlockEndStyle | undefined;
9304 /**
9305 * The **`border-block-end-width`** CSS property defines the width of the logical block-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9306 *
9307 * **Syntax**: `<'border-top-width'>`
9308 *
9309 * **Initial value**: `medium`
9310 *
9311 * | Chrome | Firefox | Safari | Edge | IE |
9312 * | :----: | :-----: | :------: | :----: | :-: |
9313 * | **69** | **41** | **12.1** | **79** | No |
9314 *
9315 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-width
9316 */
9317 "border-block-end-width"?: Property.BorderBlockEndWidth<TLength> | undefined;
9318 /**
9319 * The **`border-block-start-color`** CSS property defines the color of the logical block-start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9320 *
9321 * **Syntax**: `<'border-top-color'>`
9322 *
9323 * **Initial value**: `currentcolor`
9324 *
9325 * | Chrome | Firefox | Safari | Edge | IE |
9326 * | :----: | :-----: | :------: | :----: | :-: |
9327 * | **69** | **41** | **12.1** | **79** | No |
9328 *
9329 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-color
9330 */
9331 "border-block-start-color"?: Property.BorderBlockStartColor | undefined;
9332 /**
9333 * The **`border-block-start-style`** CSS property defines the style of the logical block start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9334 *
9335 * **Syntax**: `<'border-top-style'>`
9336 *
9337 * **Initial value**: `none`
9338 *
9339 * | Chrome | Firefox | Safari | Edge | IE |
9340 * | :----: | :-----: | :------: | :----: | :-: |
9341 * | **69** | **41** | **12.1** | **79** | No |
9342 *
9343 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-style
9344 */
9345 "border-block-start-style"?: Property.BorderBlockStartStyle | undefined;
9346 /**
9347 * The **`border-block-start-width`** CSS property defines the width of the logical block-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9348 *
9349 * **Syntax**: `<'border-top-width'>`
9350 *
9351 * **Initial value**: `medium`
9352 *
9353 * | Chrome | Firefox | Safari | Edge | IE |
9354 * | :----: | :-----: | :------: | :----: | :-: |
9355 * | **69** | **41** | **12.1** | **79** | No |
9356 *
9357 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-width
9358 */
9359 "border-block-start-width"?: Property.BorderBlockStartWidth<TLength> | undefined;
9360 /**
9361 * The **`border-block-style`** CSS property defines the style of the logical block borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9362 *
9363 * **Syntax**: `<'border-top-style'>`
9364 *
9365 * **Initial value**: `none`
9366 *
9367 * | Chrome | Firefox | Safari | Edge | IE |
9368 * | :----: | :-----: | :------: | :----: | :-: |
9369 * | **87** | **66** | **14.1** | **87** | No |
9370 *
9371 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-style
9372 */
9373 "border-block-style"?: Property.BorderBlockStyle | undefined;
9374 /**
9375 * The **`border-block-width`** CSS property defines the width of the logical block borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9376 *
9377 * **Syntax**: `<'border-top-width'>`
9378 *
9379 * **Initial value**: `medium`
9380 *
9381 * | Chrome | Firefox | Safari | Edge | IE |
9382 * | :----: | :-----: | :------: | :----: | :-: |
9383 * | **87** | **66** | **14.1** | **87** | No |
9384 *
9385 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-width
9386 */
9387 "border-block-width"?: Property.BorderBlockWidth<TLength> | undefined;
9388 /**
9389 * The **`border-bottom-color`** CSS property sets the color of an element's bottom border. It can also be set with the shorthand CSS properties `border-color` or `border-bottom`.
9390 *
9391 * **Syntax**: `<'border-top-color'>`
9392 *
9393 * **Initial value**: `currentcolor`
9394 *
9395 * | Chrome | Firefox | Safari | Edge | IE |
9396 * | :----: | :-----: | :----: | :----: | :---: |
9397 * | **1** | **1** | **1** | **12** | **4** |
9398 *
9399 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-color
9400 */
9401 "border-bottom-color"?: Property.BorderBottomColor | undefined;
9402 /**
9403 * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
9404 *
9405 * **Syntax**: `<length-percentage>{1,2}`
9406 *
9407 * **Initial value**: `0`
9408 *
9409 * | Chrome | Firefox | Safari | Edge | IE |
9410 * | :-----: | :-----: | :-----: | :----: | :---: |
9411 * | **4** | **4** | **5** | **12** | **9** |
9412 * | 1 _-x-_ | | 3 _-x-_ | | |
9413 *
9414 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius
9415 */
9416 "border-bottom-left-radius"?: Property.BorderBottomLeftRadius<TLength> | undefined;
9417 /**
9418 * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
9419 *
9420 * **Syntax**: `<length-percentage>{1,2}`
9421 *
9422 * **Initial value**: `0`
9423 *
9424 * | Chrome | Firefox | Safari | Edge | IE |
9425 * | :-----: | :-----: | :-----: | :----: | :---: |
9426 * | **4** | **4** | **5** | **12** | **9** |
9427 * | 1 _-x-_ | | 3 _-x-_ | | |
9428 *
9429 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius
9430 */
9431 "border-bottom-right-radius"?: Property.BorderBottomRightRadius<TLength> | undefined;
9432 /**
9433 * The **`border-bottom-style`** CSS property sets the line style of an element's bottom `border`.
9434 *
9435 * **Syntax**: `<line-style>`
9436 *
9437 * **Initial value**: `none`
9438 *
9439 * | Chrome | Firefox | Safari | Edge | IE |
9440 * | :----: | :-----: | :----: | :----: | :-----: |
9441 * | **1** | **1** | **1** | **12** | **5.5** |
9442 *
9443 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-style
9444 */
9445 "border-bottom-style"?: Property.BorderBottomStyle | undefined;
9446 /**
9447 * The **`border-bottom-width`** CSS property sets the width of the bottom border of an element.
9448 *
9449 * **Syntax**: `<line-width>`
9450 *
9451 * **Initial value**: `medium`
9452 *
9453 * | Chrome | Firefox | Safari | Edge | IE |
9454 * | :----: | :-----: | :----: | :----: | :---: |
9455 * | **1** | **1** | **1** | **12** | **4** |
9456 *
9457 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-width
9458 */
9459 "border-bottom-width"?: Property.BorderBottomWidth<TLength> | undefined;
9460 /**
9461 * The **`border-collapse`** CSS property sets whether cells inside a `<table>` have shared or separate borders.
9462 *
9463 * **Syntax**: `collapse | separate`
9464 *
9465 * **Initial value**: `separate`
9466 *
9467 * | Chrome | Firefox | Safari | Edge | IE |
9468 * | :----: | :-----: | :-----: | :----: | :---: |
9469 * | **1** | **1** | **1.2** | **12** | **5** |
9470 *
9471 * @see https://developer.mozilla.org/docs/Web/CSS/border-collapse
9472 */
9473 "border-collapse"?: Property.BorderCollapse | undefined;
9474 /**
9475 * The **`border-end-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
9476 *
9477 * **Syntax**: `<length-percentage>{1,2}`
9478 *
9479 * **Initial value**: `0`
9480 *
9481 * | Chrome | Firefox | Safari | Edge | IE |
9482 * | :----: | :-----: | :----: | :----: | :-: |
9483 * | **89** | **66** | **15** | **89** | No |
9484 *
9485 * @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius
9486 */
9487 "border-end-end-radius"?: Property.BorderEndEndRadius<TLength> | undefined;
9488 /**
9489 * The **`border-end-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
9490 *
9491 * **Syntax**: `<length-percentage>{1,2}`
9492 *
9493 * **Initial value**: `0`
9494 *
9495 * | Chrome | Firefox | Safari | Edge | IE |
9496 * | :----: | :-----: | :----: | :----: | :-: |
9497 * | **89** | **66** | **15** | **89** | No |
9498 *
9499 * @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius
9500 */
9501 "border-end-start-radius"?: Property.BorderEndStartRadius<TLength> | undefined;
9502 /**
9503 * The **`border-image-outset`** CSS property sets the distance by which an element's border image is set out from its border box.
9504 *
9505 * **Syntax**: `[ <length> | <number> ]{1,4}`
9506 *
9507 * **Initial value**: `0`
9508 *
9509 * | Chrome | Firefox | Safari | Edge | IE |
9510 * | :----: | :-----: | :----: | :----: | :----: |
9511 * | **15** | **15** | **6** | **12** | **11** |
9512 *
9513 * @see https://developer.mozilla.org/docs/Web/CSS/border-image-outset
9514 */
9515 "border-image-outset"?: Property.BorderImageOutset<TLength> | undefined;
9516 /**
9517 * The **`border-image-repeat`** CSS property defines how the edge regions of a source image are adjusted to fit the dimensions of an element's border image.
9518 *
9519 * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`
9520 *
9521 * **Initial value**: `stretch`
9522 *
9523 * | Chrome | Firefox | Safari | Edge | IE |
9524 * | :----: | :-----: | :----: | :----: | :----: |
9525 * | **15** | **15** | **6** | **12** | **11** |
9526 *
9527 * @see https://developer.mozilla.org/docs/Web/CSS/border-image-repeat
9528 */
9529 "border-image-repeat"?: Property.BorderImageRepeat | undefined;
9530 /**
9531 * The **`border-image-slice`** CSS property divides the image specified by `border-image-source` into regions. These regions form the components of an element's border image.
9532 *
9533 * **Syntax**: `<number-percentage>{1,4} && fill?`
9534 *
9535 * **Initial value**: `100%`
9536 *
9537 * | Chrome | Firefox | Safari | Edge | IE |
9538 * | :----: | :-----: | :----: | :----: | :----: |
9539 * | **15** | **15** | **6** | **12** | **11** |
9540 *
9541 * @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice
9542 */
9543 "border-image-slice"?: Property.BorderImageSlice | undefined;
9544 /**
9545 * The **`border-image-source`** CSS property sets the source image used to create an element's border image.
9546 *
9547 * **Syntax**: `none | <image>`
9548 *
9549 * **Initial value**: `none`
9550 *
9551 * | Chrome | Firefox | Safari | Edge | IE |
9552 * | :----: | :-----: | :----: | :----: | :----: |
9553 * | **15** | **15** | **6** | **12** | **11** |
9554 *
9555 * @see https://developer.mozilla.org/docs/Web/CSS/border-image-source
9556 */
9557 "border-image-source"?: Property.BorderImageSource | undefined;
9558 /**
9559 * The **`border-image-width`** CSS property sets the width of an element's border image.
9560 *
9561 * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`
9562 *
9563 * **Initial value**: `1`
9564 *
9565 * | Chrome | Firefox | Safari | Edge | IE |
9566 * | :----: | :-----: | :----: | :----: | :----: |
9567 * | **15** | **13** | **6** | **12** | **11** |
9568 *
9569 * @see https://developer.mozilla.org/docs/Web/CSS/border-image-width
9570 */
9571 "border-image-width"?: Property.BorderImageWidth<TLength> | undefined;
9572 /**
9573 * The **`border-inline-color`** CSS property defines the color of the logical inline borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9574 *
9575 * **Syntax**: `<'border-top-color'>{1,2}`
9576 *
9577 * **Initial value**: `currentcolor`
9578 *
9579 * | Chrome | Firefox | Safari | Edge | IE |
9580 * | :----: | :-----: | :------: | :----: | :-: |
9581 * | **87** | **66** | **14.1** | **87** | No |
9582 *
9583 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color
9584 */
9585 "border-inline-color"?: Property.BorderInlineColor | undefined;
9586 /**
9587 * The **`border-inline-end-color`** CSS property defines the color of the logical inline-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9588 *
9589 * **Syntax**: `<'border-top-color'>`
9590 *
9591 * **Initial value**: `currentcolor`
9592 *
9593 * | Chrome | Firefox | Safari | Edge | IE |
9594 * | :----: | :-------------------------: | :------: | :----: | :-: |
9595 * | **69** | **41** | **12.1** | **79** | No |
9596 * | | 3 _(-moz-border-end-color)_ | | | |
9597 *
9598 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color
9599 */
9600 "border-inline-end-color"?: Property.BorderInlineEndColor | undefined;
9601 /**
9602 * The **`border-inline-end-style`** CSS property defines the style of the logical inline end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9603 *
9604 * **Syntax**: `<'border-top-style'>`
9605 *
9606 * **Initial value**: `none`
9607 *
9608 * | Chrome | Firefox | Safari | Edge | IE |
9609 * | :----: | :-------------------------: | :------: | :----: | :-: |
9610 * | **69** | **41** | **12.1** | **79** | No |
9611 * | | 3 _(-moz-border-end-style)_ | | | |
9612 *
9613 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style
9614 */
9615 "border-inline-end-style"?: Property.BorderInlineEndStyle | undefined;
9616 /**
9617 * The **`border-inline-end-width`** CSS property defines the width of the logical inline-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9618 *
9619 * **Syntax**: `<'border-top-width'>`
9620 *
9621 * **Initial value**: `medium`
9622 *
9623 * | Chrome | Firefox | Safari | Edge | IE |
9624 * | :----: | :-------------------------: | :------: | :----: | :-: |
9625 * | **69** | **41** | **12.1** | **79** | No |
9626 * | | 3 _(-moz-border-end-width)_ | | | |
9627 *
9628 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width
9629 */
9630 "border-inline-end-width"?: Property.BorderInlineEndWidth<TLength> | undefined;
9631 /**
9632 * The **`border-inline-start-color`** CSS property defines the color of the logical inline start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9633 *
9634 * **Syntax**: `<'border-top-color'>`
9635 *
9636 * **Initial value**: `currentcolor`
9637 *
9638 * | Chrome | Firefox | Safari | Edge | IE |
9639 * | :----: | :---------------------------: | :------: | :----: | :-: |
9640 * | **69** | **41** | **12.1** | **79** | No |
9641 * | | 3 _(-moz-border-start-color)_ | | | |
9642 *
9643 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color
9644 */
9645 "border-inline-start-color"?: Property.BorderInlineStartColor | undefined;
9646 /**
9647 * The **`border-inline-start-style`** CSS property defines the style of the logical inline start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9648 *
9649 * **Syntax**: `<'border-top-style'>`
9650 *
9651 * **Initial value**: `none`
9652 *
9653 * | Chrome | Firefox | Safari | Edge | IE |
9654 * | :----: | :---------------------------: | :------: | :----: | :-: |
9655 * | **69** | **41** | **12.1** | **79** | No |
9656 * | | 3 _(-moz-border-start-style)_ | | | |
9657 *
9658 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style
9659 */
9660 "border-inline-start-style"?: Property.BorderInlineStartStyle | undefined;
9661 /**
9662 * The **`border-inline-start-width`** CSS property defines the width of the logical inline-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9663 *
9664 * **Syntax**: `<'border-top-width'>`
9665 *
9666 * **Initial value**: `medium`
9667 *
9668 * | Chrome | Firefox | Safari | Edge | IE |
9669 * | :----: | :-----: | :------: | :----: | :-: |
9670 * | **69** | **41** | **12.1** | **79** | No |
9671 *
9672 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width
9673 */
9674 "border-inline-start-width"?: Property.BorderInlineStartWidth<TLength> | undefined;
9675 /**
9676 * The **`border-inline-style`** CSS property defines the style of the logical inline borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9677 *
9678 * **Syntax**: `<'border-top-style'>`
9679 *
9680 * **Initial value**: `none`
9681 *
9682 * | Chrome | Firefox | Safari | Edge | IE |
9683 * | :----: | :-----: | :------: | :----: | :-: |
9684 * | **87** | **66** | **14.1** | **87** | No |
9685 *
9686 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style
9687 */
9688 "border-inline-style"?: Property.BorderInlineStyle | undefined;
9689 /**
9690 * The **`border-inline-width`** CSS property defines the width of the logical inline borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
9691 *
9692 * **Syntax**: `<'border-top-width'>`
9693 *
9694 * **Initial value**: `medium`
9695 *
9696 * | Chrome | Firefox | Safari | Edge | IE |
9697 * | :----: | :-----: | :------: | :----: | :-: |
9698 * | **87** | **66** | **14.1** | **87** | No |
9699 *
9700 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width
9701 */
9702 "border-inline-width"?: Property.BorderInlineWidth<TLength> | undefined;
9703 /**
9704 * The **`border-left-color`** CSS property sets the color of an element's left border. It can also be set with the shorthand CSS properties `border-color` or `border-left`.
9705 *
9706 * **Syntax**: `<color>`
9707 *
9708 * **Initial value**: `currentcolor`
9709 *
9710 * | Chrome | Firefox | Safari | Edge | IE |
9711 * | :----: | :-----: | :----: | :----: | :---: |
9712 * | **1** | **1** | **1** | **12** | **4** |
9713 *
9714 * @see https://developer.mozilla.org/docs/Web/CSS/border-left-color
9715 */
9716 "border-left-color"?: Property.BorderLeftColor | undefined;
9717 /**
9718 * The **`border-left-style`** CSS property sets the line style of an element's left `border`.
9719 *
9720 * **Syntax**: `<line-style>`
9721 *
9722 * **Initial value**: `none`
9723 *
9724 * | Chrome | Firefox | Safari | Edge | IE |
9725 * | :----: | :-----: | :----: | :----: | :-----: |
9726 * | **1** | **1** | **1** | **12** | **5.5** |
9727 *
9728 * @see https://developer.mozilla.org/docs/Web/CSS/border-left-style
9729 */
9730 "border-left-style"?: Property.BorderLeftStyle | undefined;
9731 /**
9732 * The **`border-left-width`** CSS property sets the width of the left border of an element.
9733 *
9734 * **Syntax**: `<line-width>`
9735 *
9736 * **Initial value**: `medium`
9737 *
9738 * | Chrome | Firefox | Safari | Edge | IE |
9739 * | :----: | :-----: | :----: | :----: | :---: |
9740 * | **1** | **1** | **1** | **12** | **4** |
9741 *
9742 * @see https://developer.mozilla.org/docs/Web/CSS/border-left-width
9743 */
9744 "border-left-width"?: Property.BorderLeftWidth<TLength> | undefined;
9745 /**
9746 * The **`border-right-color`** CSS property sets the color of an element's right border. It can also be set with the shorthand CSS properties `border-color` or `border-right`.
9747 *
9748 * **Syntax**: `<color>`
9749 *
9750 * **Initial value**: `currentcolor`
9751 *
9752 * | Chrome | Firefox | Safari | Edge | IE |
9753 * | :----: | :-----: | :----: | :----: | :---: |
9754 * | **1** | **1** | **1** | **12** | **4** |
9755 *
9756 * @see https://developer.mozilla.org/docs/Web/CSS/border-right-color
9757 */
9758 "border-right-color"?: Property.BorderRightColor | undefined;
9759 /**
9760 * The **`border-right-style`** CSS property sets the line style of an element's right `border`.
9761 *
9762 * **Syntax**: `<line-style>`
9763 *
9764 * **Initial value**: `none`
9765 *
9766 * | Chrome | Firefox | Safari | Edge | IE |
9767 * | :----: | :-----: | :----: | :----: | :-----: |
9768 * | **1** | **1** | **1** | **12** | **5.5** |
9769 *
9770 * @see https://developer.mozilla.org/docs/Web/CSS/border-right-style
9771 */
9772 "border-right-style"?: Property.BorderRightStyle | undefined;
9773 /**
9774 * The **`border-right-width`** CSS property sets the width of the right border of an element.
9775 *
9776 * **Syntax**: `<line-width>`
9777 *
9778 * **Initial value**: `medium`
9779 *
9780 * | Chrome | Firefox | Safari | Edge | IE |
9781 * | :----: | :-----: | :----: | :----: | :---: |
9782 * | **1** | **1** | **1** | **12** | **4** |
9783 *
9784 * @see https://developer.mozilla.org/docs/Web/CSS/border-right-width
9785 */
9786 "border-right-width"?: Property.BorderRightWidth<TLength> | undefined;
9787 /**
9788 * The **`border-spacing`** CSS property sets the distance between the borders of adjacent `<table>` cells. This property applies only when `border-collapse` is `separate`.
9789 *
9790 * **Syntax**: `<length> <length>?`
9791 *
9792 * **Initial value**: `0`
9793 *
9794 * | Chrome | Firefox | Safari | Edge | IE |
9795 * | :----: | :-----: | :----: | :----: | :---: |
9796 * | **1** | **1** | **1** | **12** | **8** |
9797 *
9798 * @see https://developer.mozilla.org/docs/Web/CSS/border-spacing
9799 */
9800 "border-spacing"?: Property.BorderSpacing<TLength> | undefined;
9801 /**
9802 * The **`border-start-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
9803 *
9804 * **Syntax**: `<length-percentage>{1,2}`
9805 *
9806 * **Initial value**: `0`
9807 *
9808 * | Chrome | Firefox | Safari | Edge | IE |
9809 * | :----: | :-----: | :----: | :----: | :-: |
9810 * | **89** | **66** | **15** | **89** | No |
9811 *
9812 * @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius
9813 */
9814 "border-start-end-radius"?: Property.BorderStartEndRadius<TLength> | undefined;
9815 /**
9816 * The **`border-start-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
9817 *
9818 * **Syntax**: `<length-percentage>{1,2}`
9819 *
9820 * **Initial value**: `0`
9821 *
9822 * | Chrome | Firefox | Safari | Edge | IE |
9823 * | :----: | :-----: | :----: | :----: | :-: |
9824 * | **89** | **66** | **15** | **89** | No |
9825 *
9826 * @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius
9827 */
9828 "border-start-start-radius"?: Property.BorderStartStartRadius<TLength> | undefined;
9829 /**
9830 * The **`border-top-color`** CSS property sets the color of an element's top border. It can also be set with the shorthand CSS properties `border-color` or `border-top`.
9831 *
9832 * **Syntax**: `<color>`
9833 *
9834 * **Initial value**: `currentcolor`
9835 *
9836 * | Chrome | Firefox | Safari | Edge | IE |
9837 * | :----: | :-----: | :----: | :----: | :---: |
9838 * | **1** | **1** | **1** | **12** | **4** |
9839 *
9840 * @see https://developer.mozilla.org/docs/Web/CSS/border-top-color
9841 */
9842 "border-top-color"?: Property.BorderTopColor | undefined;
9843 /**
9844 * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
9845 *
9846 * **Syntax**: `<length-percentage>{1,2}`
9847 *
9848 * **Initial value**: `0`
9849 *
9850 * | Chrome | Firefox | Safari | Edge | IE |
9851 * | :-----: | :-----: | :-----: | :----: | :---: |
9852 * | **4** | **4** | **5** | **12** | **9** |
9853 * | 1 _-x-_ | | 3 _-x-_ | | |
9854 *
9855 * @see https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius
9856 */
9857 "border-top-left-radius"?: Property.BorderTopLeftRadius<TLength> | undefined;
9858 /**
9859 * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
9860 *
9861 * **Syntax**: `<length-percentage>{1,2}`
9862 *
9863 * **Initial value**: `0`
9864 *
9865 * | Chrome | Firefox | Safari | Edge | IE |
9866 * | :-----: | :-----: | :-----: | :----: | :---: |
9867 * | **4** | **4** | **5** | **12** | **9** |
9868 * | 1 _-x-_ | | 3 _-x-_ | | |
9869 *
9870 * @see https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius
9871 */
9872 "border-top-right-radius"?: Property.BorderTopRightRadius<TLength> | undefined;
9873 /**
9874 * The **`border-top-style`** CSS property sets the line style of an element's top `border`.
9875 *
9876 * **Syntax**: `<line-style>`
9877 *
9878 * **Initial value**: `none`
9879 *
9880 * | Chrome | Firefox | Safari | Edge | IE |
9881 * | :----: | :-----: | :----: | :----: | :-----: |
9882 * | **1** | **1** | **1** | **12** | **5.5** |
9883 *
9884 * @see https://developer.mozilla.org/docs/Web/CSS/border-top-style
9885 */
9886 "border-top-style"?: Property.BorderTopStyle | undefined;
9887 /**
9888 * The **`border-top-width`** CSS property sets the width of the top border of an element.
9889 *
9890 * **Syntax**: `<line-width>`
9891 *
9892 * **Initial value**: `medium`
9893 *
9894 * | Chrome | Firefox | Safari | Edge | IE |
9895 * | :----: | :-----: | :----: | :----: | :---: |
9896 * | **1** | **1** | **1** | **12** | **4** |
9897 *
9898 * @see https://developer.mozilla.org/docs/Web/CSS/border-top-width
9899 */
9900 "border-top-width"?: Property.BorderTopWidth<TLength> | undefined;
9901 /**
9902 * The **`bottom`** CSS property participates in setting the vertical position of a positioned element. It has no effect on non-positioned elements.
9903 *
9904 * **Syntax**: `<length> | <percentage> | auto`
9905 *
9906 * **Initial value**: `auto`
9907 *
9908 * | Chrome | Firefox | Safari | Edge | IE |
9909 * | :----: | :-----: | :----: | :----: | :---: |
9910 * | **1** | **1** | **1** | **12** | **5** |
9911 *
9912 * @see https://developer.mozilla.org/docs/Web/CSS/bottom
9913 */
9914 bottom?: Property.Bottom<TLength> | undefined;
9915 /**
9916 * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
9917 *
9918 * **Syntax**: `slice | clone`
9919 *
9920 * **Initial value**: `slice`
9921 *
9922 * | Chrome | Firefox | Safari | Edge | IE |
9923 * | :----------: | :-----: | :---------: | :----------: | :-: |
9924 * | **22** _-x-_ | **32** | **7** _-x-_ | **79** _-x-_ | No |
9925 *
9926 * @see https://developer.mozilla.org/docs/Web/CSS/box-decoration-break
9927 */
9928 "box-decoration-break"?: Property.BoxDecorationBreak | undefined;
9929 /**
9930 * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.
9931 *
9932 * **Syntax**: `none | <shadow>#`
9933 *
9934 * **Initial value**: `none`
9935 *
9936 * | Chrome | Firefox | Safari | Edge | IE |
9937 * | :-----: | :-----: | :-----: | :----: | :---: |
9938 * | **10** | **4** | **5.1** | **12** | **9** |
9939 * | 1 _-x-_ | | 3 _-x-_ | | |
9940 *
9941 * @see https://developer.mozilla.org/docs/Web/CSS/box-shadow
9942 */
9943 "box-shadow"?: Property.BoxShadow | undefined;
9944 /**
9945 * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
9946 *
9947 * **Syntax**: `content-box | border-box`
9948 *
9949 * **Initial value**: `content-box`
9950 *
9951 * | Chrome | Firefox | Safari | Edge | IE |
9952 * | :-----: | :-----: | :-----: | :----: | :---: |
9953 * | **10** | **29** | **5.1** | **12** | **8** |
9954 * | 1 _-x-_ | 1 _-x-_ | 3 _-x-_ | | |
9955 *
9956 * @see https://developer.mozilla.org/docs/Web/CSS/box-sizing
9957 */
9958 "box-sizing"?: Property.BoxSizing | undefined;
9959 /**
9960 * The **`break-after`** CSS property sets how page, column, or region breaks should behave after a generated box. If there is no generated box, the property is ignored.
9961 *
9962 * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`
9963 *
9964 * **Initial value**: `auto`
9965 *
9966 * ---
9967 *
9968 * _Supported in Multi-column Layout_
9969 *
9970 * | Chrome | Firefox | Safari | Edge | IE |
9971 * | :----: | :-----: | :----: | :----: | :----: |
9972 * | **50** | **65** | No | **12** | **10** |
9973 *
9974 * ---
9975 *
9976 * _Supported in Paged Media_
9977 *
9978 * | Chrome | Firefox | Safari | Edge | IE |
9979 * | :----: | :-----: | :----: | :----: | :----: |
9980 * | **50** | **65** | **10** | **12** | **10** |
9981 *
9982 * ---
9983 *
9984 * @see https://developer.mozilla.org/docs/Web/CSS/break-after
9985 */
9986 "break-after"?: Property.BreakAfter | undefined;
9987 /**
9988 * The **`break-before`** CSS property sets how page, column, or region breaks should behave before a generated box. If there is no generated box, the property is ignored.
9989 *
9990 * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`
9991 *
9992 * **Initial value**: `auto`
9993 *
9994 * ---
9995 *
9996 * _Supported in Multi-column Layout_
9997 *
9998 * | Chrome | Firefox | Safari | Edge | IE |
9999 * | :----: | :-----: | :----: | :----: | :----: |
10000 * | **50** | **65** | No | **12** | **10** |
10001 *
10002 * ---
10003 *
10004 * _Supported in Paged Media_
10005 *
10006 * | Chrome | Firefox | Safari | Edge | IE |
10007 * | :----: | :-----: | :----: | :----: | :----: |
10008 * | **50** | **65** | **10** | **12** | **10** |
10009 *
10010 * ---
10011 *
10012 * @see https://developer.mozilla.org/docs/Web/CSS/break-before
10013 */
10014 "break-before"?: Property.BreakBefore | undefined;
10015 /**
10016 * The **`break-inside`** CSS property sets how page, column, or region breaks should behave inside a generated box. If there is no generated box, the property is ignored.
10017 *
10018 * **Syntax**: `auto | avoid | avoid-page | avoid-column | avoid-region`
10019 *
10020 * **Initial value**: `auto`
10021 *
10022 * ---
10023 *
10024 * _Supported in Multi-column Layout_
10025 *
10026 * | Chrome | Firefox | Safari | Edge | IE |
10027 * | :----: | :-----: | :----: | :----: | :----: |
10028 * | **50** | **65** | **10** | **12** | **10** |
10029 *
10030 * ---
10031 *
10032 * _Supported in Paged Media_
10033 *
10034 * | Chrome | Firefox | Safari | Edge | IE |
10035 * | :----: | :-----: | :----: | :----: | :----: |
10036 * | **50** | **65** | **10** | **12** | **10** |
10037 *
10038 * ---
10039 *
10040 * @see https://developer.mozilla.org/docs/Web/CSS/break-inside
10041 */
10042 "break-inside"?: Property.BreakInside | undefined;
10043 /**
10044 * The **`caption-side`** CSS property puts the content of a table's `<caption>` on the specified side. The values are relative to the `writing-mode` of the table.
10045 *
10046 * **Syntax**: `top | bottom | block-start | block-end | inline-start | inline-end`
10047 *
10048 * **Initial value**: `top`
10049 *
10050 * | Chrome | Firefox | Safari | Edge | IE |
10051 * | :----: | :-----: | :----: | :----: | :---: |
10052 * | **1** | **1** | **1** | **12** | **8** |
10053 *
10054 * @see https://developer.mozilla.org/docs/Web/CSS/caption-side
10055 */
10056 "caption-side"?: Property.CaptionSide | undefined;
10057 /**
10058 * The **`caret-color`** CSS property sets the color of the **insertion caret**, the visible marker where the next character typed will be inserted. This is sometimes referred to as the **text input cursor**. The caret appears in elements such as `<input>` or those with the `contenteditable` attribute. The caret is typically a thin vertical line that flashes to help make it more noticeable. By default, it is black, but its color can be altered with this property.
10059 *
10060 * **Syntax**: `auto | <color>`
10061 *
10062 * **Initial value**: `auto`
10063 *
10064 * | Chrome | Firefox | Safari | Edge | IE |
10065 * | :----: | :-----: | :------: | :----: | :-: |
10066 * | **57** | **53** | **11.1** | **79** | No |
10067 *
10068 * @see https://developer.mozilla.org/docs/Web/CSS/caret-color
10069 */
10070 "caret-color"?: Property.CaretColor | undefined;
10071 /**
10072 * The **`clear`** CSS property sets whether an element must be moved below (cleared) floating elements that precede it. The `clear` property applies to floating and non-floating elements.
10073 *
10074 * **Syntax**: `none | left | right | both | inline-start | inline-end`
10075 *
10076 * **Initial value**: `none`
10077 *
10078 * | Chrome | Firefox | Safari | Edge | IE |
10079 * | :----: | :-----: | :----: | :----: | :---: |
10080 * | **1** | **1** | **1** | **12** | **4** |
10081 *
10082 * @see https://developer.mozilla.org/docs/Web/CSS/clear
10083 */
10084 clear?: Property.Clear | undefined;
10085 /**
10086 * The `**clip-path**` CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden.
10087 *
10088 * **Syntax**: `<clip-source> | [ <basic-shape> || <geometry-box> ] | none`
10089 *
10090 * **Initial value**: `none`
10091 *
10092 * | Chrome | Firefox | Safari | Edge | IE |
10093 * | :------: | :-----: | :-------: | :----: | :----: |
10094 * | **55** | **3.5** | **9.1** | **12** | **10** |
10095 * | 23 _-x-_ | | 6.1 _-x-_ | | |
10096 *
10097 * @see https://developer.mozilla.org/docs/Web/CSS/clip-path
10098 */
10099 "clip-path"?: Property.ClipPath | undefined;
10100 /**
10101 * The **`color`** CSS property sets the foreground color value of an element's text and text decorations, and sets the `<currentcolor>` value. `currentcolor` may be used as an indirect value on _other_ properties and is the default for other color properties, such as `border-color`.
10102 *
10103 * **Syntax**: `<color>`
10104 *
10105 * **Initial value**: Varies from one browser to another
10106 *
10107 * | Chrome | Firefox | Safari | Edge | IE |
10108 * | :----: | :-----: | :----: | :----: | :---: |
10109 * | **1** | **1** | **1** | **12** | **3** |
10110 *
10111 * @see https://developer.mozilla.org/docs/Web/CSS/color
10112 */
10113 color?: Property.Color | undefined;
10114 /**
10115 * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.
10116 *
10117 * **Syntax**: `economy | exact`
10118 *
10119 * **Initial value**: `economy`
10120 *
10121 * | Chrome | Firefox | Safari | Edge | IE |
10122 * | :-----------------------------------: | :-----: | :----------------------------------: | :-----------------------------------: | :-: |
10123 * | **49** _(-webkit-print-color-adjust)_ | **48** | **6** _(-webkit-print-color-adjust)_ | **79** _(-webkit-print-color-adjust)_ | No |
10124 *
10125 * @see https://developer.mozilla.org/docs/Web/CSS/color-adjust
10126 */
10127 "color-adjust"?: Property.ColorAdjust | undefined;
10128 /**
10129 * The **`color-scheme`** CSS property allows an element to indicate which color schemes it can comfortably be rendered in.
10130 *
10131 * **Syntax**: `normal | [ light | dark | <custom-ident> ]+`
10132 *
10133 * **Initial value**: `normal`
10134 *
10135 * | Chrome | Firefox | Safari | Edge | IE |
10136 * | :----: | :-----: | :----: | :----: | :-: |
10137 * | **81** | No | **13** | **81** | No |
10138 *
10139 * @see https://developer.mozilla.org/docs/Web/CSS/color-scheme
10140 */
10141 "color-scheme"?: Property.ColorScheme | undefined;
10142 /**
10143 * The **`column-count`** CSS property breaks an element's content into the specified number of columns.
10144 *
10145 * **Syntax**: `<integer> | auto`
10146 *
10147 * **Initial value**: `auto`
10148 *
10149 * | Chrome | Firefox | Safari | Edge | IE |
10150 * | :-----: | :-----: | :-----: | :----: | :----: |
10151 * | **50** | **52** | **9** | **12** | **10** |
10152 * | 1 _-x-_ | | 3 _-x-_ | | |
10153 *
10154 * @see https://developer.mozilla.org/docs/Web/CSS/column-count
10155 */
10156 "column-count"?: Property.ColumnCount | undefined;
10157 /**
10158 * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.
10159 *
10160 * **Syntax**: `auto | balance | balance-all`
10161 *
10162 * **Initial value**: `balance`
10163 *
10164 * | Chrome | Firefox | Safari | Edge | IE |
10165 * | :----: | :-----: | :-----: | :----: | :----: |
10166 * | **50** | **52** | **9** | **12** | **10** |
10167 * | | | 8 _-x-_ | | |
10168 *
10169 * @see https://developer.mozilla.org/docs/Web/CSS/column-fill
10170 */
10171 "column-fill"?: Property.ColumnFill | undefined;
10172 /**
10173 * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
10174 *
10175 * **Syntax**: `normal | <length-percentage>`
10176 *
10177 * **Initial value**: `normal`
10178 *
10179 * ---
10180 *
10181 * _Supported in Flex Layout_
10182 *
10183 * | Chrome | Firefox | Safari | Edge | IE |
10184 * | :----: | :-----: | :------: | :----: | :-: |
10185 * | **84** | **63** | **14.1** | **84** | No |
10186 *
10187 * ---
10188 *
10189 * _Supported in Grid Layout_
10190 *
10191 * | Chrome | Firefox | Safari | Edge | IE |
10192 * | :--------------------: | :--------------------: | :----------------------: | :----: | :-: |
10193 * | **66** | **61** | **12** | **16** | No |
10194 * | 57 _(grid-column-gap)_ | 52 _(grid-column-gap)_ | 10.1 _(grid-column-gap)_ | | |
10195 *
10196 * ---
10197 *
10198 * _Supported in Multi-column Layout_
10199 *
10200 * | Chrome | Firefox | Safari | Edge | IE |
10201 * | :-----: | :-----: | :-----: | :----: | :----: |
10202 * | **50** | **52** | **10** | **12** | **10** |
10203 * | 1 _-x-_ | | 3 _-x-_ | | |
10204 *
10205 * ---
10206 *
10207 * @see https://developer.mozilla.org/docs/Web/CSS/column-gap
10208 */
10209 "column-gap"?: Property.ColumnGap<TLength> | undefined;
10210 /**
10211 * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.
10212 *
10213 * **Syntax**: `<color>`
10214 *
10215 * **Initial value**: `currentcolor`
10216 *
10217 * | Chrome | Firefox | Safari | Edge | IE |
10218 * | :-----: | :-----: | :-----: | :----: | :----: |
10219 * | **50** | **52** | **9** | **12** | **10** |
10220 * | 1 _-x-_ | | 3 _-x-_ | | |
10221 *
10222 * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-color
10223 */
10224 "column-rule-color"?: Property.ColumnRuleColor | undefined;
10225 /**
10226 * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.
10227 *
10228 * **Syntax**: `<'border-style'>`
10229 *
10230 * **Initial value**: `none`
10231 *
10232 * | Chrome | Firefox | Safari | Edge | IE |
10233 * | :-----: | :-----: | :-----: | :----: | :----: |
10234 * | **50** | **52** | **9** | **12** | **10** |
10235 * | 1 _-x-_ | | 3 _-x-_ | | |
10236 *
10237 * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-style
10238 */
10239 "column-rule-style"?: Property.ColumnRuleStyle | undefined;
10240 /**
10241 * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
10242 *
10243 * **Syntax**: `<'border-width'>`
10244 *
10245 * **Initial value**: `medium`
10246 *
10247 * | Chrome | Firefox | Safari | Edge | IE |
10248 * | :-----: | :-----: | :-----: | :----: | :----: |
10249 * | **50** | **52** | **9** | **12** | **10** |
10250 * | 1 _-x-_ | | 3 _-x-_ | | |
10251 *
10252 * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-width
10253 */
10254 "column-rule-width"?: Property.ColumnRuleWidth<TLength> | undefined;
10255 /**
10256 * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`.
10257 *
10258 * **Syntax**: `none | all`
10259 *
10260 * **Initial value**: `none`
10261 *
10262 * | Chrome | Firefox | Safari | Edge | IE |
10263 * | :-----: | :-----: | :-------: | :----: | :----: |
10264 * | **50** | **71** | **9** | **12** | **10** |
10265 * | 6 _-x-_ | | 5.1 _-x-_ | | |
10266 *
10267 * @see https://developer.mozilla.org/docs/Web/CSS/column-span
10268 */
10269 "column-span"?: Property.ColumnSpan | undefined;
10270 /**
10271 * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.
10272 *
10273 * **Syntax**: `<length> | auto`
10274 *
10275 * **Initial value**: `auto`
10276 *
10277 * | Chrome | Firefox | Safari | Edge | IE |
10278 * | :-----: | :-----: | :-----: | :----: | :----: |
10279 * | **50** | **50** | **9** | **12** | **10** |
10280 * | 1 _-x-_ | | 3 _-x-_ | | |
10281 *
10282 * @see https://developer.mozilla.org/docs/Web/CSS/column-width
10283 */
10284 "column-width"?: Property.ColumnWidth<TLength> | undefined;
10285 /**
10286 * The **`contain`** CSS property allows an author to indicate that an element and its contents are, as much as possible, _independent_ of the rest of the document tree. This allows the browser to recalculate layout, style, paint, size, or any combination of them for a limited area of the DOM and not the entire page, leading to obvious performance benefits.
10287 *
10288 * **Syntax**: `none | strict | content | [ size || layout || style || paint ]`
10289 *
10290 * **Initial value**: `none`
10291 *
10292 * | Chrome | Firefox | Safari | Edge | IE |
10293 * | :----: | :-----: | :----: | :----: | :-: |
10294 * | **52** | **69** | No | **79** | No |
10295 *
10296 * @see https://developer.mozilla.org/docs/Web/CSS/contain
10297 */
10298 contain?: Property.Contain | undefined;
10299 /**
10300 * The **`content`** CSS property replaces an element with a generated value. Objects inserted using the `content` property are **anonymous replaced elements**_._
10301 *
10302 * **Syntax**: `normal | none | [ <content-replacement> | <content-list> ] [/ <string> ]?`
10303 *
10304 * **Initial value**: `normal`
10305 *
10306 * | Chrome | Firefox | Safari | Edge | IE |
10307 * | :----: | :-----: | :----: | :----: | :---: |
10308 * | **1** | **1** | **1** | **12** | **8** |
10309 *
10310 * @see https://developer.mozilla.org/docs/Web/CSS/content
10311 */
10312 content?: Property.Content | undefined;
10313 /**
10314 * The **`content-visibility`** CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. Basically it enables the user agent to skip an element's rendering work, including layout and painting, until it is needed, makes the initial page load much faster.
10315 *
10316 * **Syntax**: `visible | auto | hidden`
10317 *
10318 * **Initial value**: `visible`
10319 *
10320 * | Chrome | Firefox | Safari | Edge | IE |
10321 * | :----: | :-----: | :----: | :----: | :-: |
10322 * | **85** | No | No | **85** | No |
10323 *
10324 * @see https://developer.mozilla.org/docs/Web/CSS/content-visibility
10325 */
10326 "content-visibility"?: Property.ContentVisibility | undefined;
10327 /**
10328 * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value.
10329 *
10330 * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`
10331 *
10332 * **Initial value**: `none`
10333 *
10334 * | Chrome | Firefox | Safari | Edge | IE |
10335 * | :----: | :-----: | :----: | :----: | :---: |
10336 * | **2** | **1** | **3** | **12** | **8** |
10337 *
10338 * @see https://developer.mozilla.org/docs/Web/CSS/counter-increment
10339 */
10340 "counter-increment"?: Property.CounterIncrement | undefined;
10341 /**
10342 * The **`counter-reset`** CSS property resets a CSS counter to a given value.
10343 *
10344 * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`
10345 *
10346 * **Initial value**: `none`
10347 *
10348 * | Chrome | Firefox | Safari | Edge | IE |
10349 * | :----: | :-----: | :----: | :----: | :---: |
10350 * | **2** | **1** | **3** | **12** | **8** |
10351 *
10352 * @see https://developer.mozilla.org/docs/Web/CSS/counter-reset
10353 */
10354 "counter-reset"?: Property.CounterReset | undefined;
10355 /**
10356 * The **`counter-set`** CSS property sets a CSS counter to a given value. It manipulates the value of existing counters, and will only create new counters if there isn't already a counter of the given name on the element.
10357 *
10358 * **Syntax**: `[ <custom-ident> <integer>? ]+ | none`
10359 *
10360 * **Initial value**: `none`
10361 *
10362 * | Chrome | Firefox | Safari | Edge | IE |
10363 * | :----: | :-----: | :----: | :----: | :-: |
10364 * | **85** | **68** | No | **85** | No |
10365 *
10366 * @see https://developer.mozilla.org/docs/Web/CSS/counter-set
10367 */
10368 "counter-set"?: Property.CounterSet | undefined;
10369 /**
10370 * The **`cursor`** CSS property sets the type of mouse cursor, if any, to show when the mouse pointer is over an element.
10371 *
10372 * **Syntax**: `[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]`
10373 *
10374 * **Initial value**: `auto`
10375 *
10376 * | Chrome | Firefox | Safari | Edge | IE |
10377 * | :----: | :-----: | :-----: | :----: | :---: |
10378 * | **1** | **1** | **1.2** | **12** | **4** |
10379 *
10380 * @see https://developer.mozilla.org/docs/Web/CSS/cursor
10381 */
10382 cursor?: Property.Cursor | undefined;
10383 /**
10384 * The **`direction`** CSS property sets the direction of text, table columns, and horizontal overflow. Use `rtl` for languages written from right to left (like Hebrew or Arabic), and `ltr` for those written from left to right (like English and most other languages).
10385 *
10386 * **Syntax**: `ltr | rtl`
10387 *
10388 * **Initial value**: `ltr`
10389 *
10390 * | Chrome | Firefox | Safari | Edge | IE |
10391 * | :----: | :-----: | :----: | :----: | :-----: |
10392 * | **2** | **1** | **1** | **12** | **5.5** |
10393 *
10394 * @see https://developer.mozilla.org/docs/Web/CSS/direction
10395 */
10396 direction?: Property.Direction | undefined;
10397 /**
10398 * The **`display`** CSS property sets whether an element is treated as a block or inline element and the layout used for its children, such as flow layout, grid or flex.
10399 *
10400 * **Syntax**: `[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy>`
10401 *
10402 * **Initial value**: `inline`
10403 *
10404 * | Chrome | Firefox | Safari | Edge | IE |
10405 * | :----: | :-----: | :----: | :----: | :---: |
10406 * | **1** | **1** | **1** | **12** | **4** |
10407 *
10408 * @see https://developer.mozilla.org/docs/Web/CSS/display
10409 */
10410 display?: Property.Display | undefined;
10411 /**
10412 * The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `<table>` cells that have no visible content.
10413 *
10414 * **Syntax**: `show | hide`
10415 *
10416 * **Initial value**: `show`
10417 *
10418 * | Chrome | Firefox | Safari | Edge | IE |
10419 * | :----: | :-----: | :-----: | :----: | :---: |
10420 * | **1** | **1** | **1.2** | **12** | **8** |
10421 *
10422 * @see https://developer.mozilla.org/docs/Web/CSS/empty-cells
10423 */
10424 "empty-cells"?: Property.EmptyCells | undefined;
10425 /**
10426 * The **`filter`** CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders.
10427 *
10428 * **Syntax**: `none | <filter-function-list>`
10429 *
10430 * **Initial value**: `none`
10431 *
10432 * | Chrome | Firefox | Safari | Edge | IE |
10433 * | :------: | :-----: | :-----: | :----: | :-: |
10434 * | **53** | **35** | **9.1** | **12** | No |
10435 * | 18 _-x-_ | | 6 _-x-_ | | |
10436 *
10437 * @see https://developer.mozilla.org/docs/Web/CSS/filter
10438 */
10439 filter?: Property.Filter | undefined;
10440 /**
10441 * The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`.
10442 *
10443 * **Syntax**: `content | <'width'>`
10444 *
10445 * **Initial value**: `auto`
10446 *
10447 * | Chrome | Firefox | Safari | Edge | IE |
10448 * | :------: | :-----: | :-----: | :----: | :----: |
10449 * | **29** | **22** | **9** | **12** | **11** |
10450 * | 22 _-x-_ | | 7 _-x-_ | | |
10451 *
10452 * @see https://developer.mozilla.org/docs/Web/CSS/flex-basis
10453 */
10454 "flex-basis"?: Property.FlexBasis<TLength> | undefined;
10455 /**
10456 * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).
10457 *
10458 * **Syntax**: `row | row-reverse | column | column-reverse`
10459 *
10460 * **Initial value**: `row`
10461 *
10462 * | Chrome | Firefox | Safari | Edge | IE |
10463 * | :------: | :-----: | :-----: | :----: | :------: |
10464 * | **29** | **20** | **9** | **12** | **11** |
10465 * | 21 _-x-_ | | 7 _-x-_ | | 10 _-x-_ |
10466 *
10467 * @see https://developer.mozilla.org/docs/Web/CSS/flex-direction
10468 */
10469 "flex-direction"?: Property.FlexDirection | undefined;
10470 /**
10471 * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.
10472 *
10473 * **Syntax**: `<number>`
10474 *
10475 * **Initial value**: `0`
10476 *
10477 * | Chrome | Firefox | Safari | Edge | IE |
10478 * | :------: | :-----: | :-----: | :----: | :----------------------: |
10479 * | **29** | **20** | **9** | **12** | **11** |
10480 * | 22 _-x-_ | | 7 _-x-_ | | 10 _(-ms-flex-positive)_ |
10481 *
10482 * @see https://developer.mozilla.org/docs/Web/CSS/flex-grow
10483 */
10484 "flex-grow"?: Property.FlexGrow | undefined;
10485 /**
10486 * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of all flex items is larger than the flex container, items shrink to fit according to `flex-shrink`.
10487 *
10488 * **Syntax**: `<number>`
10489 *
10490 * **Initial value**: `1`
10491 *
10492 * | Chrome | Firefox | Safari | Edge | IE |
10493 * | :------: | :-----: | :-----: | :----: | :----: |
10494 * | **29** | **20** | **9** | **12** | **10** |
10495 * | 22 _-x-_ | | 8 _-x-_ | | |
10496 *
10497 * @see https://developer.mozilla.org/docs/Web/CSS/flex-shrink
10498 */
10499 "flex-shrink"?: Property.FlexShrink | undefined;
10500 /**
10501 * The **`flex-wrap`** CSS property sets whether flex items are forced onto one line or can wrap onto multiple lines. If wrapping is allowed, it sets the direction that lines are stacked.
10502 *
10503 * **Syntax**: `nowrap | wrap | wrap-reverse`
10504 *
10505 * **Initial value**: `nowrap`
10506 *
10507 * | Chrome | Firefox | Safari | Edge | IE |
10508 * | :------: | :-----: | :-------: | :----: | :----: |
10509 * | **29** | **28** | **9** | **12** | **11** |
10510 * | 21 _-x-_ | | 6.1 _-x-_ | | |
10511 *
10512 * @see https://developer.mozilla.org/docs/Web/CSS/flex-wrap
10513 */
10514 "flex-wrap"?: Property.FlexWrap | undefined;
10515 /**
10516 * The **`float`** CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning).
10517 *
10518 * **Syntax**: `left | right | none | inline-start | inline-end`
10519 *
10520 * **Initial value**: `none`
10521 *
10522 * | Chrome | Firefox | Safari | Edge | IE |
10523 * | :----: | :-----: | :----: | :----: | :---: |
10524 * | **1** | **1** | **1** | **12** | **4** |
10525 *
10526 * @see https://developer.mozilla.org/docs/Web/CSS/float
10527 */
10528 float?: Property.Float | undefined;
10529 /**
10530 * The **`font-family`** CSS property specifies a prioritized list of one or more font family names and/or generic family names for the selected element.
10531 *
10532 * **Syntax**: `[ <family-name> | <generic-family> ]#`
10533 *
10534 * **Initial value**: depends on user agent
10535 *
10536 * | Chrome | Firefox | Safari | Edge | IE |
10537 * | :----: | :-----: | :----: | :----: | :---: |
10538 * | **1** | **1** | **1** | **12** | **3** |
10539 *
10540 * @see https://developer.mozilla.org/docs/Web/CSS/font-family
10541 */
10542 "font-family"?: Property.FontFamily | undefined;
10543 /**
10544 * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
10545 *
10546 * **Syntax**: `normal | <feature-tag-value>#`
10547 *
10548 * **Initial value**: `normal`
10549 *
10550 * | Chrome | Firefox | Safari | Edge | IE |
10551 * | :------: | :------: | :-----: | :----: | :----: |
10552 * | **48** | **34** | **9.1** | **15** | **10** |
10553 * | 16 _-x-_ | 15 _-x-_ | | | |
10554 *
10555 * @see https://developer.mozilla.org/docs/Web/CSS/font-feature-settings
10556 */
10557 "font-feature-settings"?: Property.FontFeatureSettings | undefined;
10558 /**
10559 * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font.
10560 *
10561 * **Syntax**: `auto | normal | none`
10562 *
10563 * **Initial value**: `auto`
10564 *
10565 * | Chrome | Firefox | Safari | Edge | IE |
10566 * | :----: | :-----: | :-----: | :----: | :-: |
10567 * | **33** | **32** | **9** | **79** | No |
10568 * | | | 6 _-x-_ | | |
10569 *
10570 * @see https://developer.mozilla.org/docs/Web/CSS/font-kerning
10571 */
10572 "font-kerning"?: Property.FontKerning | undefined;
10573 /**
10574 * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface.
10575 *
10576 * **Syntax**: `normal | <string>`
10577 *
10578 * **Initial value**: `normal`
10579 *
10580 * | Chrome | Firefox | Safari | Edge | IE |
10581 * | :----: | :-----: | :----: | :--: | :-: |
10582 * | No | **34** | No | No | No |
10583 * | | 4 _-x-_ | | | |
10584 *
10585 * @see https://developer.mozilla.org/docs/Web/CSS/font-language-override
10586 */
10587 "font-language-override"?: Property.FontLanguageOverride | undefined;
10588 /**
10589 * The **`font-optical-sizing`** CSS property sets whether text rendering is optimized for viewing at different sizes.
10590 *
10591 * **Syntax**: `auto | none`
10592 *
10593 * **Initial value**: `auto`
10594 *
10595 * | Chrome | Firefox | Safari | Edge | IE |
10596 * | :----: | :-----: | :----: | :----: | :-: |
10597 * | **79** | **62** | **11** | **17** | No |
10598 *
10599 * @see https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing
10600 */
10601 "font-optical-sizing"?: Property.FontOpticalSizing | undefined;
10602 /**
10603 * The **`font-size`** CSS property sets the size of the font. Changing the font size also updates the sizes of the font size-relative `<length>` units, such as `em`, `ex`, and so forth.
10604 *
10605 * **Syntax**: `<absolute-size> | <relative-size> | <length-percentage>`
10606 *
10607 * **Initial value**: `medium`
10608 *
10609 * | Chrome | Firefox | Safari | Edge | IE |
10610 * | :----: | :-----: | :----: | :----: | :-----: |
10611 * | **1** | **1** | **1** | **12** | **5.5** |
10612 *
10613 * @see https://developer.mozilla.org/docs/Web/CSS/font-size
10614 */
10615 "font-size"?: Property.FontSize<TLength> | undefined;
10616 /**
10617 * The **`font-size-adjust`** CSS property sets the size of lower-case letters relative to the current font size (which defines the size of upper-case letters).
10618 *
10619 * **Syntax**: `none | [ ex-height | cap-height | ch-width | ic-width | ic-height ]? [ from-font | <number> ]`
10620 *
10621 * **Initial value**: `none`
10622 *
10623 * | Chrome | Firefox | Safari | Edge | IE |
10624 * | :----: | :-----: | :----: | :--: | :-: |
10625 * | n/a | **1** | No | n/a | No |
10626 *
10627 * @see https://developer.mozilla.org/docs/Web/CSS/font-size-adjust
10628 */
10629 "font-size-adjust"?: Property.FontSizeAdjust | undefined;
10630 /**
10631 * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.
10632 *
10633 * **Syntax**: `auto | never | always | <absolute-size> | <length>`
10634 *
10635 * **Initial value**: `auto`
10636 *
10637 * | Chrome | Firefox | Safari | Edge | IE |
10638 * | :------------------------------: | :--------------------------------: | :------------------------------: | :-------------------------------: | :-: |
10639 * | **5** _(-webkit-font-smoothing)_ | **25** _(-moz-osx-font-smoothing)_ | **4** _(-webkit-font-smoothing)_ | **79** _(-webkit-font-smoothing)_ | No |
10640 *
10641 * @see https://developer.mozilla.org/docs/Web/CSS/font-smooth
10642 */
10643 "font-smooth"?: Property.FontSmooth<TLength> | undefined;
10644 /**
10645 * The **`font-stretch`** CSS property selects a normal, condensed, or expanded face from a font.
10646 *
10647 * **Syntax**: `<font-stretch-absolute>`
10648 *
10649 * **Initial value**: `normal`
10650 *
10651 * | Chrome | Firefox | Safari | Edge | IE |
10652 * | :----: | :-----: | :----: | :----: | :---: |
10653 * | **60** | **9** | **11** | **12** | **9** |
10654 *
10655 * @see https://developer.mozilla.org/docs/Web/CSS/font-stretch
10656 */
10657 "font-stretch"?: Property.FontStretch | undefined;
10658 /**
10659 * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`.
10660 *
10661 * **Syntax**: `normal | italic | oblique <angle>?`
10662 *
10663 * **Initial value**: `normal`
10664 *
10665 * | Chrome | Firefox | Safari | Edge | IE |
10666 * | :----: | :-----: | :----: | :----: | :---: |
10667 * | **1** | **1** | **1** | **12** | **4** |
10668 *
10669 * @see https://developer.mozilla.org/docs/Web/CSS/font-style
10670 */
10671 "font-style"?: Property.FontStyle | undefined;
10672 /**
10673 * The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser.
10674 *
10675 * **Syntax**: `none | [ weight || style || small-caps ]`
10676 *
10677 * **Initial value**: `weight style`
10678 *
10679 * | Chrome | Firefox | Safari | Edge | IE |
10680 * | :----: | :-----: | :----: | :--: | :-: |
10681 * | No | **34** | **9** | No | No |
10682 *
10683 * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis
10684 */
10685 "font-synthesis"?: Property.FontSynthesis | undefined;
10686 /**
10687 * The **`font-variant`** CSS shorthand property allows you to set all the font variants for a font.
10688 *
10689 * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]`
10690 *
10691 * **Initial value**: `normal`
10692 *
10693 * | Chrome | Firefox | Safari | Edge | IE |
10694 * | :----: | :-----: | :----: | :----: | :---: |
10695 * | **1** | **1** | **1** | **12** | **4** |
10696 *
10697 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant
10698 */
10699 "font-variant"?: Property.FontVariant | undefined;
10700 /**
10701 * The **`font-variant-caps`** CSS property controls the use of alternate glyphs for capital letters.
10702 *
10703 * **Syntax**: `normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps`
10704 *
10705 * **Initial value**: `normal`
10706 *
10707 * | Chrome | Firefox | Safari | Edge | IE |
10708 * | :----: | :-----: | :-----: | :----: | :-: |
10709 * | **52** | **34** | **9.1** | **79** | No |
10710 *
10711 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-caps
10712 */
10713 "font-variant-caps"?: Property.FontVariantCaps | undefined;
10714 /**
10715 * The **`font-variant-east-asian`** CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese.
10716 *
10717 * **Syntax**: `normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]`
10718 *
10719 * **Initial value**: `normal`
10720 *
10721 * | Chrome | Firefox | Safari | Edge | IE |
10722 * | :----: | :-----: | :-----: | :----: | :-: |
10723 * | **63** | **34** | **9.1** | **79** | No |
10724 *
10725 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian
10726 */
10727 "font-variant-east-asian"?: Property.FontVariantEastAsian | undefined;
10728 /**
10729 * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text.
10730 *
10731 * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]`
10732 *
10733 * **Initial value**: `normal`
10734 *
10735 * | Chrome | Firefox | Safari | Edge | IE |
10736 * | :------: | :-----: | :-----: | :----: | :-: |
10737 * | **34** | **34** | **9.1** | **79** | No |
10738 * | 31 _-x-_ | | 7 _-x-_ | | |
10739 *
10740 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures
10741 */
10742 "font-variant-ligatures"?: Property.FontVariantLigatures | undefined;
10743 /**
10744 * The **`font-variant-numeric`** CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers.
10745 *
10746 * **Syntax**: `normal | [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ]`
10747 *
10748 * **Initial value**: `normal`
10749 *
10750 * | Chrome | Firefox | Safari | Edge | IE |
10751 * | :----: | :-----: | :-----: | :----: | :-: |
10752 * | **52** | **34** | **9.1** | **79** | No |
10753 *
10754 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric
10755 */
10756 "font-variant-numeric"?: Property.FontVariantNumeric | undefined;
10757 /**
10758 * The **`font-variant-position`** CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript.
10759 *
10760 * **Syntax**: `normal | sub | super`
10761 *
10762 * **Initial value**: `normal`
10763 *
10764 * | Chrome | Firefox | Safari | Edge | IE |
10765 * | :----: | :-----: | :-----: | :--: | :-: |
10766 * | No | **34** | **9.1** | No | No |
10767 *
10768 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position
10769 */
10770 "font-variant-position"?: Property.FontVariantPosition | undefined;
10771 /**
10772 * The **`font-variation-settings`** CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values.
10773 *
10774 * **Syntax**: `normal | [ <string> <number> ]#`
10775 *
10776 * **Initial value**: `normal`
10777 *
10778 * | Chrome | Firefox | Safari | Edge | IE |
10779 * | :----: | :-----: | :----: | :----: | :-: |
10780 * | **62** | **62** | **11** | **17** | No |
10781 *
10782 * @see https://developer.mozilla.org/docs/Web/CSS/font-variation-settings
10783 */
10784 "font-variation-settings"?: Property.FontVariationSettings | undefined;
10785 /**
10786 * The **`font-weight`** CSS property sets the weight (or boldness) of the font. The weights available depend on the `font-family` that is currently set.
10787 *
10788 * **Syntax**: `<font-weight-absolute> | bolder | lighter`
10789 *
10790 * **Initial value**: `normal`
10791 *
10792 * | Chrome | Firefox | Safari | Edge | IE |
10793 * | :----: | :-----: | :----: | :----: | :---: |
10794 * | **2** | **1** | **1** | **12** | **3** |
10795 *
10796 * @see https://developer.mozilla.org/docs/Web/CSS/font-weight
10797 */
10798 "font-weight"?: Property.FontWeight | undefined;
10799 /**
10800 * The **`forced-color-adjust`** CSS property allows authors to opt certain elements out of forced colors mode. This then restores the control of those values to CSS.
10801 *
10802 * **Syntax**: `auto | none`
10803 *
10804 * **Initial value**: `auto`
10805 *
10806 * | Chrome | Firefox | Safari | Edge | IE |
10807 * | :----: | :-----: | :----: | :-----------------------------: | :---------------------------------: |
10808 * | **89** | No | No | **79** | **10** _(-ms-high-contrast-adjust)_ |
10809 * | | | | 12 _(-ms-high-contrast-adjust)_ | |
10810 *
10811 * @see https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust
10812 */
10813 "forced-color-adjust"?: Property.ForcedColorAdjust | undefined;
10814 /**
10815 * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track or pattern of tracks.
10816 *
10817 * **Syntax**: `<track-size>+`
10818 *
10819 * **Initial value**: `auto`
10820 *
10821 * | Chrome | Firefox | Safari | Edge | IE |
10822 * | :----: | :-----: | :------: | :----: | :-------------------------: |
10823 * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-columns)_ |
10824 *
10825 * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns
10826 */
10827 "grid-auto-columns"?: Property.GridAutoColumns<TLength> | undefined;
10828 /**
10829 * The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid.
10830 *
10831 * **Syntax**: `[ row | column ] || dense`
10832 *
10833 * **Initial value**: `row`
10834 *
10835 * | Chrome | Firefox | Safari | Edge | IE |
10836 * | :----: | :-----: | :------: | :----: | :-: |
10837 * | **57** | **52** | **10.1** | **16** | No |
10838 *
10839 * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow
10840 */
10841 "grid-auto-flow"?: Property.GridAutoFlow | undefined;
10842 /**
10843 * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track or pattern of tracks.
10844 *
10845 * **Syntax**: `<track-size>+`
10846 *
10847 * **Initial value**: `auto`
10848 *
10849 * | Chrome | Firefox | Safari | Edge | IE |
10850 * | :----: | :-----: | :------: | :----: | :----------------------: |
10851 * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-rows)_ |
10852 *
10853 * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows
10854 */
10855 "grid-auto-rows"?: Property.GridAutoRows<TLength> | undefined;
10856 /**
10857 * The **`grid-column-end`** CSS property specifies a grid item’s end position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the block-end edge of its grid area.
10858 *
10859 * **Syntax**: `<grid-line>`
10860 *
10861 * **Initial value**: `auto`
10862 *
10863 * | Chrome | Firefox | Safari | Edge | IE |
10864 * | :----: | :-----: | :------: | :----: | :-: |
10865 * | **57** | **52** | **10.1** | **16** | No |
10866 *
10867 * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-end
10868 */
10869 "grid-column-end"?: Property.GridColumnEnd | undefined;
10870 /**
10871 * The **`grid-column-start`** CSS property specifies a grid item’s start position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement. This start position defines the block-start edge of the grid area.
10872 *
10873 * **Syntax**: `<grid-line>`
10874 *
10875 * **Initial value**: `auto`
10876 *
10877 * | Chrome | Firefox | Safari | Edge | IE |
10878 * | :----: | :-----: | :------: | :----: | :-: |
10879 * | **57** | **52** | **10.1** | **16** | No |
10880 *
10881 * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-start
10882 */
10883 "grid-column-start"?: Property.GridColumnStart | undefined;
10884 /**
10885 * The **`grid-row-end`** CSS property specifies a grid item’s end position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-end edge of its grid area.
10886 *
10887 * **Syntax**: `<grid-line>`
10888 *
10889 * **Initial value**: `auto`
10890 *
10891 * | Chrome | Firefox | Safari | Edge | IE |
10892 * | :----: | :-----: | :------: | :----: | :-: |
10893 * | **57** | **52** | **10.1** | **16** | No |
10894 *
10895 * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-end
10896 */
10897 "grid-row-end"?: Property.GridRowEnd | undefined;
10898 /**
10899 * The **`grid-row-start`** CSS property specifies a grid item’s start position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start edge of its grid area.
10900 *
10901 * **Syntax**: `<grid-line>`
10902 *
10903 * **Initial value**: `auto`
10904 *
10905 * | Chrome | Firefox | Safari | Edge | IE |
10906 * | :----: | :-----: | :------: | :----: | :-: |
10907 * | **57** | **52** | **10.1** | **16** | No |
10908 *
10909 * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-start
10910 */
10911 "grid-row-start"?: Property.GridRowStart | undefined;
10912 /**
10913 * The **`grid-template-areas`** CSS property specifies named grid areas, establishing the cells in the grid and assigning them names.
10914 *
10915 * **Syntax**: `none | <string>+`
10916 *
10917 * **Initial value**: `none`
10918 *
10919 * | Chrome | Firefox | Safari | Edge | IE |
10920 * | :----: | :-----: | :------: | :----: | :-: |
10921 * | **57** | **52** | **10.1** | **16** | No |
10922 *
10923 * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-areas
10924 */
10925 "grid-template-areas"?: Property.GridTemplateAreas | undefined;
10926 /**
10927 * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.
10928 *
10929 * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`
10930 *
10931 * **Initial value**: `none`
10932 *
10933 * | Chrome | Firefox | Safari | Edge | IE |
10934 * | :----: | :-----: | :------: | :----: | :-------------------------: |
10935 * | **57** | **52** | **10.1** | **16** | **10** _(-ms-grid-columns)_ |
10936 *
10937 * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-columns
10938 */
10939 "grid-template-columns"?: Property.GridTemplateColumns<TLength> | undefined;
10940 /**
10941 * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.
10942 *
10943 * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`
10944 *
10945 * **Initial value**: `none`
10946 *
10947 * | Chrome | Firefox | Safari | Edge | IE |
10948 * | :----: | :-----: | :------: | :----: | :----------------------: |
10949 * | **57** | **52** | **10.1** | **16** | **10** _(-ms-grid-rows)_ |
10950 *
10951 * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-rows
10952 */
10953 "grid-template-rows"?: Property.GridTemplateRows<TLength> | undefined;
10954 /**
10955 * The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box.
10956 *
10957 * **Syntax**: `none | [ first || [ force-end | allow-end ] || last ]`
10958 *
10959 * **Initial value**: `none`
10960 *
10961 * | Chrome | Firefox | Safari | Edge | IE |
10962 * | :----: | :-----: | :----: | :--: | :-: |
10963 * | No | No | **10** | No | No |
10964 *
10965 * @see https://developer.mozilla.org/docs/Web/CSS/hanging-punctuation
10966 */
10967 "hanging-punctuation"?: Property.HangingPunctuation | undefined;
10968 /**
10969 * The **`height`** CSS property specifies the height of an element. By default, the property defines the height of the content area. If `box-sizing` is set to `border-box`, however, it instead determines the height of the border area.
10970 *
10971 * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
10972 *
10973 * **Initial value**: `auto`
10974 *
10975 * | Chrome | Firefox | Safari | Edge | IE |
10976 * | :----: | :-----: | :----: | :----: | :---: |
10977 * | **1** | **1** | **1** | **12** | **4** |
10978 *
10979 * @see https://developer.mozilla.org/docs/Web/CSS/height
10980 */
10981 height?: Property.Height<TLength> | undefined;
10982 /**
10983 * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
10984 *
10985 * **Syntax**: `none | manual | auto`
10986 *
10987 * **Initial value**: `manual`
10988 *
10989 * | Chrome | Firefox | Safari | Edge | IE |
10990 * | :------: | :-----: | :-----------: | :----: | :----------: |
10991 * | **55** | **43** | **5.1** _-x-_ | **79** | **10** _-x-_ |
10992 * | 13 _-x-_ | 6 _-x-_ | | | |
10993 *
10994 * @see https://developer.mozilla.org/docs/Web/CSS/hyphens
10995 */
10996 hyphens?: Property.Hyphens | undefined;
10997 /**
10998 * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image. It should _not_ be used for any other orientation adjustments; instead, the `transform` property should be used with the `rotate` `<transform-function>`.
10999 *
11000 * **Syntax**: `from-image | <angle> | [ <angle>? flip ]`
11001 *
11002 * **Initial value**: `from-image`
11003 *
11004 * | Chrome | Firefox | Safari | Edge | IE |
11005 * | :----: | :-----: | :------: | :----: | :-: |
11006 * | **81** | **26** | **13.1** | **81** | No |
11007 *
11008 * @see https://developer.mozilla.org/docs/Web/CSS/image-orientation
11009 */
11010 "image-orientation"?: Property.ImageOrientation | undefined;
11011 /**
11012 * The **`image-rendering`** CSS property sets an image scaling algorithm. The property applies to an element itself, to any images set in its other properties, and to its descendants.
11013 *
11014 * **Syntax**: `auto | crisp-edges | pixelated`
11015 *
11016 * **Initial value**: `auto`
11017 *
11018 * | Chrome | Firefox | Safari | Edge | IE |
11019 * | :----: | :-----: | :----: | :----: | :-: |
11020 * | **13** | **3.6** | **6** | **79** | No |
11021 *
11022 * @see https://developer.mozilla.org/docs/Web/CSS/image-rendering
11023 */
11024 "image-rendering"?: Property.ImageRendering | undefined;
11025 /**
11026 * **Syntax**: `[ from-image || <resolution> ] && snap?`
11027 *
11028 * **Initial value**: `1dppx`
11029 */
11030 "image-resolution"?: Property.ImageResolution | undefined;
11031 /**
11032 * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters.
11033 *
11034 * **Syntax**: `normal | [ <number> <integer>? ]`
11035 *
11036 * **Initial value**: `normal`
11037 *
11038 * | Chrome | Firefox | Safari | Edge | IE |
11039 * | :----: | :-----: | :---------: | :--: | :-: |
11040 * | No | No | **9** _-x-_ | No | No |
11041 *
11042 * @see https://developer.mozilla.org/docs/Web/CSS/initial-letter
11043 */
11044 "initial-letter"?: Property.InitialLetter | undefined;
11045 /**
11046 * The **`inline-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`.
11047 *
11048 * **Syntax**: `<'width'>`
11049 *
11050 * **Initial value**: `auto`
11051 *
11052 * | Chrome | Firefox | Safari | Edge | IE |
11053 * | :----: | :-----: | :------: | :----: | :-: |
11054 * | **57** | **41** | **12.1** | **79** | No |
11055 *
11056 * @see https://developer.mozilla.org/docs/Web/CSS/inline-size
11057 */
11058 "inline-size"?: Property.InlineSize<TLength> | undefined;
11059 /**
11060 * The **`inset`** CSS property is a shorthand that corresponds to the `top`, `right`, `bottom`, and/or `left` properties. It has the same multi-value syntax of the `margin` shorthand.
11061 *
11062 * **Syntax**: `<'top'>{1,4}`
11063 *
11064 * **Initial value**: `auto`
11065 *
11066 * | Chrome | Firefox | Safari | Edge | IE |
11067 * | :----: | :-----: | :------: | :----: | :-: |
11068 * | **87** | **66** | **14.1** | **87** | No |
11069 *
11070 * @see https://developer.mozilla.org/docs/Web/CSS/inset
11071 */
11072 inset?: Property.Inset<TLength> | undefined;
11073 /**
11074 * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
11075 *
11076 * **Syntax**: `<'top'>{1,2}`
11077 *
11078 * **Initial value**: `auto`
11079 *
11080 * | Chrome | Firefox | Safari | Edge | IE |
11081 * | :----: | :-----: | :------: | :----: | :-: |
11082 * | **87** | **63** | **14.1** | **87** | No |
11083 *
11084 * @see https://developer.mozilla.org/docs/Web/CSS/inset-block
11085 */
11086 "inset-block"?: Property.InsetBlock<TLength> | undefined;
11087 /**
11088 * The **`inset-block-end`** CSS property defines the logical block end offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
11089 *
11090 * **Syntax**: `<'top'>`
11091 *
11092 * **Initial value**: `auto`
11093 *
11094 * | Chrome | Firefox | Safari | Edge | IE |
11095 * | :----: | :-----: | :------: | :----: | :-: |
11096 * | **87** | **63** | **14.1** | **87** | No |
11097 *
11098 * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end
11099 */
11100 "inset-block-end"?: Property.InsetBlockEnd<TLength> | undefined;
11101 /**
11102 * The **`inset-block-start`** CSS property defines the logical block start offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
11103 *
11104 * **Syntax**: `<'top'>`
11105 *
11106 * **Initial value**: `auto`
11107 *
11108 * | Chrome | Firefox | Safari | Edge | IE |
11109 * | :----: | :-----: | :------: | :----: | :-: |
11110 * | **87** | **63** | **14.1** | **87** | No |
11111 *
11112 * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start
11113 */
11114 "inset-block-start"?: Property.InsetBlockStart<TLength> | undefined;
11115 /**
11116 * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
11117 *
11118 * **Syntax**: `<'top'>{1,2}`
11119 *
11120 * **Initial value**: `auto`
11121 *
11122 * | Chrome | Firefox | Safari | Edge | IE |
11123 * | :----: | :-----: | :------: | :----: | :-: |
11124 * | **87** | **63** | **14.1** | **87** | No |
11125 *
11126 * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline
11127 */
11128 "inset-inline"?: Property.InsetInline<TLength> | undefined;
11129 /**
11130 * The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
11131 *
11132 * **Syntax**: `<'top'>`
11133 *
11134 * **Initial value**: `auto`
11135 *
11136 * | Chrome | Firefox | Safari | Edge | IE |
11137 * | :----: | :-----: | :------: | :----: | :-: |
11138 * | **87** | **63** | **14.1** | **87** | No |
11139 *
11140 * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
11141 */
11142 "inset-inline-end"?: Property.InsetInlineEnd<TLength> | undefined;
11143 /**
11144 * The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
11145 *
11146 * **Syntax**: `<'top'>`
11147 *
11148 * **Initial value**: `auto`
11149 *
11150 * | Chrome | Firefox | Safari | Edge | IE |
11151 * | :----: | :-----: | :------: | :----: | :-: |
11152 * | **87** | **63** | **14.1** | **87** | No |
11153 *
11154 * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
11155 */
11156 "inset-inline-start"?: Property.InsetInlineStart<TLength> | undefined;
11157 /**
11158 * The **`isolation`** CSS property determines whether an element must create a new stacking context.
11159 *
11160 * **Syntax**: `auto | isolate`
11161 *
11162 * **Initial value**: `auto`
11163 *
11164 * | Chrome | Firefox | Safari | Edge | IE |
11165 * | :----: | :-----: | :----: | :----: | :-: |
11166 * | **41** | **36** | **8** | **79** | No |
11167 *
11168 * @see https://developer.mozilla.org/docs/Web/CSS/isolation
11169 */
11170 isolation?: Property.Isolation | undefined;
11171 /**
11172 * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.
11173 *
11174 * **Syntax**: `normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]`
11175 *
11176 * **Initial value**: `normal`
11177 *
11178 * ---
11179 *
11180 * _Supported in Flex Layout_
11181 *
11182 * | Chrome | Firefox | Safari | Edge | IE |
11183 * | :------: | :-----: | :-------: | :----: | :----: |
11184 * | **52** | **20** | **9** | **12** | **11** |
11185 * | 21 _-x-_ | | 6.1 _-x-_ | | |
11186 *
11187 * ---
11188 *
11189 * _Supported in Grid Layout_
11190 *
11191 * | Chrome | Firefox | Safari | Edge | IE |
11192 * | :----: | :-----: | :------: | :----: | :-: |
11193 * | **57** | **52** | **10.1** | **16** | No |
11194 *
11195 * ---
11196 *
11197 * @see https://developer.mozilla.org/docs/Web/CSS/justify-content
11198 */
11199 "justify-content"?: Property.JustifyContent | undefined;
11200 /**
11201 * The CSS **`justify-items`** property defines the default `justify-self` for all items of the box, giving them all a default way of justifying each box along the appropriate axis.
11202 *
11203 * **Syntax**: `normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]`
11204 *
11205 * **Initial value**: `legacy`
11206 *
11207 * ---
11208 *
11209 * _Supported in Flex Layout_
11210 *
11211 * | Chrome | Firefox | Safari | Edge | IE |
11212 * | :----: | :-----: | :----: | :----: | :----: |
11213 * | **52** | **20** | **9** | **12** | **11** |
11214 *
11215 * ---
11216 *
11217 * _Supported in Grid Layout_
11218 *
11219 * | Chrome | Firefox | Safari | Edge | IE |
11220 * | :----: | :-----: | :------: | :----: | :-: |
11221 * | **57** | **45** | **10.1** | **16** | No |
11222 *
11223 * ---
11224 *
11225 * @see https://developer.mozilla.org/docs/Web/CSS/justify-items
11226 */
11227 "justify-items"?: Property.JustifyItems | undefined;
11228 /**
11229 * The CSS **`justify-self`** property sets the way a box is justified inside its alignment container along the appropriate axis.
11230 *
11231 * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]`
11232 *
11233 * **Initial value**: `auto`
11234 *
11235 * ---
11236 *
11237 * _Supported in Flex Layout_
11238 *
11239 * | Chrome | Firefox | Safari | Edge | IE |
11240 * | :----: | :-----: | :------: | :----: | :-: |
11241 * | **57** | **45** | **10.1** | **16** | No |
11242 *
11243 * ---
11244 *
11245 * _Supported in Grid Layout_
11246 *
11247 * | Chrome | Firefox | Safari | Edge | IE |
11248 * | :----: | :-----: | :------: | :----: | :----------: |
11249 * | **57** | **45** | **10.1** | **16** | **10** _-x-_ |
11250 *
11251 * ---
11252 *
11253 * @see https://developer.mozilla.org/docs/Web/CSS/justify-self
11254 */
11255 "justify-self"?: Property.JustifySelf | undefined;
11256 /**
11257 * The **`justify-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their inline axis.
11258 *
11259 * **Syntax**: `[ normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] ]#`
11260 *
11261 * **Initial value**: `normal`
11262 *
11263 * | Chrome | Firefox | Safari | Edge | IE |
11264 * | :----: | :-----: | :----: | :--: | :-: |
11265 * | No | n/a | No | No | No |
11266 *
11267 * @see https://developer.mozilla.org/docs/Web/CSS/justify-tracks
11268 */
11269 "justify-tracks"?: Property.JustifyTracks | undefined;
11270 /**
11271 * The **`left`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.
11272 *
11273 * **Syntax**: `<length> | <percentage> | auto`
11274 *
11275 * **Initial value**: `auto`
11276 *
11277 * | Chrome | Firefox | Safari | Edge | IE |
11278 * | :----: | :-----: | :----: | :----: | :-----: |
11279 * | **1** | **1** | **1** | **12** | **5.5** |
11280 *
11281 * @see https://developer.mozilla.org/docs/Web/CSS/left
11282 */
11283 left?: Property.Left<TLength> | undefined;
11284 /**
11285 * The **`letter-spacing`** CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of `letter-spacing` causes characters to spread farther apart, while negative values of `letter-spacing` bring characters closer together.
11286 *
11287 * **Syntax**: `normal | <length>`
11288 *
11289 * **Initial value**: `normal`
11290 *
11291 * | Chrome | Firefox | Safari | Edge | IE |
11292 * | :----: | :-----: | :----: | :----: | :---: |
11293 * | **1** | **1** | **1** | **12** | **4** |
11294 *
11295 * @see https://developer.mozilla.org/docs/Web/CSS/letter-spacing
11296 */
11297 "letter-spacing"?: Property.LetterSpacing<TLength> | undefined;
11298 /**
11299 * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
11300 *
11301 * **Syntax**: `auto | loose | normal | strict | anywhere`
11302 *
11303 * **Initial value**: `auto`
11304 *
11305 * | Chrome | Firefox | Safari | Edge | IE |
11306 * | :-----: | :-----: | :-----: | :----: | :-----: |
11307 * | **58** | **69** | **11** | **14** | **5.5** |
11308 * | 1 _-x-_ | | 3 _-x-_ | | |
11309 *
11310 * @see https://developer.mozilla.org/docs/Web/CSS/line-break
11311 */
11312 "line-break"?: Property.LineBreak | undefined;
11313 /**
11314 * The **`line-height`** CSS property sets the height of a line box. It's commonly used to set the distance between lines of text. On block-level elements, it specifies the minimum height of line boxes within the element. On non-replaced inline elements, it specifies the height that is used to calculate line box height.
11315 *
11316 * **Syntax**: `normal | <number> | <length> | <percentage>`
11317 *
11318 * **Initial value**: `normal`
11319 *
11320 * | Chrome | Firefox | Safari | Edge | IE |
11321 * | :----: | :-----: | :----: | :----: | :---: |
11322 * | **1** | **1** | **1** | **12** | **4** |
11323 *
11324 * @see https://developer.mozilla.org/docs/Web/CSS/line-height
11325 */
11326 "line-height"?: Property.LineHeight<TLength> | undefined;
11327 /**
11328 * The **`line-height-step`** CSS property sets the step unit for line box heights. When the property is set, line box heights are rounded up to the closest multiple of the unit.
11329 *
11330 * **Syntax**: `<length>`
11331 *
11332 * **Initial value**: `0`
11333 *
11334 * | Chrome | Firefox | Safari | Edge | IE |
11335 * | :----: | :-----: | :----: | :--: | :-: |
11336 * | n/a | No | No | n/a | No |
11337 *
11338 * @see https://developer.mozilla.org/docs/Web/CSS/line-height-step
11339 */
11340 "line-height-step"?: Property.LineHeightStep<TLength> | undefined;
11341 /**
11342 * The **`list-style-image`** CSS property sets an image to be used as the list item marker.
11343 *
11344 * **Syntax**: `<image> | none`
11345 *
11346 * **Initial value**: `none`
11347 *
11348 * | Chrome | Firefox | Safari | Edge | IE |
11349 * | :----: | :-----: | :----: | :----: | :---: |
11350 * | **1** | **1** | **1** | **12** | **4** |
11351 *
11352 * @see https://developer.mozilla.org/docs/Web/CSS/list-style-image
11353 */
11354 "list-style-image"?: Property.ListStyleImage | undefined;
11355 /**
11356 * The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item.
11357 *
11358 * **Syntax**: `inside | outside`
11359 *
11360 * **Initial value**: `outside`
11361 *
11362 * | Chrome | Firefox | Safari | Edge | IE |
11363 * | :----: | :-----: | :----: | :----: | :---: |
11364 * | **1** | **1** | **1** | **12** | **4** |
11365 *
11366 * @see https://developer.mozilla.org/docs/Web/CSS/list-style-position
11367 */
11368 "list-style-position"?: Property.ListStylePosition | undefined;
11369 /**
11370 * The **`list-style-type`** CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element.
11371 *
11372 * **Syntax**: `<counter-style> | <string> | none`
11373 *
11374 * **Initial value**: `disc`
11375 *
11376 * | Chrome | Firefox | Safari | Edge | IE |
11377 * | :----: | :-----: | :----: | :----: | :---: |
11378 * | **1** | **1** | **1** | **12** | **4** |
11379 *
11380 * @see https://developer.mozilla.org/docs/Web/CSS/list-style-type
11381 */
11382 "list-style-type"?: Property.ListStyleType | undefined;
11383 /**
11384 * The **`margin-block`** CSS shorthand property defines the logical block start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
11385 *
11386 * **Syntax**: `<'margin-left'>{1,2}`
11387 *
11388 * **Initial value**: `0`
11389 *
11390 * | Chrome | Firefox | Safari | Edge | IE |
11391 * | :----: | :-----: | :------: | :----: | :-: |
11392 * | **87** | **66** | **14.1** | **87** | No |
11393 *
11394 * @see https://developer.mozilla.org/docs/Web/CSS/margin-block
11395 */
11396 "margin-block"?: Property.MarginBlock<TLength> | undefined;
11397 /**
11398 * The **`margin-block-end`** CSS property defines the logical block end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.
11399 *
11400 * **Syntax**: `<'margin-left'>`
11401 *
11402 * **Initial value**: `0`
11403 *
11404 * | Chrome | Firefox | Safari | Edge | IE |
11405 * | :----: | :-----: | :------: | :----: | :-: |
11406 * | **69** | **41** | **12.1** | **79** | No |
11407 *
11408 * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end
11409 */
11410 "margin-block-end"?: Property.MarginBlockEnd<TLength> | undefined;
11411 /**
11412 * The **`margin-block-start`** CSS property defines the logical block start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.
11413 *
11414 * **Syntax**: `<'margin-left'>`
11415 *
11416 * **Initial value**: `0`
11417 *
11418 * | Chrome | Firefox | Safari | Edge | IE |
11419 * | :----: | :-----: | :------: | :----: | :-: |
11420 * | **69** | **41** | **12.1** | **79** | No |
11421 *
11422 * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start
11423 */
11424 "margin-block-start"?: Property.MarginBlockStart<TLength> | undefined;
11425 /**
11426 * The **`margin-bottom`** CSS property sets the margin area on the bottom of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
11427 *
11428 * **Syntax**: `<length> | <percentage> | auto`
11429 *
11430 * **Initial value**: `0`
11431 *
11432 * | Chrome | Firefox | Safari | Edge | IE |
11433 * | :----: | :-----: | :----: | :----: | :---: |
11434 * | **1** | **1** | **1** | **12** | **3** |
11435 *
11436 * @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom
11437 */
11438 "margin-bottom"?: Property.MarginBottom<TLength> | undefined;
11439 /**
11440 * The **`margin-inline`** CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
11441 *
11442 * **Syntax**: `<'margin-left'>{1,2}`
11443 *
11444 * **Initial value**: `0`
11445 *
11446 * | Chrome | Firefox | Safari | Edge | IE |
11447 * | :----: | :-----: | :------: | :----: | :-: |
11448 * | **87** | **66** | **14.1** | **87** | No |
11449 *
11450 * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
11451 */
11452 "margin-inline"?: Property.MarginInline<TLength> | undefined;
11453 /**
11454 * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
11455 *
11456 * **Syntax**: `<'margin-left'>`
11457 *
11458 * **Initial value**: `0`
11459 *
11460 * | Chrome | Firefox | Safari | Edge | IE |
11461 * | :----------------------: | :-------------------: | :----------------------: | :----: | :-: |
11462 * | **69** | **41** | **12.1** | **79** | No |
11463 * | 2 _(-webkit-margin-end)_ | 3 _(-moz-margin-end)_ | 3 _(-webkit-margin-end)_ | | |
11464 *
11465 * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
11466 */
11467 "margin-inline-end"?: Property.MarginInlineEnd<TLength> | undefined;
11468 /**
11469 * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
11470 *
11471 * **Syntax**: `<'margin-left'>`
11472 *
11473 * **Initial value**: `0`
11474 *
11475 * | Chrome | Firefox | Safari | Edge | IE |
11476 * | :------------------------: | :---------------------: | :------------------------: | :----: | :-: |
11477 * | **69** | **41** | **12.1** | **79** | No |
11478 * | 2 _(-webkit-margin-start)_ | 3 _(-moz-margin-start)_ | 3 _(-webkit-margin-start)_ | | |
11479 *
11480 * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
11481 */
11482 "margin-inline-start"?: Property.MarginInlineStart<TLength> | undefined;
11483 /**
11484 * The **`margin-left`** CSS property sets the margin area on the left side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
11485 *
11486 * **Syntax**: `<length> | <percentage> | auto`
11487 *
11488 * **Initial value**: `0`
11489 *
11490 * | Chrome | Firefox | Safari | Edge | IE |
11491 * | :----: | :-----: | :----: | :----: | :---: |
11492 * | **1** | **1** | **1** | **12** | **3** |
11493 *
11494 * @see https://developer.mozilla.org/docs/Web/CSS/margin-left
11495 */
11496 "margin-left"?: Property.MarginLeft<TLength> | undefined;
11497 /**
11498 * The **`margin-right`** CSS property sets the margin area on the right side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
11499 *
11500 * **Syntax**: `<length> | <percentage> | auto`
11501 *
11502 * **Initial value**: `0`
11503 *
11504 * | Chrome | Firefox | Safari | Edge | IE |
11505 * | :----: | :-----: | :----: | :----: | :---: |
11506 * | **1** | **1** | **1** | **12** | **3** |
11507 *
11508 * @see https://developer.mozilla.org/docs/Web/CSS/margin-right
11509 */
11510 "margin-right"?: Property.MarginRight<TLength> | undefined;
11511 /**
11512 * The **`margin-top`** CSS property sets the margin area on the top of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
11513 *
11514 * **Syntax**: `<length> | <percentage> | auto`
11515 *
11516 * **Initial value**: `0`
11517 *
11518 * | Chrome | Firefox | Safari | Edge | IE |
11519 * | :----: | :-----: | :----: | :----: | :---: |
11520 * | **1** | **1** | **1** | **12** | **3** |
11521 *
11522 * @see https://developer.mozilla.org/docs/Web/CSS/margin-top
11523 */
11524 "margin-top"?: Property.MarginTop<TLength> | undefined;
11525 /**
11526 * The **`mask-border-mode`** CSS property specifies the blending mode used in a mask border.
11527 *
11528 * **Syntax**: `luminance | alpha`
11529 *
11530 * **Initial value**: `alpha`
11531 */
11532 "mask-border-mode"?: Property.MaskBorderMode | undefined;
11533 /**
11534 * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box.
11535 *
11536 * **Syntax**: `[ <length> | <number> ]{1,4}`
11537 *
11538 * **Initial value**: `0`
11539 *
11540 * | Chrome | Firefox | Safari | Edge | IE |
11541 * | :-------------------------------------: | :-----: | :---------------------------------------: | :--------------------------------------: | :-: |
11542 * | **1** _(-webkit-mask-box-image-outset)_ | No | **3.1** _(-webkit-mask-box-image-outset)_ | **79** _(-webkit-mask-box-image-outset)_ | No |
11543 *
11544 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-outset
11545 */
11546 "mask-border-outset"?: Property.MaskBorderOutset<TLength> | undefined;
11547 /**
11548 * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border.
11549 *
11550 * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`
11551 *
11552 * **Initial value**: `stretch`
11553 *
11554 * | Chrome | Firefox | Safari | Edge | IE |
11555 * | :-------------------------------------: | :-----: | :---------------------------------------: | :--------------------------------------: | :-: |
11556 * | **1** _(-webkit-mask-box-image-repeat)_ | No | **3.1** _(-webkit-mask-box-image-repeat)_ | **79** _(-webkit-mask-box-image-repeat)_ | No |
11557 *
11558 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-repeat
11559 */
11560 "mask-border-repeat"?: Property.MaskBorderRepeat | undefined;
11561 /**
11562 * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border.
11563 *
11564 * **Syntax**: `<number-percentage>{1,4} fill?`
11565 *
11566 * **Initial value**: `0`
11567 *
11568 * | Chrome | Firefox | Safari | Edge | IE |
11569 * | :------------------------------------: | :-----: | :--------------------------------------: | :-------------------------------------: | :-: |
11570 * | **1** _(-webkit-mask-box-image-slice)_ | No | **3.1** _(-webkit-mask-box-image-slice)_ | **79** _(-webkit-mask-box-image-slice)_ | No |
11571 *
11572 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-slice
11573 */
11574 "mask-border-slice"?: Property.MaskBorderSlice | undefined;
11575 /**
11576 * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border.
11577 *
11578 * **Syntax**: `none | <image>`
11579 *
11580 * **Initial value**: `none`
11581 *
11582 * | Chrome | Firefox | Safari | Edge | IE |
11583 * | :-------------------------------------: | :-----: | :---------------------------------------: | :--------------------------------------: | :-: |
11584 * | **1** _(-webkit-mask-box-image-source)_ | No | **3.1** _(-webkit-mask-box-image-source)_ | **79** _(-webkit-mask-box-image-source)_ | No |
11585 *
11586 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-source
11587 */
11588 "mask-border-source"?: Property.MaskBorderSource | undefined;
11589 /**
11590 * The **`mask-border-width`** CSS property sets the width of an element's mask border.
11591 *
11592 * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`
11593 *
11594 * **Initial value**: `auto`
11595 *
11596 * | Chrome | Firefox | Safari | Edge | IE |
11597 * | :------------------------------------: | :-----: | :--------------------------------------: | :-------------------------------------: | :-: |
11598 * | **1** _(-webkit-mask-box-image-width)_ | No | **3.1** _(-webkit-mask-box-image-width)_ | **79** _(-webkit-mask-box-image-width)_ | No |
11599 *
11600 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-width
11601 */
11602 "mask-border-width"?: Property.MaskBorderWidth<TLength> | undefined;
11603 /**
11604 * The **`mask-clip`** CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area.
11605 *
11606 * **Syntax**: `[ <geometry-box> | no-clip ]#`
11607 *
11608 * **Initial value**: `border-box`
11609 *
11610 * | Chrome | Firefox | Safari | Edge | IE |
11611 * | :---------: | :-----: | :---------: | :----------: | :-: |
11612 * | **1** _-x-_ | **53** | **4** _-x-_ | **79** _-x-_ | No |
11613 *
11614 * @see https://developer.mozilla.org/docs/Web/CSS/mask-clip
11615 */
11616 "mask-clip"?: Property.MaskClip | undefined;
11617 /**
11618 * The **`mask-composite`** CSS property represents a compositing operation used on the current mask layer with the mask layers below it.
11619 *
11620 * **Syntax**: `<compositing-operator>#`
11621 *
11622 * **Initial value**: `add`
11623 *
11624 * | Chrome | Firefox | Safari | Edge | IE |
11625 * | :----: | :-----: | :----: | :---: | :-: |
11626 * | No | **53** | No | 18-79 | No |
11627 *
11628 * @see https://developer.mozilla.org/docs/Web/CSS/mask-composite
11629 */
11630 "mask-composite"?: Property.MaskComposite | undefined;
11631 /**
11632 * The **`mask-image`** CSS property sets the image that is used as mask layer for an element.
11633 *
11634 * **Syntax**: `<mask-reference>#`
11635 *
11636 * **Initial value**: `none`
11637 *
11638 * | Chrome | Firefox | Safari | Edge | IE |
11639 * | :---------: | :-----: | :---------: | :---: | :-: |
11640 * | **1** _-x-_ | **53** | **4** _-x-_ | 16-79 | No |
11641 *
11642 * @see https://developer.mozilla.org/docs/Web/CSS/mask-image
11643 */
11644 "mask-image"?: Property.MaskImage | undefined;
11645 /**
11646 * The **`mask-mode`** CSS property sets whether the mask reference defined by `mask-image` is treated as a luminance or alpha mask.
11647 *
11648 * **Syntax**: `<masking-mode>#`
11649 *
11650 * **Initial value**: `match-source`
11651 *
11652 * | Chrome | Firefox | Safari | Edge | IE |
11653 * | :----: | :-----: | :----: | :--: | :-: |
11654 * | No | **53** | No | No | No |
11655 *
11656 * @see https://developer.mozilla.org/docs/Web/CSS/mask-mode
11657 */
11658 "mask-mode"?: Property.MaskMode | undefined;
11659 /**
11660 * The **`mask-origin`** CSS property sets the origin of a mask.
11661 *
11662 * **Syntax**: `<geometry-box>#`
11663 *
11664 * **Initial value**: `border-box`
11665 *
11666 * | Chrome | Firefox | Safari | Edge | IE |
11667 * | :---------: | :-----: | :---------: | :----------: | :-: |
11668 * | **1** _-x-_ | **53** | **4** _-x-_ | **79** _-x-_ | No |
11669 *
11670 * @see https://developer.mozilla.org/docs/Web/CSS/mask-origin
11671 */
11672 "mask-origin"?: Property.MaskOrigin | undefined;
11673 /**
11674 * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image.
11675 *
11676 * **Syntax**: `<position>#`
11677 *
11678 * **Initial value**: `center`
11679 *
11680 * | Chrome | Firefox | Safari | Edge | IE |
11681 * | :---------: | :-----: | :-----------: | :---: | :-: |
11682 * | **1** _-x-_ | **53** | **3.1** _-x-_ | 18-79 | No |
11683 *
11684 * @see https://developer.mozilla.org/docs/Web/CSS/mask-position
11685 */
11686 "mask-position"?: Property.MaskPosition<TLength> | undefined;
11687 /**
11688 * The **`mask-repeat`** CSS property sets how mask images are repeated. A mask image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all.
11689 *
11690 * **Syntax**: `<repeat-style>#`
11691 *
11692 * **Initial value**: `no-repeat`
11693 *
11694 * | Chrome | Firefox | Safari | Edge | IE |
11695 * | :---------: | :-----: | :-----------: | :---: | :-: |
11696 * | **1** _-x-_ | **53** | **3.1** _-x-_ | 18-79 | No |
11697 *
11698 * @see https://developer.mozilla.org/docs/Web/CSS/mask-repeat
11699 */
11700 "mask-repeat"?: Property.MaskRepeat | undefined;
11701 /**
11702 * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio.
11703 *
11704 * **Syntax**: `<bg-size>#`
11705 *
11706 * **Initial value**: `auto`
11707 *
11708 * | Chrome | Firefox | Safari | Edge | IE |
11709 * | :---------: | :-----: | :---------: | :---: | :-: |
11710 * | **4** _-x-_ | **53** | **4** _-x-_ | 18-79 | No |
11711 *
11712 * @see https://developer.mozilla.org/docs/Web/CSS/mask-size
11713 */
11714 "mask-size"?: Property.MaskSize<TLength> | undefined;
11715 /**
11716 * The **`mask-type`** CSS property sets whether an SVG `<mask>` element is used as a _luminance_ or an _alpha_ mask. It applies to the `<mask>` element itself.
11717 *
11718 * **Syntax**: `luminance | alpha`
11719 *
11720 * **Initial value**: `luminance`
11721 *
11722 * | Chrome | Firefox | Safari | Edge | IE |
11723 * | :----: | :-----: | :----: | :----: | :-: |
11724 * | **24** | **35** | **7** | **79** | No |
11725 *
11726 * @see https://developer.mozilla.org/docs/Web/CSS/mask-type
11727 */
11728 "mask-type"?: Property.MaskType | undefined;
11729 /**
11730 * The `math-style` property indicates whether MathML equations should render with normal or compact height.
11731 *
11732 * **Syntax**: `normal | compact`
11733 *
11734 * **Initial value**: `normal`
11735 *
11736 * | Chrome | Firefox | Safari | Edge | IE |
11737 * | :----: | :-----: | :------: | :--: | :-: |
11738 * | n/a | n/a | **14.1** | No | No |
11739 *
11740 * @see https://developer.mozilla.org/docs/Web/CSS/math-style
11741 */
11742 "math-style"?: Property.MathStyle | undefined;
11743 /**
11744 * The `**max-block-size**` CSS property specifies the maximum size of an element in the direction opposite that of the writing direction as specified by `writing-mode`. That is, if the writing direction is horizontal, then `max-block-size` is equivalent to `max-height`; if the writing direction is vertical, `max-block-size` is the same as `max-width`.
11745 *
11746 * **Syntax**: `<'max-width'>`
11747 *
11748 * **Initial value**: `0`
11749 *
11750 * | Chrome | Firefox | Safari | Edge | IE |
11751 * | :----: | :-----: | :------: | :----: | :-: |
11752 * | **57** | **41** | **12.1** | **79** | No |
11753 *
11754 * @see https://developer.mozilla.org/docs/Web/CSS/max-block-size
11755 */
11756 "max-block-size"?: Property.MaxBlockSize<TLength> | undefined;
11757 /**
11758 * The **`max-height`** CSS property sets the maximum height of an element. It prevents the used value of the `height` property from becoming larger than the value specified for `max-height`.
11759 *
11760 * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
11761 *
11762 * **Initial value**: `none`
11763 *
11764 * | Chrome | Firefox | Safari | Edge | IE |
11765 * | :----: | :-----: | :-----: | :----: | :---: |
11766 * | **18** | **1** | **1.3** | **12** | **7** |
11767 *
11768 * @see https://developer.mozilla.org/docs/Web/CSS/max-height
11769 */
11770 "max-height"?: Property.MaxHeight<TLength> | undefined;
11771 /**
11772 * The **`max-inline-size`** CSS property defines the horizontal or vertical maximum size of an element's block, depending on its writing mode. It corresponds to either the `max-width` or the `max-height` property, depending on the value of `writing-mode`.
11773 *
11774 * **Syntax**: `<'max-width'>`
11775 *
11776 * **Initial value**: `0`
11777 *
11778 * | Chrome | Firefox | Safari | Edge | IE |
11779 * | :----: | :-----: | :--------: | :----: | :-: |
11780 * | **57** | **41** | **12.1** | **79** | No |
11781 * | | | 10.1 _-x-_ | | |
11782 *
11783 * @see https://developer.mozilla.org/docs/Web/CSS/max-inline-size
11784 */
11785 "max-inline-size"?: Property.MaxInlineSize<TLength> | undefined;
11786 /**
11787 * **Syntax**: `none | <integer>`
11788 *
11789 * **Initial value**: `none`
11790 */
11791 "max-lines"?: Property.MaxLines | undefined;
11792 /**
11793 * The **`max-width`** CSS property sets the maximum width of an element. It prevents the used value of the `width` property from becoming larger than the value specified by `max-width`.
11794 *
11795 * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
11796 *
11797 * **Initial value**: `none`
11798 *
11799 * | Chrome | Firefox | Safari | Edge | IE |
11800 * | :----: | :-----: | :----: | :----: | :---: |
11801 * | **1** | **1** | **1** | **12** | **7** |
11802 *
11803 * @see https://developer.mozilla.org/docs/Web/CSS/max-width
11804 */
11805 "max-width"?: Property.MaxWidth<TLength> | undefined;
11806 /**
11807 * The **`min-block-size`** CSS property defines the minimum horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.
11808 *
11809 * **Syntax**: `<'min-width'>`
11810 *
11811 * **Initial value**: `0`
11812 *
11813 * | Chrome | Firefox | Safari | Edge | IE |
11814 * | :----: | :-----: | :------: | :----: | :-: |
11815 * | **57** | **41** | **12.1** | **79** | No |
11816 *
11817 * @see https://developer.mozilla.org/docs/Web/CSS/min-block-size
11818 */
11819 "min-block-size"?: Property.MinBlockSize<TLength> | undefined;
11820 /**
11821 * The **`min-height`** CSS property sets the minimum height of an element. It prevents the used value of the `height` property from becoming smaller than the value specified for `min-height`.
11822 *
11823 * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
11824 *
11825 * **Initial value**: `auto`
11826 *
11827 * | Chrome | Firefox | Safari | Edge | IE |
11828 * | :----: | :-----: | :-----: | :----: | :---: |
11829 * | **1** | **3** | **1.3** | **12** | **7** |
11830 *
11831 * @see https://developer.mozilla.org/docs/Web/CSS/min-height
11832 */
11833 "min-height"?: Property.MinHeight<TLength> | undefined;
11834 /**
11835 * The **`min-inline-size`** CSS property defines the horizontal or vertical minimal size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.
11836 *
11837 * **Syntax**: `<'min-width'>`
11838 *
11839 * **Initial value**: `0`
11840 *
11841 * | Chrome | Firefox | Safari | Edge | IE |
11842 * | :----: | :-----: | :------: | :----: | :-: |
11843 * | **57** | **41** | **12.1** | **79** | No |
11844 *
11845 * @see https://developer.mozilla.org/docs/Web/CSS/min-inline-size
11846 */
11847 "min-inline-size"?: Property.MinInlineSize<TLength> | undefined;
11848 /**
11849 * The **`min-width`** CSS property sets the minimum width of an element. It prevents the used value of the `width` property from becoming smaller than the value specified for `min-width`.
11850 *
11851 * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
11852 *
11853 * **Initial value**: `auto`
11854 *
11855 * | Chrome | Firefox | Safari | Edge | IE |
11856 * | :----: | :-----: | :----: | :----: | :---: |
11857 * | **1** | **1** | **1** | **12** | **7** |
11858 *
11859 * @see https://developer.mozilla.org/docs/Web/CSS/min-width
11860 */
11861 "min-width"?: Property.MinWidth<TLength> | undefined;
11862 /**
11863 * The **`mix-blend-mode`** CSS property sets how an element's content should blend with the content of the element's parent and the element's background.
11864 *
11865 * **Syntax**: `<blend-mode>`
11866 *
11867 * **Initial value**: `normal`
11868 *
11869 * | Chrome | Firefox | Safari | Edge | IE |
11870 * | :----: | :-----: | :----: | :----: | :-: |
11871 * | **41** | **32** | **8** | **79** | No |
11872 *
11873 * @see https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode
11874 */
11875 "mix-blend-mode"?: Property.MixBlendMode | undefined;
11876 /**
11877 * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.
11878 *
11879 * **Syntax**: `<length-percentage>`
11880 *
11881 * **Initial value**: `0`
11882 *
11883 * | Chrome | Firefox | Safari | Edge | IE |
11884 * | :--------------------: | :-----: | :----: | :----: | :-: |
11885 * | **55** | **72** | No | **79** | No |
11886 * | 46 _(motion-distance)_ | | | | |
11887 *
11888 * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance
11889 */
11890 "motion-distance"?: Property.OffsetDistance<TLength> | undefined;
11891 /**
11892 * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.
11893 *
11894 * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`
11895 *
11896 * **Initial value**: `none`
11897 *
11898 * | Chrome | Firefox | Safari | Edge | IE |
11899 * | :----------------: | :-----: | :----: | :----: | :-: |
11900 * | **55** | **72** | No | **79** | No |
11901 * | 46 _(motion-path)_ | | | | |
11902 *
11903 * @see https://developer.mozilla.org/docs/Web/CSS/offset-path
11904 */
11905 "motion-path"?: Property.OffsetPath | undefined;
11906 /**
11907 * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.
11908 *
11909 * **Syntax**: `[ auto | reverse ] || <angle>`
11910 *
11911 * **Initial value**: `auto`
11912 *
11913 * | Chrome | Firefox | Safari | Edge | IE |
11914 * | :--------------------: | :-----: | :----: | :----: | :-: |
11915 * | **56** | **72** | No | **79** | No |
11916 * | 46 _(motion-rotation)_ | | | | |
11917 *
11918 * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
11919 */
11920 "motion-rotation"?: Property.OffsetRotate | undefined;
11921 /**
11922 * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `<img>` or `<video>`, should be resized to fit its container.
11923 *
11924 * **Syntax**: `fill | contain | cover | none | scale-down`
11925 *
11926 * **Initial value**: `fill`
11927 *
11928 * | Chrome | Firefox | Safari | Edge | IE |
11929 * | :----: | :-----: | :----: | :----: | :-: |
11930 * | **32** | **36** | **10** | **79** | No |
11931 *
11932 * @see https://developer.mozilla.org/docs/Web/CSS/object-fit
11933 */
11934 "object-fit"?: Property.ObjectFit | undefined;
11935 /**
11936 * The **`object-position`** CSS property specifies the alignment of the selected replaced element's contents within the element's box. Areas of the box which aren't covered by the replaced element's object will show the element's background.
11937 *
11938 * **Syntax**: `<position>`
11939 *
11940 * **Initial value**: `50% 50%`
11941 *
11942 * | Chrome | Firefox | Safari | Edge | IE |
11943 * | :----: | :-----: | :----: | :----: | :-: |
11944 * | **32** | **36** | **10** | **79** | No |
11945 *
11946 * @see https://developer.mozilla.org/docs/Web/CSS/object-position
11947 */
11948 "object-position"?: Property.ObjectPosition<TLength> | undefined;
11949 /**
11950 * **Syntax**: `auto | <position>`
11951 *
11952 * **Initial value**: `auto`
11953 *
11954 * | Chrome | Firefox | Safari | Edge | IE |
11955 * | :----: | :-----: | :----: | :----: | :-: |
11956 * | **79** | **72** | No | **79** | No |
11957 *
11958 * @see https://developer.mozilla.org/docs/Web/CSS/offset-anchor
11959 */
11960 "offset-anchor"?: Property.OffsetAnchor<TLength> | undefined;
11961 /**
11962 * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.
11963 *
11964 * **Syntax**: `<length-percentage>`
11965 *
11966 * **Initial value**: `0`
11967 *
11968 * | Chrome | Firefox | Safari | Edge | IE |
11969 * | :--------------------: | :-----: | :----: | :----: | :-: |
11970 * | **55** | **72** | No | **79** | No |
11971 * | 46 _(motion-distance)_ | | | | |
11972 *
11973 * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance
11974 */
11975 "offset-distance"?: Property.OffsetDistance<TLength> | undefined;
11976 /**
11977 * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.
11978 *
11979 * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`
11980 *
11981 * **Initial value**: `none`
11982 *
11983 * | Chrome | Firefox | Safari | Edge | IE |
11984 * | :----------------: | :-----: | :----: | :----: | :-: |
11985 * | **55** | **72** | No | **79** | No |
11986 * | 46 _(motion-path)_ | | | | |
11987 *
11988 * @see https://developer.mozilla.org/docs/Web/CSS/offset-path
11989 */
11990 "offset-path"?: Property.OffsetPath | undefined;
11991 /**
11992 * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.
11993 *
11994 * **Syntax**: `[ auto | reverse ] || <angle>`
11995 *
11996 * **Initial value**: `auto`
11997 *
11998 * | Chrome | Firefox | Safari | Edge | IE |
11999 * | :--------------------: | :-----: | :----: | :----: | :-: |
12000 * | **56** | **72** | No | **79** | No |
12001 * | 46 _(motion-rotation)_ | | | | |
12002 *
12003 * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
12004 */
12005 "offset-rotate"?: Property.OffsetRotate | undefined;
12006 /**
12007 * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.
12008 *
12009 * **Syntax**: `[ auto | reverse ] || <angle>`
12010 *
12011 * **Initial value**: `auto`
12012 *
12013 * | Chrome | Firefox | Safari | Edge | IE |
12014 * | :--------------------: | :-----: | :----: | :----: | :-: |
12015 * | **56** | **72** | No | **79** | No |
12016 * | 46 _(motion-rotation)_ | | | | |
12017 *
12018 * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
12019 */
12020 "offset-rotation"?: Property.OffsetRotate | undefined;
12021 /**
12022 * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.
12023 *
12024 * **Syntax**: `<alpha-value>`
12025 *
12026 * **Initial value**: `1.0`
12027 *
12028 * | Chrome | Firefox | Safari | Edge | IE |
12029 * | :----: | :-----: | :----: | :----: | :---: |
12030 * | **1** | **1** | **2** | **12** | **9** |
12031 *
12032 * @see https://developer.mozilla.org/docs/Web/CSS/opacity
12033 */
12034 opacity?: Property.Opacity | undefined;
12035 /**
12036 * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.
12037 *
12038 * **Syntax**: `<integer>`
12039 *
12040 * **Initial value**: `0`
12041 *
12042 * | Chrome | Firefox | Safari | Edge | IE |
12043 * | :------: | :-----: | :-----: | :----: | :------: |
12044 * | **29** | **20** | **9** | **12** | **11** |
12045 * | 21 _-x-_ | | 7 _-x-_ | | 10 _-x-_ |
12046 *
12047 * @see https://developer.mozilla.org/docs/Web/CSS/order
12048 */
12049 order?: Property.Order | undefined;
12050 /**
12051 * The **`orphans`** CSS property sets the minimum number of lines in a block container that must be shown at the _bottom_ of a page, region, or column.
12052 *
12053 * **Syntax**: `<integer>`
12054 *
12055 * **Initial value**: `2`
12056 *
12057 * | Chrome | Firefox | Safari | Edge | IE |
12058 * | :----: | :-----: | :-----: | :----: | :---: |
12059 * | **25** | No | **1.3** | **12** | **8** |
12060 *
12061 * @see https://developer.mozilla.org/docs/Web/CSS/orphans
12062 */
12063 orphans?: Property.Orphans | undefined;
12064 /**
12065 * The **`outline-color`** CSS property sets the color of an element's outline.
12066 *
12067 * **Syntax**: `<color> | invert`
12068 *
12069 * **Initial value**: `invert`, for browsers supporting it, `currentColor` for the other
12070 *
12071 * | Chrome | Firefox | Safari | Edge | IE |
12072 * | :----: | :-----: | :-----: | :----: | :---: |
12073 * | **1** | **1.5** | **1.2** | **12** | **8** |
12074 *
12075 * @see https://developer.mozilla.org/docs/Web/CSS/outline-color
12076 */
12077 "outline-color"?: Property.OutlineColor | undefined;
12078 /**
12079 * The **`outline-offset`** CSS property sets the amount of space between an outline and the edge or border of an element.
12080 *
12081 * **Syntax**: `<length>`
12082 *
12083 * **Initial value**: `0`
12084 *
12085 * | Chrome | Firefox | Safari | Edge | IE |
12086 * | :----: | :-----: | :-----: | :----: | :-: |
12087 * | **1** | **1.5** | **1.2** | **15** | No |
12088 *
12089 * @see https://developer.mozilla.org/docs/Web/CSS/outline-offset
12090 */
12091 "outline-offset"?: Property.OutlineOffset<TLength> | undefined;
12092 /**
12093 * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
12094 *
12095 * **Syntax**: `auto | <'border-style'>`
12096 *
12097 * **Initial value**: `none`
12098 *
12099 * | Chrome | Firefox | Safari | Edge | IE |
12100 * | :----: | :-----: | :-----: | :----: | :---: |
12101 * | **1** | **1.5** | **1.2** | **12** | **8** |
12102 *
12103 * @see https://developer.mozilla.org/docs/Web/CSS/outline-style
12104 */
12105 "outline-style"?: Property.OutlineStyle | undefined;
12106 /**
12107 * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
12108 *
12109 * **Syntax**: `<line-width>`
12110 *
12111 * **Initial value**: `medium`
12112 *
12113 * | Chrome | Firefox | Safari | Edge | IE |
12114 * | :----: | :-----: | :-----: | :----: | :---: |
12115 * | **1** | **1.5** | **1.2** | **12** | **8** |
12116 *
12117 * @see https://developer.mozilla.org/docs/Web/CSS/outline-width
12118 */
12119 "outline-width"?: Property.OutlineWidth<TLength> | undefined;
12120 /**
12121 * **Syntax**: `auto | none`
12122 *
12123 * **Initial value**: `auto`
12124 *
12125 * | Chrome | Firefox | Safari | Edge | IE |
12126 * | :----: | :-----: | :----: | :----: | :-: |
12127 * | **56** | **66** | No | **79** | No |
12128 *
12129 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-anchor
12130 */
12131 "overflow-anchor"?: Property.OverflowAnchor | undefined;
12132 /**
12133 * **Syntax**: `visible | hidden | clip | scroll | auto`
12134 *
12135 * **Initial value**: `auto`
12136 *
12137 * | Chrome | Firefox | Safari | Edge | IE |
12138 * | :----: | :-----: | :----: | :--: | :-: |
12139 * | No | **69** | No | No | No |
12140 *
12141 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-block
12142 */
12143 "overflow-block"?: Property.OverflowBlock | undefined;
12144 /**
12145 * The **`overflow-clip-box`** CSS property specifies relative to which box the clipping happens when there is an overflow. It is short hand for the `overflow-clip-box-inline` and `overflow-clip-box-block` properties.
12146 *
12147 * **Syntax**: `padding-box | content-box`
12148 *
12149 * **Initial value**: `padding-box`
12150 *
12151 * | Chrome | Firefox | Safari | Edge | IE |
12152 * | :----: | :-----: | :----: | :--: | :-: |
12153 * | No | **29** | No | No | No |
12154 *
12155 * @see https://developer.mozilla.org/docs/Mozilla/Gecko/Chrome/CSS/overflow-clip-box
12156 */
12157 "overflow-clip-box"?: Property.OverflowClipBox | undefined;
12158 /**
12159 * **Syntax**: `<visual-box> || <length [0,∞]>`
12160 *
12161 * **Initial value**: `0px`
12162 *
12163 * | Chrome | Firefox | Safari | Edge | IE |
12164 * | :----: | :-----: | :----: | :----: | :-: |
12165 * | **90** | No | No | **90** | No |
12166 *
12167 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-clip-margin
12168 */
12169 "overflow-clip-margin"?: Property.OverflowClipMargin<TLength> | undefined;
12170 /**
12171 * **Syntax**: `visible | hidden | clip | scroll | auto`
12172 *
12173 * **Initial value**: `auto`
12174 *
12175 * | Chrome | Firefox | Safari | Edge | IE |
12176 * | :----: | :-----: | :----: | :--: | :-: |
12177 * | No | **69** | No | No | No |
12178 *
12179 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-inline
12180 */
12181 "overflow-inline"?: Property.OverflowInline | undefined;
12182 /**
12183 * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.
12184 *
12185 * **Syntax**: `normal | break-word | anywhere`
12186 *
12187 * **Initial value**: `normal`
12188 *
12189 * | Chrome | Firefox | Safari | Edge | IE |
12190 * | :-------------: | :---------------: | :-------------: | :--------------: | :-------------------: |
12191 * | **23** | **49** | **7** | **18** | **5.5** _(word-wrap)_ |
12192 * | 1 _(word-wrap)_ | 3.5 _(word-wrap)_ | 1 _(word-wrap)_ | 12 _(word-wrap)_ | |
12193 *
12194 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-wrap
12195 */
12196 "overflow-wrap"?: Property.OverflowWrap | undefined;
12197 /**
12198 * The **`overflow-x`** CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.
12199 *
12200 * **Syntax**: `visible | hidden | clip | scroll | auto`
12201 *
12202 * **Initial value**: `visible`
12203 *
12204 * | Chrome | Firefox | Safari | Edge | IE |
12205 * | :----: | :-----: | :----: | :----: | :---: |
12206 * | **1** | **3.5** | **3** | **12** | **5** |
12207 *
12208 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-x
12209 */
12210 "overflow-x"?: Property.OverflowX | undefined;
12211 /**
12212 * The **`overflow-y`** CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.
12213 *
12214 * **Syntax**: `visible | hidden | clip | scroll | auto`
12215 *
12216 * **Initial value**: `visible`
12217 *
12218 * | Chrome | Firefox | Safari | Edge | IE |
12219 * | :----: | :-----: | :----: | :----: | :---: |
12220 * | **1** | **3.5** | **3** | **12** | **5** |
12221 *
12222 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-y
12223 */
12224 "overflow-y"?: Property.OverflowY | undefined;
12225 /**
12226 * The **`overscroll-behavior-block`** CSS property sets the browser's behavior when the block direction boundary of a scrolling area is reached.
12227 *
12228 * **Syntax**: `contain | none | auto`
12229 *
12230 * **Initial value**: `auto`
12231 *
12232 * | Chrome | Firefox | Safari | Edge | IE |
12233 * | :----: | :-----: | :----: | :----: | :-: |
12234 * | **77** | **73** | No | **79** | No |
12235 *
12236 * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-block
12237 */
12238 "overscroll-behavior-block"?: Property.OverscrollBehaviorBlock | undefined;
12239 /**
12240 * The **`overscroll-behavior-inline`** CSS property sets the browser's behavior when the inline direction boundary of a scrolling area is reached.
12241 *
12242 * **Syntax**: `contain | none | auto`
12243 *
12244 * **Initial value**: `auto`
12245 *
12246 * | Chrome | Firefox | Safari | Edge | IE |
12247 * | :----: | :-----: | :----: | :----: | :-: |
12248 * | **77** | **73** | No | **79** | No |
12249 *
12250 * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-inline
12251 */
12252 "overscroll-behavior-inline"?: Property.OverscrollBehaviorInline | undefined;
12253 /**
12254 * The **`overscroll-behavior-x`** CSS property sets the browser's behavior when the horizontal boundary of a scrolling area is reached.
12255 *
12256 * **Syntax**: `contain | none | auto`
12257 *
12258 * **Initial value**: `auto`
12259 *
12260 * | Chrome | Firefox | Safari | Edge | IE |
12261 * | :----: | :-----: | :----: | :----: | :-: |
12262 * | **63** | **59** | No | **18** | No |
12263 *
12264 * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-x
12265 */
12266 "overscroll-behavior-x"?: Property.OverscrollBehaviorX | undefined;
12267 /**
12268 * The **`overscroll-behavior-y`** CSS property sets the browser's behavior when the vertical boundary of a scrolling area is reached.
12269 *
12270 * **Syntax**: `contain | none | auto`
12271 *
12272 * **Initial value**: `auto`
12273 *
12274 * | Chrome | Firefox | Safari | Edge | IE |
12275 * | :----: | :-----: | :----: | :----: | :-: |
12276 * | **63** | **59** | No | **18** | No |
12277 *
12278 * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-y
12279 */
12280 "overscroll-behavior-y"?: Property.OverscrollBehaviorY | undefined;
12281 /**
12282 * The **`padding-block`** CSS shorthand property defines the logical block start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
12283 *
12284 * **Syntax**: `<'padding-left'>{1,2}`
12285 *
12286 * **Initial value**: `0`
12287 *
12288 * | Chrome | Firefox | Safari | Edge | IE |
12289 * | :----: | :-----: | :------: | :----: | :-: |
12290 * | **87** | **66** | **14.1** | **87** | No |
12291 *
12292 * @see https://developer.mozilla.org/docs/Web/CSS/padding-block
12293 */
12294 "padding-block"?: Property.PaddingBlock<TLength> | undefined;
12295 /**
12296 * The **`padding-block-end`** CSS property defines the logical block end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
12297 *
12298 * **Syntax**: `<'padding-left'>`
12299 *
12300 * **Initial value**: `0`
12301 *
12302 * | Chrome | Firefox | Safari | Edge | IE |
12303 * | :----: | :-----: | :------: | :----: | :-: |
12304 * | **69** | **41** | **12.1** | **79** | No |
12305 *
12306 * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-end
12307 */
12308 "padding-block-end"?: Property.PaddingBlockEnd<TLength> | undefined;
12309 /**
12310 * The **`padding-block-start`** CSS property defines the logical block start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
12311 *
12312 * **Syntax**: `<'padding-left'>`
12313 *
12314 * **Initial value**: `0`
12315 *
12316 * | Chrome | Firefox | Safari | Edge | IE |
12317 * | :----: | :-----: | :------: | :----: | :-: |
12318 * | **69** | **41** | **12.1** | **79** | No |
12319 *
12320 * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-start
12321 */
12322 "padding-block-start"?: Property.PaddingBlockStart<TLength> | undefined;
12323 /**
12324 * The **`padding-bottom`** CSS property sets the height of the padding area on the bottom of an element.
12325 *
12326 * **Syntax**: `<length> | <percentage>`
12327 *
12328 * **Initial value**: `0`
12329 *
12330 * | Chrome | Firefox | Safari | Edge | IE |
12331 * | :----: | :-----: | :----: | :----: | :---: |
12332 * | **1** | **1** | **1** | **12** | **4** |
12333 *
12334 * @see https://developer.mozilla.org/docs/Web/CSS/padding-bottom
12335 */
12336 "padding-bottom"?: Property.PaddingBottom<TLength> | undefined;
12337 /**
12338 * The **`padding-inline`** CSS shorthand property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
12339 *
12340 * **Syntax**: `<'padding-left'>{1,2}`
12341 *
12342 * **Initial value**: `0`
12343 *
12344 * | Chrome | Firefox | Safari | Edge | IE |
12345 * | :----: | :-----: | :------: | :----: | :-: |
12346 * | **87** | **66** | **14.1** | **87** | No |
12347 *
12348 * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
12349 */
12350 "padding-inline"?: Property.PaddingInline<TLength> | undefined;
12351 /**
12352 * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
12353 *
12354 * **Syntax**: `<'padding-left'>`
12355 *
12356 * **Initial value**: `0`
12357 *
12358 * | Chrome | Firefox | Safari | Edge | IE |
12359 * | :-----------------------: | :--------------------: | :-----------------------: | :----: | :-: |
12360 * | **69** | **41** | **12.1** | **79** | No |
12361 * | 2 _(-webkit-padding-end)_ | 3 _(-moz-padding-end)_ | 3 _(-webkit-padding-end)_ | | |
12362 *
12363 * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
12364 */
12365 "padding-inline-end"?: Property.PaddingInlineEnd<TLength> | undefined;
12366 /**
12367 * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
12368 *
12369 * **Syntax**: `<'padding-left'>`
12370 *
12371 * **Initial value**: `0`
12372 *
12373 * | Chrome | Firefox | Safari | Edge | IE |
12374 * | :-------------------------: | :----------------------: | :-------------------------: | :----: | :-: |
12375 * | **69** | **41** | **12.1** | **79** | No |
12376 * | 2 _(-webkit-padding-start)_ | 3 _(-moz-padding-start)_ | 3 _(-webkit-padding-start)_ | | |
12377 *
12378 * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
12379 */
12380 "padding-inline-start"?: Property.PaddingInlineStart<TLength> | undefined;
12381 /**
12382 * The **`padding-left`** CSS property sets the width of the padding area to the left of an element.
12383 *
12384 * **Syntax**: `<length> | <percentage>`
12385 *
12386 * **Initial value**: `0`
12387 *
12388 * | Chrome | Firefox | Safari | Edge | IE |
12389 * | :----: | :-----: | :----: | :----: | :---: |
12390 * | **1** | **1** | **1** | **12** | **4** |
12391 *
12392 * @see https://developer.mozilla.org/docs/Web/CSS/padding-left
12393 */
12394 "padding-left"?: Property.PaddingLeft<TLength> | undefined;
12395 /**
12396 * The **`padding-right`** CSS property sets the width of the padding area on the right of an element.
12397 *
12398 * **Syntax**: `<length> | <percentage>`
12399 *
12400 * **Initial value**: `0`
12401 *
12402 * | Chrome | Firefox | Safari | Edge | IE |
12403 * | :----: | :-----: | :----: | :----: | :---: |
12404 * | **1** | **1** | **1** | **12** | **4** |
12405 *
12406 * @see https://developer.mozilla.org/docs/Web/CSS/padding-right
12407 */
12408 "padding-right"?: Property.PaddingRight<TLength> | undefined;
12409 /**
12410 * The **`padding-top`** CSS property sets the height of the padding area on the top of an element.
12411 *
12412 * **Syntax**: `<length> | <percentage>`
12413 *
12414 * **Initial value**: `0`
12415 *
12416 * | Chrome | Firefox | Safari | Edge | IE |
12417 * | :----: | :-----: | :----: | :----: | :---: |
12418 * | **1** | **1** | **1** | **12** | **4** |
12419 *
12420 * @see https://developer.mozilla.org/docs/Web/CSS/padding-top
12421 */
12422 "padding-top"?: Property.PaddingTop<TLength> | undefined;
12423 /**
12424 * The **`page-break-after`** CSS property adjusts page breaks _after_ the current element.
12425 *
12426 * **Syntax**: `auto | always | avoid | left | right | recto | verso`
12427 *
12428 * **Initial value**: `auto`
12429 *
12430 * | Chrome | Firefox | Safari | Edge | IE |
12431 * | :----: | :-----: | :-----: | :----: | :---: |
12432 * | **1** | **1** | **1.2** | **12** | **4** |
12433 *
12434 * @see https://developer.mozilla.org/docs/Web/CSS/page-break-after
12435 */
12436 "page-break-after"?: Property.PageBreakAfter | undefined;
12437 /**
12438 * The **`page-break-before`** CSS property adjusts page breaks _before_ the current element.
12439 *
12440 * **Syntax**: `auto | always | avoid | left | right | recto | verso`
12441 *
12442 * **Initial value**: `auto`
12443 *
12444 * | Chrome | Firefox | Safari | Edge | IE |
12445 * | :----: | :-----: | :-----: | :----: | :---: |
12446 * | **1** | **1** | **1.2** | **12** | **4** |
12447 *
12448 * @see https://developer.mozilla.org/docs/Web/CSS/page-break-before
12449 */
12450 "page-break-before"?: Property.PageBreakBefore | undefined;
12451 /**
12452 * The **`page-break-inside`** CSS property adjusts page breaks _inside_ the current element.
12453 *
12454 * **Syntax**: `auto | avoid`
12455 *
12456 * **Initial value**: `auto`
12457 *
12458 * | Chrome | Firefox | Safari | Edge | IE |
12459 * | :----: | :-----: | :-----: | :----: | :---: |
12460 * | **1** | **19** | **1.3** | **12** | **8** |
12461 *
12462 * @see https://developer.mozilla.org/docs/Web/CSS/page-break-inside
12463 */
12464 "page-break-inside"?: Property.PageBreakInside | undefined;
12465 /**
12466 * The **`paint-order`** CSS property lets you control the order in which the fill and stroke (and painting markers) of text content and shapes are drawn.
12467 *
12468 * **Syntax**: `normal | [ fill || stroke || markers ]`
12469 *
12470 * **Initial value**: `normal`
12471 *
12472 * | Chrome | Firefox | Safari | Edge | IE |
12473 * | :----: | :-----: | :----: | :----: | :-: |
12474 * | **35** | **60** | **8** | **17** | No |
12475 *
12476 * @see https://developer.mozilla.org/docs/Web/CSS/paint-order
12477 */
12478 "paint-order"?: Property.PaintOrder | undefined;
12479 /**
12480 * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
12481 *
12482 * **Syntax**: `none | <length>`
12483 *
12484 * **Initial value**: `none`
12485 *
12486 * | Chrome | Firefox | Safari | Edge | IE |
12487 * | :------: | :------: | :-----: | :----: | :----: |
12488 * | **36** | **16** | **9** | **12** | **10** |
12489 * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | |
12490 *
12491 * @see https://developer.mozilla.org/docs/Web/CSS/perspective
12492 */
12493 perspective?: Property.Perspective<TLength> | undefined;
12494 /**
12495 * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
12496 *
12497 * **Syntax**: `<position>`
12498 *
12499 * **Initial value**: `50% 50%`
12500 *
12501 * | Chrome | Firefox | Safari | Edge | IE |
12502 * | :------: | :------: | :-----: | :----: | :----: |
12503 * | **36** | **16** | **9** | **12** | **10** |
12504 * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | |
12505 *
12506 * @see https://developer.mozilla.org/docs/Web/CSS/perspective-origin
12507 */
12508 "perspective-origin"?: Property.PerspectiveOrigin<TLength> | undefined;
12509 /**
12510 * The `**place-content**` CSS shorthand property allows you to align content along both the block and inline directions at once (i.e. the `align-content` and `justify-content` properties) in a relevant layout system such as Grid or Flexbox.
12511 *
12512 * **Syntax**: `<'align-content'> <'justify-content'>?`
12513 *
12514 * **Initial value**: `normal`
12515 *
12516 * | Chrome | Firefox | Safari | Edge | IE |
12517 * | :----: | :-----: | :----: | :----: | :-: |
12518 * | **59** | **45** | **9** | **79** | No |
12519 *
12520 * @see https://developer.mozilla.org/docs/Web/CSS/place-content
12521 */
12522 "place-content"?: Property.PlaceContent | undefined;
12523 /**
12524 * The **`pointer-events`** CSS property sets under what circumstances (if any) a particular graphic element can become the target of pointer events.
12525 *
12526 * **Syntax**: `auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit`
12527 *
12528 * **Initial value**: `auto`
12529 *
12530 * | Chrome | Firefox | Safari | Edge | IE |
12531 * | :----: | :-----: | :----: | :----: | :----: |
12532 * | **1** | **1.5** | **4** | **12** | **11** |
12533 *
12534 * @see https://developer.mozilla.org/docs/Web/CSS/pointer-events
12535 */
12536 "pointer-events"?: Property.PointerEvents | undefined;
12537 /**
12538 * The **`position`** CSS property sets how an element is positioned in a document. The `top`, `right`, `bottom`, and `left` properties determine the final location of positioned elements.
12539 *
12540 * **Syntax**: `static | relative | absolute | sticky | fixed`
12541 *
12542 * **Initial value**: `static`
12543 *
12544 * | Chrome | Firefox | Safari | Edge | IE |
12545 * | :----: | :-----: | :----: | :----: | :---: |
12546 * | **1** | **1** | **1** | **12** | **4** |
12547 *
12548 * @see https://developer.mozilla.org/docs/Web/CSS/position
12549 */
12550 position?: Property.Position | undefined;
12551 /**
12552 * The **`quotes`** CSS property sets how the browser should render quotation marks that are added using the `open-quotes` or `close-quotes` values of the CSS `content` property.
12553 *
12554 * **Syntax**: `none | auto | [ <string> <string> ]+`
12555 *
12556 * **Initial value**: depends on user agent
12557 *
12558 * | Chrome | Firefox | Safari | Edge | IE |
12559 * | :----: | :-----: | :----: | :----: | :---: |
12560 * | **11** | **1.5** | **9** | **12** | **8** |
12561 *
12562 * @see https://developer.mozilla.org/docs/Web/CSS/quotes
12563 */
12564 quotes?: Property.Quotes | undefined;
12565 /**
12566 * The **`resize`** CSS property sets whether an element is resizable, and if so, in which directions.
12567 *
12568 * **Syntax**: `none | both | horizontal | vertical | block | inline`
12569 *
12570 * **Initial value**: `none`
12571 *
12572 * | Chrome | Firefox | Safari | Edge | IE |
12573 * | :----: | :-----: | :----: | :----: | :-: |
12574 * | **1** | **4** | **3** | **79** | No |
12575 *
12576 * @see https://developer.mozilla.org/docs/Web/CSS/resize
12577 */
12578 resize?: Property.Resize | undefined;
12579 /**
12580 * The **`right`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.
12581 *
12582 * **Syntax**: `<length> | <percentage> | auto`
12583 *
12584 * **Initial value**: `auto`
12585 *
12586 * | Chrome | Firefox | Safari | Edge | IE |
12587 * | :----: | :-----: | :----: | :----: | :-----: |
12588 * | **1** | **1** | **1** | **12** | **5.5** |
12589 *
12590 * @see https://developer.mozilla.org/docs/Web/CSS/right
12591 */
12592 right?: Property.Right<TLength> | undefined;
12593 /**
12594 * The **`rotate`** CSS property allows you to specify rotation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` property.
12595 *
12596 * **Syntax**: `none | <angle> | [ x | y | z | <number>{3} ] && <angle>`
12597 *
12598 * **Initial value**: `none`
12599 *
12600 * | Chrome | Firefox | Safari | Edge | IE |
12601 * | :----: | :-----: | :------: | :--: | :-: |
12602 * | No | **72** | **14.1** | No | No |
12603 *
12604 * @see https://developer.mozilla.org/docs/Web/CSS/rotate
12605 */
12606 rotate?: Property.Rotate | undefined;
12607 /**
12608 * The **`row-gap`** CSS property sets the size of the gap (gutter) between an element's grid rows.
12609 *
12610 * **Syntax**: `normal | <length-percentage>`
12611 *
12612 * **Initial value**: `normal`
12613 *
12614 * ---
12615 *
12616 * _Supported in Flex Layout_
12617 *
12618 * | Chrome | Firefox | Safari | Edge | IE |
12619 * | :----: | :-----: | :------: | :----: | :-: |
12620 * | **84** | **63** | **14.1** | **84** | No |
12621 *
12622 * ---
12623 *
12624 * _Supported in Grid Layout_
12625 *
12626 * | Chrome | Firefox | Safari | Edge | IE |
12627 * | :-----------------: | :-----------------: | :-------------------: | :----: | :-: |
12628 * | **66** | **61** | **12** | **16** | No |
12629 * | 57 _(grid-row-gap)_ | 52 _(grid-row-gap)_ | 10.1 _(grid-row-gap)_ | | |
12630 *
12631 * ---
12632 *
12633 * @see https://developer.mozilla.org/docs/Web/CSS/row-gap
12634 */
12635 "row-gap"?: Property.RowGap<TLength> | undefined;
12636 /**
12637 * The `**ruby-align**` CSS property defines the distribution of the different ruby elements over the base.
12638 *
12639 * **Syntax**: `start | center | space-between | space-around`
12640 *
12641 * **Initial value**: `space-around`
12642 *
12643 * | Chrome | Firefox | Safari | Edge | IE |
12644 * | :----: | :-----: | :----: | :--: | :-: |
12645 * | No | **38** | No | No | No |
12646 *
12647 * @see https://developer.mozilla.org/docs/Web/CSS/ruby-align
12648 */
12649 "ruby-align"?: Property.RubyAlign | undefined;
12650 /**
12651 * **Syntax**: `separate | collapse | auto`
12652 *
12653 * **Initial value**: `separate`
12654 */
12655 "ruby-merge"?: Property.RubyMerge | undefined;
12656 /**
12657 * The `**ruby-position**` CSS property defines the position of a ruby element relatives to its base element. It can be position over the element (`over`), under it (`under`), or between the characters, on their right side (`inter-character`).
12658 *
12659 * **Syntax**: `[ alternate || [ over | under ] ] | inter-character`
12660 *
12661 * **Initial value**: `alternate`
12662 *
12663 * | Chrome | Firefox | Safari | Edge | IE |
12664 * | :-----: | :-----: | :-----------: | :---: | :-: |
12665 * | **84** | **38** | **6.1** _-x-_ | 12-79 | No |
12666 * | 1 _-x-_ | | | | |
12667 *
12668 * @see https://developer.mozilla.org/docs/Web/CSS/ruby-position
12669 */
12670 "ruby-position"?: Property.RubyPosition | undefined;
12671 /**
12672 * The **`scale`** CSS property allows you to specify scale transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.
12673 *
12674 * **Syntax**: `none | <number>{1,3}`
12675 *
12676 * **Initial value**: `none`
12677 *
12678 * | Chrome | Firefox | Safari | Edge | IE |
12679 * | :----: | :-----: | :------: | :--: | :-: |
12680 * | No | **72** | **14.1** | No | No |
12681 *
12682 * @see https://developer.mozilla.org/docs/Web/CSS/scale
12683 */
12684 scale?: Property.Scale | undefined;
12685 /**
12686 * The **`scroll-behavior`** CSS property sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs.
12687 *
12688 * **Syntax**: `auto | smooth`
12689 *
12690 * **Initial value**: `auto`
12691 *
12692 * | Chrome | Firefox | Safari | Edge | IE |
12693 * | :----: | :-----: | :----: | :----: | :-: |
12694 * | **61** | **36** | n/a | **79** | No |
12695 *
12696 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-behavior
12697 */
12698 "scroll-behavior"?: Property.ScrollBehavior | undefined;
12699 /**
12700 * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.
12701 *
12702 * **Syntax**: `<length>{1,4}`
12703 *
12704 * **Initial value**: `0`
12705 *
12706 * | Chrome | Firefox | Safari | Edge | IE |
12707 * | :----: | :-----: | :-----------------------: | :----: | :-: |
12708 * | **69** | **90** | **14.1** | **79** | No |
12709 * | | | 11 _(scroll-snap-margin)_ | | |
12710 *
12711 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
12712 */
12713 "scroll-margin"?: Property.ScrollMargin<TLength> | undefined;
12714 /**
12715 * The `scroll-margin-block` shorthand property sets the scroll margins of an element in the block dimension.
12716 *
12717 * **Syntax**: `<length>{1,2}`
12718 *
12719 * **Initial value**: `0`
12720 *
12721 * | Chrome | Firefox | Safari | Edge | IE |
12722 * | :----: | :-----: | :------: | :----: | :-: |
12723 * | **69** | **68** | **14.1** | **79** | No |
12724 *
12725 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
12726 */
12727 "scroll-margin-block"?: Property.ScrollMarginBlock<TLength> | undefined;
12728 /**
12729 * The `scroll-margin-block-end` property defines the margin of the scroll snap area at the end of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
12730 *
12731 * **Syntax**: `<length>`
12732 *
12733 * **Initial value**: `0`
12734 *
12735 * | Chrome | Firefox | Safari | Edge | IE |
12736 * | :----: | :-----: | :------: | :----: | :-: |
12737 * | **69** | **68** | **14.1** | **79** | No |
12738 *
12739 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
12740 */
12741 "scroll-margin-block-end"?: Property.ScrollMarginBlockEnd<TLength> | undefined;
12742 /**
12743 * The `scroll-margin-block-start` property defines the margin of the scroll snap area at the start of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
12744 *
12745 * **Syntax**: `<length>`
12746 *
12747 * **Initial value**: `0`
12748 *
12749 * | Chrome | Firefox | Safari | Edge | IE |
12750 * | :----: | :-----: | :------: | :----: | :-: |
12751 * | **69** | **68** | **14.1** | **79** | No |
12752 *
12753 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
12754 */
12755 "scroll-margin-block-start"?: Property.ScrollMarginBlockStart<TLength> | undefined;
12756 /**
12757 * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
12758 *
12759 * **Syntax**: `<length>`
12760 *
12761 * **Initial value**: `0`
12762 *
12763 * | Chrome | Firefox | Safari | Edge | IE |
12764 * | :----: | :-----: | :------------------------------: | :----: | :-: |
12765 * | **69** | **68** | **14.1** | **79** | No |
12766 * | | | 11 _(scroll-snap-margin-bottom)_ | | |
12767 *
12768 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
12769 */
12770 "scroll-margin-bottom"?: Property.ScrollMarginBottom<TLength> | undefined;
12771 /**
12772 * The `scroll-margin-inline` shorthand property sets the scroll margins of an element in the inline dimension.
12773 *
12774 * **Syntax**: `<length>{1,2}`
12775 *
12776 * **Initial value**: `0`
12777 *
12778 * | Chrome | Firefox | Safari | Edge | IE |
12779 * | :----: | :-----: | :------: | :----: | :-: |
12780 * | **69** | **68** | **14.1** | **79** | No |
12781 *
12782 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
12783 */
12784 "scroll-margin-inline"?: Property.ScrollMarginInline<TLength> | undefined;
12785 /**
12786 * The `scroll-margin-inline-end` property defines the margin of the scroll snap area at the end of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
12787 *
12788 * **Syntax**: `<length>`
12789 *
12790 * **Initial value**: `0`
12791 *
12792 * | Chrome | Firefox | Safari | Edge | IE |
12793 * | :----: | :-----: | :------: | :----: | :-: |
12794 * | **69** | **68** | **14.1** | **79** | No |
12795 *
12796 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
12797 */
12798 "scroll-margin-inline-end"?: Property.ScrollMarginInlineEnd<TLength> | undefined;
12799 /**
12800 * The `scroll-margin-inline-start` property defines the margin of the scroll snap area at the start of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
12801 *
12802 * **Syntax**: `<length>`
12803 *
12804 * **Initial value**: `0`
12805 *
12806 * | Chrome | Firefox | Safari | Edge | IE |
12807 * | :----: | :-----: | :------: | :----: | :-: |
12808 * | **69** | **68** | **14.1** | **79** | No |
12809 *
12810 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
12811 */
12812 "scroll-margin-inline-start"?: Property.ScrollMarginInlineStart<TLength> | undefined;
12813 /**
12814 * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
12815 *
12816 * **Syntax**: `<length>`
12817 *
12818 * **Initial value**: `0`
12819 *
12820 * | Chrome | Firefox | Safari | Edge | IE |
12821 * | :----: | :-----: | :----------------------------: | :----: | :-: |
12822 * | **69** | **68** | **14.1** | **79** | No |
12823 * | | | 11 _(scroll-snap-margin-left)_ | | |
12824 *
12825 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
12826 */
12827 "scroll-margin-left"?: Property.ScrollMarginLeft<TLength> | undefined;
12828 /**
12829 * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
12830 *
12831 * **Syntax**: `<length>`
12832 *
12833 * **Initial value**: `0`
12834 *
12835 * | Chrome | Firefox | Safari | Edge | IE |
12836 * | :----: | :-----: | :-----------------------------: | :----: | :-: |
12837 * | **69** | **68** | **14.1** | **79** | No |
12838 * | | | 11 _(scroll-snap-margin-right)_ | | |
12839 *
12840 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
12841 */
12842 "scroll-margin-right"?: Property.ScrollMarginRight<TLength> | undefined;
12843 /**
12844 * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
12845 *
12846 * **Syntax**: `<length>`
12847 *
12848 * **Initial value**: `0`
12849 *
12850 * | Chrome | Firefox | Safari | Edge | IE |
12851 * | :----: | :-----: | :---------------------------: | :----: | :-: |
12852 * | **69** | **68** | **14.1** | **79** | No |
12853 * | | | 11 _(scroll-snap-margin-top)_ | | |
12854 *
12855 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
12856 */
12857 "scroll-margin-top"?: Property.ScrollMarginTop<TLength> | undefined;
12858 /**
12859 * The **`scroll-padding`** shorthand property sets scroll padding on all sides of an element at once, much like the `padding` property does for padding on an element.
12860 *
12861 * **Syntax**: `[ auto | <length-percentage> ]{1,4}`
12862 *
12863 * **Initial value**: `auto`
12864 *
12865 * | Chrome | Firefox | Safari | Edge | IE |
12866 * | :----: | :-----: | :------: | :----: | :-: |
12867 * | **69** | **68** | **14.1** | **79** | No |
12868 *
12869 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding
12870 */
12871 "scroll-padding"?: Property.ScrollPadding<TLength> | undefined;
12872 /**
12873 * The `scroll-padding-block` shorthand property sets the scroll padding of an element in the block dimension.
12874 *
12875 * **Syntax**: `[ auto | <length-percentage> ]{1,2}`
12876 *
12877 * **Initial value**: `auto`
12878 *
12879 * | Chrome | Firefox | Safari | Edge | IE |
12880 * | :----: | :-----: | :----: | :----: | :-: |
12881 * | **69** | **68** | **15** | **79** | No |
12882 *
12883 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block
12884 */
12885 "scroll-padding-block"?: Property.ScrollPaddingBlock<TLength> | undefined;
12886 /**
12887 * The `scroll-padding-block-end` property defines offsets for the end edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
12888 *
12889 * **Syntax**: `auto | <length-percentage>`
12890 *
12891 * **Initial value**: `auto`
12892 *
12893 * | Chrome | Firefox | Safari | Edge | IE |
12894 * | :----: | :-----: | :----: | :----: | :-: |
12895 * | **69** | **68** | **15** | **79** | No |
12896 *
12897 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end
12898 */
12899 "scroll-padding-block-end"?: Property.ScrollPaddingBlockEnd<TLength> | undefined;
12900 /**
12901 * The `scroll-padding-block-start` property defines offsets for the start edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
12902 *
12903 * **Syntax**: `auto | <length-percentage>`
12904 *
12905 * **Initial value**: `auto`
12906 *
12907 * | Chrome | Firefox | Safari | Edge | IE |
12908 * | :----: | :-----: | :----: | :----: | :-: |
12909 * | **69** | **68** | **15** | **79** | No |
12910 *
12911 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start
12912 */
12913 "scroll-padding-block-start"?: Property.ScrollPaddingBlockStart<TLength> | undefined;
12914 /**
12915 * The `scroll-padding-bottom` property defines offsets for the bottom of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
12916 *
12917 * **Syntax**: `auto | <length-percentage>`
12918 *
12919 * **Initial value**: `auto`
12920 *
12921 * | Chrome | Firefox | Safari | Edge | IE |
12922 * | :----: | :-----: | :------: | :----: | :-: |
12923 * | **69** | **68** | **14.1** | **79** | No |
12924 *
12925 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom
12926 */
12927 "scroll-padding-bottom"?: Property.ScrollPaddingBottom<TLength> | undefined;
12928 /**
12929 * The `scroll-padding-inline` shorthand property sets the scroll padding of an element in the inline dimension.
12930 *
12931 * **Syntax**: `[ auto | <length-percentage> ]{1,2}`
12932 *
12933 * **Initial value**: `auto`
12934 *
12935 * | Chrome | Firefox | Safari | Edge | IE |
12936 * | :----: | :-----: | :----: | :----: | :-: |
12937 * | **69** | **68** | **15** | **79** | No |
12938 *
12939 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline
12940 */
12941 "scroll-padding-inline"?: Property.ScrollPaddingInline<TLength> | undefined;
12942 /**
12943 * The `scroll-padding-inline-end` property defines offsets for the end edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
12944 *
12945 * **Syntax**: `auto | <length-percentage>`
12946 *
12947 * **Initial value**: `auto`
12948 *
12949 * | Chrome | Firefox | Safari | Edge | IE |
12950 * | :----: | :-----: | :----: | :----: | :-: |
12951 * | **69** | **68** | **15** | **79** | No |
12952 *
12953 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end
12954 */
12955 "scroll-padding-inline-end"?: Property.ScrollPaddingInlineEnd<TLength> | undefined;
12956 /**
12957 * The `scroll-padding-inline-start` property defines offsets for the start edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
12958 *
12959 * **Syntax**: `auto | <length-percentage>`
12960 *
12961 * **Initial value**: `auto`
12962 *
12963 * | Chrome | Firefox | Safari | Edge | IE |
12964 * | :----: | :-----: | :----: | :----: | :-: |
12965 * | **69** | **68** | **15** | **79** | No |
12966 *
12967 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start
12968 */
12969 "scroll-padding-inline-start"?: Property.ScrollPaddingInlineStart<TLength> | undefined;
12970 /**
12971 * The `scroll-padding-left` property defines offsets for the left of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
12972 *
12973 * **Syntax**: `auto | <length-percentage>`
12974 *
12975 * **Initial value**: `auto`
12976 *
12977 * | Chrome | Firefox | Safari | Edge | IE |
12978 * | :----: | :-----: | :------: | :----: | :-: |
12979 * | **69** | **68** | **14.1** | **79** | No |
12980 *
12981 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left
12982 */
12983 "scroll-padding-left"?: Property.ScrollPaddingLeft<TLength> | undefined;
12984 /**
12985 * The `scroll-padding-right` property defines offsets for the right of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
12986 *
12987 * **Syntax**: `auto | <length-percentage>`
12988 *
12989 * **Initial value**: `auto`
12990 *
12991 * | Chrome | Firefox | Safari | Edge | IE |
12992 * | :----: | :-----: | :------: | :----: | :-: |
12993 * | **69** | **68** | **14.1** | **79** | No |
12994 *
12995 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right
12996 */
12997 "scroll-padding-right"?: Property.ScrollPaddingRight<TLength> | undefined;
12998 /**
12999 * The **`scroll-padding-top`** property defines offsets for the top of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport.
13000 *
13001 * **Syntax**: `auto | <length-percentage>`
13002 *
13003 * **Initial value**: `auto`
13004 *
13005 * | Chrome | Firefox | Safari | Edge | IE |
13006 * | :----: | :-----: | :------: | :----: | :-: |
13007 * | **69** | **68** | **14.1** | **79** | No |
13008 *
13009 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top
13010 */
13011 "scroll-padding-top"?: Property.ScrollPaddingTop<TLength> | undefined;
13012 /**
13013 * The `scroll-snap-align` property specifies the box’s snap position as an alignment of its snap area (as the alignment subject) within its snap container’s snapport (as the alignment container). The two values specify the snapping alignment in the block axis and inline axis, respectively. If only one value is specified, the second value defaults to the same value.
13014 *
13015 * **Syntax**: `[ none | start | end | center ]{1,2}`
13016 *
13017 * **Initial value**: `none`
13018 *
13019 * | Chrome | Firefox | Safari | Edge | IE |
13020 * | :----: | :-----: | :----: | :----: | :-: |
13021 * | **69** | **68** | **11** | **79** | No |
13022 *
13023 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-align
13024 */
13025 "scroll-snap-align"?: Property.ScrollSnapAlign | undefined;
13026 /**
13027 * The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.
13028 *
13029 * **Syntax**: `<length>{1,4}`
13030 *
13031 * **Initial value**: `0`
13032 *
13033 * | Chrome | Firefox | Safari | Edge | IE |
13034 * | :----: | :-----: | :-----------------------: | :----: | :-: |
13035 * | **69** | 68-90 | **14.1** | **79** | No |
13036 * | | | 11 _(scroll-snap-margin)_ | | |
13037 *
13038 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
13039 */
13040 "scroll-snap-margin"?: Property.ScrollMargin<TLength> | undefined;
13041 /**
13042 * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
13043 *
13044 * **Syntax**: `<length>`
13045 *
13046 * **Initial value**: `0`
13047 *
13048 * | Chrome | Firefox | Safari | Edge | IE |
13049 * | :----: | :-----: | :------------------------------: | :----: | :-: |
13050 * | **69** | **68** | **14.1** | **79** | No |
13051 * | | | 11 _(scroll-snap-margin-bottom)_ | | |
13052 *
13053 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
13054 */
13055 "scroll-snap-margin-bottom"?: Property.ScrollMarginBottom<TLength> | undefined;
13056 /**
13057 * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
13058 *
13059 * **Syntax**: `<length>`
13060 *
13061 * **Initial value**: `0`
13062 *
13063 * | Chrome | Firefox | Safari | Edge | IE |
13064 * | :----: | :-----: | :----------------------------: | :----: | :-: |
13065 * | **69** | **68** | **14.1** | **79** | No |
13066 * | | | 11 _(scroll-snap-margin-left)_ | | |
13067 *
13068 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
13069 */
13070 "scroll-snap-margin-left"?: Property.ScrollMarginLeft<TLength> | undefined;
13071 /**
13072 * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
13073 *
13074 * **Syntax**: `<length>`
13075 *
13076 * **Initial value**: `0`
13077 *
13078 * | Chrome | Firefox | Safari | Edge | IE |
13079 * | :----: | :-----: | :-----------------------------: | :----: | :-: |
13080 * | **69** | **68** | **14.1** | **79** | No |
13081 * | | | 11 _(scroll-snap-margin-right)_ | | |
13082 *
13083 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
13084 */
13085 "scroll-snap-margin-right"?: Property.ScrollMarginRight<TLength> | undefined;
13086 /**
13087 * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container’s coordinate space), then adding the specified outsets.
13088 *
13089 * **Syntax**: `<length>`
13090 *
13091 * **Initial value**: `0`
13092 *
13093 * | Chrome | Firefox | Safari | Edge | IE |
13094 * | :----: | :-----: | :---------------------------: | :----: | :-: |
13095 * | **69** | **68** | **14.1** | **79** | No |
13096 * | | | 11 _(scroll-snap-margin-top)_ | | |
13097 *
13098 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
13099 */
13100 "scroll-snap-margin-top"?: Property.ScrollMarginTop<TLength> | undefined;
13101 /**
13102 * The **`scroll-snap-stop`** CSS property defines whether the scroll container is allowed to "pass over" possible snap positions.
13103 *
13104 * **Syntax**: `normal | always`
13105 *
13106 * **Initial value**: `normal`
13107 *
13108 * | Chrome | Firefox | Safari | Edge | IE |
13109 * | :----: | :-----: | :----: | :----: | :-: |
13110 * | **75** | No | **15** | **79** | No |
13111 *
13112 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop
13113 */
13114 "scroll-snap-stop"?: Property.ScrollSnapStop | undefined;
13115 /**
13116 * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.
13117 *
13118 * **Syntax**: `none | [ x | y | block | inline | both ] [ mandatory | proximity ]?`
13119 *
13120 * **Initial value**: `none`
13121 *
13122 * | Chrome | Firefox | Safari | Edge | IE |
13123 * | :----: | :-----: | :-----: | :----: | :----------: |
13124 * | **69** | 39-68 | **11** | **79** | **10** _-x-_ |
13125 * | | | 9 _-x-_ | | |
13126 *
13127 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type
13128 */
13129 "scroll-snap-type"?: Property.ScrollSnapType | undefined;
13130 /**
13131 * The **`scrollbar-color`** CSS property sets the color of the scrollbar track and thumb.
13132 *
13133 * **Syntax**: `auto | <color>{2}`
13134 *
13135 * **Initial value**: `auto`
13136 *
13137 * | Chrome | Firefox | Safari | Edge | IE |
13138 * | :----: | :-----: | :----: | :--: | :-: |
13139 * | No | **64** | No | No | No |
13140 *
13141 * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-color
13142 */
13143 "scrollbar-color"?: Property.ScrollbarColor | undefined;
13144 /**
13145 * The **`scrollbar-gutter`** CSS property allows authors to reserve space for the scrollbar, preventing unwanted layout changes as the content grows while also avoiding unnecessary visuals when scrolling isn't needed.
13146 *
13147 * **Syntax**: `auto | stable && both-edges?`
13148 *
13149 * **Initial value**: `auto`
13150 *
13151 * | Chrome | Firefox | Safari | Edge | IE |
13152 * | :----: | :-----: | :----: | :----: | :-: |
13153 * | **94** | No | No | **94** | No |
13154 *
13155 * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter
13156 */
13157 "scrollbar-gutter"?: Property.ScrollbarGutter | undefined;
13158 /**
13159 * The **`scrollbar-width`** property allows the author to set the maximum thickness of an element’s scrollbars when they are shown.
13160 *
13161 * **Syntax**: `auto | thin | none`
13162 *
13163 * **Initial value**: `auto`
13164 *
13165 * | Chrome | Firefox | Safari | Edge | IE |
13166 * | :----: | :-----: | :----: | :--: | :-: |
13167 * | No | **64** | No | No | No |
13168 *
13169 * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-width
13170 */
13171 "scrollbar-width"?: Property.ScrollbarWidth | undefined;
13172 /**
13173 * The **`shape-image-threshold`** CSS property sets the alpha channel threshold used to extract the shape using an image as the value for `shape-outside`.
13174 *
13175 * **Syntax**: `<alpha-value>`
13176 *
13177 * **Initial value**: `0.0`
13178 *
13179 * | Chrome | Firefox | Safari | Edge | IE |
13180 * | :----: | :-----: | :------: | :----: | :-: |
13181 * | **37** | **62** | **10.1** | **79** | No |
13182 *
13183 * @see https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold
13184 */
13185 "shape-image-threshold"?: Property.ShapeImageThreshold | undefined;
13186 /**
13187 * The **`shape-margin`** CSS property sets a margin for a CSS shape created using `shape-outside`.
13188 *
13189 * **Syntax**: `<length-percentage>`
13190 *
13191 * **Initial value**: `0`
13192 *
13193 * | Chrome | Firefox | Safari | Edge | IE |
13194 * | :----: | :-----: | :------: | :----: | :-: |
13195 * | **37** | **62** | **10.1** | **79** | No |
13196 *
13197 * @see https://developer.mozilla.org/docs/Web/CSS/shape-margin
13198 */
13199 "shape-margin"?: Property.ShapeMargin<TLength> | undefined;
13200 /**
13201 * The **`shape-outside`** CSS property defines a shape—which may be non-rectangular—around which adjacent inline content should wrap. By default, inline content wraps around its margin box; `shape-outside` provides a way to customize this wrapping, making it possible to wrap text around complex objects rather than simple boxes.
13202 *
13203 * **Syntax**: `none | [ <shape-box> || <basic-shape> ] | <image>`
13204 *
13205 * **Initial value**: `none`
13206 *
13207 * | Chrome | Firefox | Safari | Edge | IE |
13208 * | :----: | :-----: | :------: | :----: | :-: |
13209 * | **37** | **62** | **10.1** | **79** | No |
13210 *
13211 * @see https://developer.mozilla.org/docs/Web/CSS/shape-outside
13212 */
13213 "shape-outside"?: Property.ShapeOutside | undefined;
13214 /**
13215 * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
13216 *
13217 * **Syntax**: `<integer> | <length>`
13218 *
13219 * **Initial value**: `8`
13220 *
13221 * | Chrome | Firefox | Safari | Edge | IE |
13222 * | :----: | :-----: | :----: | :----: | :-: |
13223 * | **21** | **91** | **7** | **79** | No |
13224 * | | 4 _-x-_ | | | |
13225 *
13226 * @see https://developer.mozilla.org/docs/Web/CSS/tab-size
13227 */
13228 "tab-size"?: Property.TabSize<TLength> | undefined;
13229 /**
13230 * The **`table-layout`** CSS property sets the algorithm used to lay out `<table>` cells, rows, and columns.
13231 *
13232 * **Syntax**: `auto | fixed`
13233 *
13234 * **Initial value**: `auto`
13235 *
13236 * | Chrome | Firefox | Safari | Edge | IE |
13237 * | :----: | :-----: | :----: | :----: | :---: |
13238 * | **14** | **1** | **1** | **12** | **5** |
13239 *
13240 * @see https://developer.mozilla.org/docs/Web/CSS/table-layout
13241 */
13242 "table-layout"?: Property.TableLayout | undefined;
13243 /**
13244 * The **`text-align`** CSS property sets the horizontal alignment of a block element or table-cell box. This means it works like `vertical-align` but in the horizontal direction.
13245 *
13246 * **Syntax**: `start | end | left | right | center | justify | match-parent`
13247 *
13248 * **Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser.
13249 *
13250 * | Chrome | Firefox | Safari | Edge | IE |
13251 * | :----: | :-----: | :----: | :----: | :---: |
13252 * | **1** | **1** | **1** | **12** | **3** |
13253 *
13254 * @see https://developer.mozilla.org/docs/Web/CSS/text-align
13255 */
13256 "text-align"?: Property.TextAlign | undefined;
13257 /**
13258 * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.
13259 *
13260 * **Syntax**: `auto | start | end | left | right | center | justify`
13261 *
13262 * **Initial value**: `auto`
13263 *
13264 * | Chrome | Firefox | Safari | Edge | IE |
13265 * | :----: | :-----: | :----: | :----: | :-----: |
13266 * | **47** | **49** | No | **12** | **5.5** |
13267 *
13268 * @see https://developer.mozilla.org/docs/Web/CSS/text-align-last
13269 */
13270 "text-align-last"?: Property.TextAlignLast | undefined;
13271 /**
13272 * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.
13273 *
13274 * **Syntax**: `none | all | [ digits <integer>? ]`
13275 *
13276 * **Initial value**: `none`
13277 *
13278 * | Chrome | Firefox | Safari | Edge | IE |
13279 * | :------------------------: | :-----: | :------------------------------: | :---: | :------------------------------------: |
13280 * | **48** | **48** | **5.1** _(-webkit-text-combine)_ | 15-79 | **11** _(-ms-text-combine-horizontal)_ |
13281 * | 9 _(-webkit-text-combine)_ | | | | |
13282 *
13283 * @see https://developer.mozilla.org/docs/Web/CSS/text-combine-upright
13284 */
13285 "text-combine-upright"?: Property.TextCombineUpright | undefined;
13286 /**
13287 * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
13288 *
13289 * **Syntax**: `<color>`
13290 *
13291 * **Initial value**: `currentcolor`
13292 *
13293 * | Chrome | Firefox | Safari | Edge | IE |
13294 * | :----: | :-----: | :------: | :----: | :-: |
13295 * | **57** | **36** | **12.1** | **79** | No |
13296 * | | | 8 _-x-_ | | |
13297 *
13298 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-color
13299 */
13300 "text-decoration-color"?: Property.TextDecorationColor | undefined;
13301 /**
13302 * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
13303 *
13304 * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
13305 *
13306 * **Initial value**: `none`
13307 *
13308 * | Chrome | Firefox | Safari | Edge | IE |
13309 * | :----: | :-----: | :------: | :----: | :-: |
13310 * | **57** | **36** | **12.1** | **79** | No |
13311 * | | | 8 _-x-_ | | |
13312 *
13313 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-line
13314 */
13315 "text-decoration-line"?: Property.TextDecorationLine | undefined;
13316 /**
13317 * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors.
13318 *
13319 * **Syntax**: `none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]`
13320 *
13321 * **Initial value**: `objects`
13322 *
13323 * | Chrome | Firefox | Safari | Edge | IE |
13324 * | :----: | :-----: | :------: | :--: | :-: |
13325 * | 57-64 | No | **12.1** | No | No |
13326 * | | | 7 _-x-_ | | |
13327 *
13328 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip
13329 */
13330 "text-decoration-skip"?: Property.TextDecorationSkip | undefined;
13331 /**
13332 * The **`text-decoration-skip-ink`** CSS property specifies how overlines and underlines are drawn when they pass over glyph ascenders and descenders.
13333 *
13334 * **Syntax**: `auto | all | none`
13335 *
13336 * **Initial value**: `auto`
13337 *
13338 * | Chrome | Firefox | Safari | Edge | IE |
13339 * | :----: | :-----: | :----: | :----: | :-: |
13340 * | **64** | **70** | No | **79** | No |
13341 *
13342 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink
13343 */
13344 "text-decoration-skip-ink"?: Property.TextDecorationSkipInk | undefined;
13345 /**
13346 * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
13347 *
13348 * **Syntax**: `solid | double | dotted | dashed | wavy`
13349 *
13350 * **Initial value**: `solid`
13351 *
13352 * | Chrome | Firefox | Safari | Edge | IE |
13353 * | :----: | :-----: | :------: | :----: | :-: |
13354 * | **57** | **36** | **12.1** | **79** | No |
13355 * | | | 8 _-x-_ | | |
13356 *
13357 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-style
13358 */
13359 "text-decoration-style"?: Property.TextDecorationStyle | undefined;
13360 /**
13361 * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.
13362 *
13363 * **Syntax**: `auto | from-font | <length> | <percentage> `
13364 *
13365 * **Initial value**: `auto`
13366 *
13367 * | Chrome | Firefox | Safari | Edge | IE |
13368 * | :----: | :-----: | :------: | :----: | :-: |
13369 * | **89** | **70** | **12.1** | **89** | No |
13370 *
13371 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness
13372 */
13373 "text-decoration-thickness"?: Property.TextDecorationThickness<TLength> | undefined;
13374 /**
13375 * The **`text-decoration-thickness`** CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.
13376 *
13377 * **Syntax**: `auto | from-font | <length> | <percentage> `
13378 *
13379 * **Initial value**: `auto`
13380 *
13381 * | Chrome | Firefox | Safari | Edge | IE |
13382 * | :----: | :-----: | :------: | :---: | :-: |
13383 * | 87-89 | **70** | **12.1** | 87-89 | No |
13384 *
13385 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness
13386 */
13387 "text-decoration-width"?: Property.TextDecorationThickness<TLength> | undefined;
13388 /**
13389 * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand.
13390 *
13391 * **Syntax**: `<color>`
13392 *
13393 * **Initial value**: `currentcolor`
13394 *
13395 * | Chrome | Firefox | Safari | Edge | IE |
13396 * | :----------: | :-----: | :----: | :----------: | :-: |
13397 * | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
13398 *
13399 * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color
13400 */
13401 "text-emphasis-color"?: Property.TextEmphasisColor | undefined;
13402 /**
13403 * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased.
13404 *
13405 * **Syntax**: `[ over | under ] && [ right | left ]`
13406 *
13407 * **Initial value**: `over right`
13408 *
13409 * | Chrome | Firefox | Safari | Edge | IE |
13410 * | :----------: | :-----: | :----: | :----------: | :-: |
13411 * | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
13412 *
13413 * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position
13414 */
13415 "text-emphasis-position"?: Property.TextEmphasisPosition | undefined;
13416 /**
13417 * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand.
13418 *
13419 * **Syntax**: `none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>`
13420 *
13421 * **Initial value**: `none`
13422 *
13423 * | Chrome | Firefox | Safari | Edge | IE |
13424 * | :----------: | :-----: | :----: | :----------: | :-: |
13425 * | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
13426 *
13427 * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style
13428 */
13429 "text-emphasis-style"?: Property.TextEmphasisStyle | undefined;
13430 /**
13431 * The **`text-indent`** CSS property sets the length of empty space (indentation) that is put before lines of text in a block.
13432 *
13433 * **Syntax**: `<length-percentage> && hanging? && each-line?`
13434 *
13435 * **Initial value**: `0`
13436 *
13437 * | Chrome | Firefox | Safari | Edge | IE |
13438 * | :----: | :-----: | :----: | :----: | :---: |
13439 * | **1** | **1** | **1** | **12** | **3** |
13440 *
13441 * @see https://developer.mozilla.org/docs/Web/CSS/text-indent
13442 */
13443 "text-indent"?: Property.TextIndent<TLength> | undefined;
13444 /**
13445 * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element.
13446 *
13447 * **Syntax**: `auto | inter-character | inter-word | none`
13448 *
13449 * **Initial value**: `auto`
13450 *
13451 * | Chrome | Firefox | Safari | Edge | IE |
13452 * | :----: | :-----: | :----: | :----: | :----: |
13453 * | n/a | **55** | No | **12** | **11** |
13454 *
13455 * @see https://developer.mozilla.org/docs/Web/CSS/text-justify
13456 */
13457 "text-justify"?: Property.TextJustify | undefined;
13458 /**
13459 * The **`text-orientation`** CSS property sets the orientation of the text characters in a line. It only affects text in vertical mode (when `writing-mode` is not `horizontal-tb`). It is useful for controlling the display of languages that use vertical script, and also for making vertical table headers.
13460 *
13461 * **Syntax**: `mixed | upright | sideways`
13462 *
13463 * **Initial value**: `mixed`
13464 *
13465 * | Chrome | Firefox | Safari | Edge | IE |
13466 * | :------: | :-----: | :-------: | :----: | :-: |
13467 * | **48** | **41** | **14** | **79** | No |
13468 * | 11 _-x-_ | | 5.1 _-x-_ | | |
13469 *
13470 * @see https://developer.mozilla.org/docs/Web/CSS/text-orientation
13471 */
13472 "text-orientation"?: Property.TextOrientation | undefined;
13473 /**
13474 * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.
13475 *
13476 * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`
13477 *
13478 * **Initial value**: `clip`
13479 *
13480 * | Chrome | Firefox | Safari | Edge | IE |
13481 * | :----: | :-----: | :-----: | :----: | :---: |
13482 * | **1** | **7** | **1.3** | **12** | **6** |
13483 *
13484 * @see https://developer.mozilla.org/docs/Web/CSS/text-overflow
13485 */
13486 "text-overflow"?: Property.TextOverflow | undefined;
13487 /**
13488 * The **`text-rendering`** CSS property provides information to the rendering engine about what to optimize for when rendering text.
13489 *
13490 * **Syntax**: `auto | optimizeSpeed | optimizeLegibility | geometricPrecision`
13491 *
13492 * **Initial value**: `auto`
13493 *
13494 * | Chrome | Firefox | Safari | Edge | IE |
13495 * | :----: | :-----: | :----: | :----: | :-: |
13496 * | **4** | **1** | **5** | **79** | No |
13497 *
13498 * @see https://developer.mozilla.org/docs/Web/CSS/text-rendering
13499 */
13500 "text-rendering"?: Property.TextRendering | undefined;
13501 /**
13502 * The **`text-shadow`** CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its `decorations`. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.
13503 *
13504 * **Syntax**: `none | <shadow-t>#`
13505 *
13506 * **Initial value**: `none`
13507 *
13508 * | Chrome | Firefox | Safari | Edge | IE |
13509 * | :----: | :-----: | :-----: | :----: | :----: |
13510 * | **2** | **3.5** | **1.1** | **12** | **10** |
13511 *
13512 * @see https://developer.mozilla.org/docs/Web/CSS/text-shadow
13513 */
13514 "text-shadow"?: Property.TextShadow | undefined;
13515 /**
13516 * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
13517 *
13518 * **Syntax**: `none | auto | <percentage>`
13519 *
13520 * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
13521 *
13522 * | Chrome | Firefox | Safari | Edge | IE |
13523 * | :----: | :-----: | :----: | :----: | :-: |
13524 * | **54** | No | No | **79** | No |
13525 *
13526 * @see https://developer.mozilla.org/docs/Web/CSS/text-size-adjust
13527 */
13528 "text-size-adjust"?: Property.TextSizeAdjust | undefined;
13529 /**
13530 * The **`text-transform`** CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. It also can help improve legibility for ruby.
13531 *
13532 * **Syntax**: `none | capitalize | uppercase | lowercase | full-width | full-size-kana`
13533 *
13534 * **Initial value**: `none`
13535 *
13536 * | Chrome | Firefox | Safari | Edge | IE |
13537 * | :----: | :-----: | :----: | :----: | :---: |
13538 * | **1** | **1** | **1** | **12** | **4** |
13539 *
13540 * @see https://developer.mozilla.org/docs/Web/CSS/text-transform
13541 */
13542 "text-transform"?: Property.TextTransform | undefined;
13543 /**
13544 * The **`text-underline-offset`** CSS property sets the offset distance of an underline text decoration line (applied using `text-decoration`) from its original position.
13545 *
13546 * **Syntax**: `auto | <length> | <percentage> `
13547 *
13548 * **Initial value**: `auto`
13549 *
13550 * | Chrome | Firefox | Safari | Edge | IE |
13551 * | :----: | :-----: | :------: | :----: | :-: |
13552 * | **87** | **70** | **12.1** | **87** | No |
13553 *
13554 * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-offset
13555 */
13556 "text-underline-offset"?: Property.TextUnderlineOffset<TLength> | undefined;
13557 /**
13558 * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value.
13559 *
13560 * **Syntax**: `auto | from-font | [ under || [ left | right ] ]`
13561 *
13562 * **Initial value**: `auto`
13563 *
13564 * | Chrome | Firefox | Safari | Edge | IE |
13565 * | :----: | :-----: | :------: | :----: | :---: |
13566 * | **33** | **74** | **12.1** | **12** | **6** |
13567 * | | | 9 _-x-_ | | |
13568 *
13569 * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-position
13570 */
13571 "text-underline-position"?: Property.TextUnderlinePosition | undefined;
13572 /**
13573 * The **`top`** CSS property participates in specifying the vertical position of a positioned element. It has no effect on non-positioned elements.
13574 *
13575 * **Syntax**: `<length> | <percentage> | auto`
13576 *
13577 * **Initial value**: `auto`
13578 *
13579 * | Chrome | Firefox | Safari | Edge | IE |
13580 * | :----: | :-----: | :----: | :----: | :---: |
13581 * | **1** | **1** | **1** | **12** | **5** |
13582 *
13583 * @see https://developer.mozilla.org/docs/Web/CSS/top
13584 */
13585 top?: Property.Top<TLength> | undefined;
13586 /**
13587 * The **`touch-action`** CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser).
13588 *
13589 * **Syntax**: `auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation`
13590 *
13591 * **Initial value**: `auto`
13592 *
13593 * | Chrome | Firefox | Safari | Edge | IE |
13594 * | :----: | :-----: | :----: | :----: | :------: |
13595 * | **36** | **52** | **13** | **12** | **11** |
13596 * | | | | | 10 _-x-_ |
13597 *
13598 * @see https://developer.mozilla.org/docs/Web/CSS/touch-action
13599 */
13600 "touch-action"?: Property.TouchAction | undefined;
13601 /**
13602 * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
13603 *
13604 * **Syntax**: `none | <transform-list>`
13605 *
13606 * **Initial value**: `none`
13607 *
13608 * | Chrome | Firefox | Safari | Edge | IE |
13609 * | :-----: | :-----: | :-------: | :----: | :-----: |
13610 * | **36** | **16** | **9** | **12** | **10** |
13611 * | 1 _-x-_ | | 3.1 _-x-_ | | 9 _-x-_ |
13612 *
13613 * @see https://developer.mozilla.org/docs/Web/CSS/transform
13614 */
13615 transform?: Property.Transform | undefined;
13616 /**
13617 * The **`transform-box`** CSS property defines the layout box to which the `transform` and `transform-origin` properties relate.
13618 *
13619 * **Syntax**: `content-box | border-box | fill-box | stroke-box | view-box`
13620 *
13621 * **Initial value**: `view-box`
13622 *
13623 * | Chrome | Firefox | Safari | Edge | IE |
13624 * | :----: | :-----: | :----: | :----: | :-: |
13625 * | **64** | **55** | **11** | **79** | No |
13626 *
13627 * @see https://developer.mozilla.org/docs/Web/CSS/transform-box
13628 */
13629 "transform-box"?: Property.TransformBox | undefined;
13630 /**
13631 * The **`transform-origin`** CSS property sets the origin for an element's transformations.
13632 *
13633 * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
13634 *
13635 * **Initial value**: `50% 50% 0`
13636 *
13637 * | Chrome | Firefox | Safari | Edge | IE |
13638 * | :-----: | :-------: | :-----: | :----: | :-----: |
13639 * | **36** | **16** | **9** | **12** | **10** |
13640 * | 1 _-x-_ | 3.5 _-x-_ | 2 _-x-_ | | 9 _-x-_ |
13641 *
13642 * @see https://developer.mozilla.org/docs/Web/CSS/transform-origin
13643 */
13644 "transform-origin"?: Property.TransformOrigin<TLength> | undefined;
13645 /**
13646 * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
13647 *
13648 * **Syntax**: `flat | preserve-3d`
13649 *
13650 * **Initial value**: `flat`
13651 *
13652 * | Chrome | Firefox | Safari | Edge | IE |
13653 * | :------: | :------: | :-----: | :----: | :-: |
13654 * | **36** | **16** | **9** | **12** | No |
13655 * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | |
13656 *
13657 * @see https://developer.mozilla.org/docs/Web/CSS/transform-style
13658 */
13659 "transform-style"?: Property.TransformStyle | undefined;
13660 /**
13661 * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
13662 *
13663 * **Syntax**: `<time>#`
13664 *
13665 * **Initial value**: `0s`
13666 *
13667 * | Chrome | Firefox | Safari | Edge | IE |
13668 * | :-----: | :-----: | :-----: | :----: | :----: |
13669 * | **26** | **16** | **9** | **12** | **10** |
13670 * | 1 _-x-_ | 4 _-x-_ | 4 _-x-_ | | |
13671 *
13672 * @see https://developer.mozilla.org/docs/Web/CSS/transition-delay
13673 */
13674 "transition-delay"?: Property.TransitionDelay<TTime> | undefined;
13675 /**
13676 * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
13677 *
13678 * **Syntax**: `<time>#`
13679 *
13680 * **Initial value**: `0s`
13681 *
13682 * | Chrome | Firefox | Safari | Edge | IE |
13683 * | :-----: | :-----: | :-------: | :----: | :----: |
13684 * | **26** | **16** | **9** | **12** | **10** |
13685 * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
13686 *
13687 * @see https://developer.mozilla.org/docs/Web/CSS/transition-duration
13688 */
13689 "transition-duration"?: Property.TransitionDuration<TTime> | undefined;
13690 /**
13691 * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
13692 *
13693 * **Syntax**: `none | <single-transition-property>#`
13694 *
13695 * **Initial value**: all
13696 *
13697 * | Chrome | Firefox | Safari | Edge | IE |
13698 * | :-----: | :-----: | :-------: | :----: | :----: |
13699 * | **26** | **16** | **9** | **12** | **10** |
13700 * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
13701 *
13702 * @see https://developer.mozilla.org/docs/Web/CSS/transition-property
13703 */
13704 "transition-property"?: Property.TransitionProperty | undefined;
13705 /**
13706 * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
13707 *
13708 * **Syntax**: `<easing-function>#`
13709 *
13710 * **Initial value**: `ease`
13711 *
13712 * | Chrome | Firefox | Safari | Edge | IE |
13713 * | :-----: | :-----: | :-------: | :----: | :----: |
13714 * | **26** | **16** | **9** | **12** | **10** |
13715 * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
13716 *
13717 * @see https://developer.mozilla.org/docs/Web/CSS/transition-timing-function
13718 */
13719 "transition-timing-function"?: Property.TransitionTimingFunction | undefined;
13720 /**
13721 * The **`translate`** CSS property allows you to specify translation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.
13722 *
13723 * **Syntax**: `none | <length-percentage> [ <length-percentage> <length>? ]?`
13724 *
13725 * **Initial value**: `none`
13726 *
13727 * | Chrome | Firefox | Safari | Edge | IE |
13728 * | :----: | :-----: | :------: | :--: | :-: |
13729 * | No | **72** | **14.1** | No | No |
13730 *
13731 * @see https://developer.mozilla.org/docs/Web/CSS/translate
13732 */
13733 translate?: Property.Translate<TLength> | undefined;
13734 /**
13735 * The **`unicode-bidi`** CSS property, together with the `direction` property, determines how bidirectional text in a document is handled. For example, if a block of content contains both left-to-right and right-to-left text, the user-agent uses a complex Unicode algorithm to decide how to display the text. The `unicode-bidi` property overrides this algorithm and allows the developer to control the text embedding.
13736 *
13737 * **Syntax**: `normal | embed | isolate | bidi-override | isolate-override | plaintext`
13738 *
13739 * **Initial value**: `normal`
13740 *
13741 * | Chrome | Firefox | Safari | Edge | IE |
13742 * | :----: | :-----: | :-----: | :----: | :-----: |
13743 * | **2** | **1** | **1.3** | **12** | **5.5** |
13744 *
13745 * @see https://developer.mozilla.org/docs/Web/CSS/unicode-bidi
13746 */
13747 "unicode-bidi"?: Property.UnicodeBidi | undefined;
13748 /**
13749 * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
13750 *
13751 * **Syntax**: `auto | text | none | contain | all`
13752 *
13753 * **Initial value**: `auto`
13754 *
13755 * | Chrome | Firefox | Safari | Edge | IE |
13756 * | :-----: | :-----: | :---------: | :------: | :----------: |
13757 * | **54** | **69** | **3** _-x-_ | **79** | **10** _-x-_ |
13758 * | 1 _-x-_ | 1 _-x-_ | | 12 _-x-_ | |
13759 *
13760 * @see https://developer.mozilla.org/docs/Web/CSS/user-select
13761 */
13762 "user-select"?: Property.UserSelect | undefined;
13763 /**
13764 * The **`vertical-align`** CSS property sets vertical alignment of an inline, inline-block or table-cell box.
13765 *
13766 * **Syntax**: `baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length>`
13767 *
13768 * **Initial value**: `baseline`
13769 *
13770 * | Chrome | Firefox | Safari | Edge | IE |
13771 * | :----: | :-----: | :----: | :----: | :---: |
13772 * | **1** | **1** | **1** | **12** | **4** |
13773 *
13774 * @see https://developer.mozilla.org/docs/Web/CSS/vertical-align
13775 */
13776 "vertical-align"?: Property.VerticalAlign<TLength> | undefined;
13777 /**
13778 * The **`visibility`** CSS property shows or hides an element without changing the layout of a document. The property can also hide rows or columns in a `<table>`.
13779 *
13780 * **Syntax**: `visible | hidden | collapse`
13781 *
13782 * **Initial value**: `visible`
13783 *
13784 * | Chrome | Firefox | Safari | Edge | IE |
13785 * | :----: | :-----: | :----: | :----: | :---: |
13786 * | **1** | **1** | **1** | **12** | **4** |
13787 *
13788 * @see https://developer.mozilla.org/docs/Web/CSS/visibility
13789 */
13790 visibility?: Property.Visibility | undefined;
13791 /**
13792 * The **`white-space`** CSS property sets how white space inside an element is handled.
13793 *
13794 * **Syntax**: `normal | pre | nowrap | pre-wrap | pre-line | break-spaces`
13795 *
13796 * **Initial value**: `normal`
13797 *
13798 * | Chrome | Firefox | Safari | Edge | IE |
13799 * | :----: | :-----: | :----: | :----: | :-----: |
13800 * | **1** | **1** | **1** | **12** | **5.5** |
13801 *
13802 * @see https://developer.mozilla.org/docs/Web/CSS/white-space
13803 */
13804 "white-space"?: Property.WhiteSpace | undefined;
13805 /**
13806 * The **`widows`** CSS property sets the minimum number of lines in a block container that must be shown at the _top_ of a page, region, or column.
13807 *
13808 * **Syntax**: `<integer>`
13809 *
13810 * **Initial value**: `2`
13811 *
13812 * | Chrome | Firefox | Safari | Edge | IE |
13813 * | :----: | :-----: | :-----: | :----: | :---: |
13814 * | **25** | No | **1.3** | **12** | **8** |
13815 *
13816 * @see https://developer.mozilla.org/docs/Web/CSS/widows
13817 */
13818 widows?: Property.Widows | undefined;
13819 /**
13820 * The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area.
13821 *
13822 * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
13823 *
13824 * **Initial value**: `auto`
13825 *
13826 * | Chrome | Firefox | Safari | Edge | IE |
13827 * | :----: | :-----: | :----: | :----: | :---: |
13828 * | **1** | **1** | **1** | **12** | **4** |
13829 *
13830 * @see https://developer.mozilla.org/docs/Web/CSS/width
13831 */
13832 width?: Property.Width<TLength> | undefined;
13833 /**
13834 * The **`will-change`** CSS property hints to browsers how an element is expected to change. Browsers may set up optimizations before an element is actually changed. These kinds of optimizations can increase the responsiveness of a page by doing potentially expensive work before they are actually required.
13835 *
13836 * **Syntax**: `auto | <animateable-feature>#`
13837 *
13838 * **Initial value**: `auto`
13839 *
13840 * | Chrome | Firefox | Safari | Edge | IE |
13841 * | :----: | :-----: | :-----: | :----: | :-: |
13842 * | **36** | **36** | **9.1** | **79** | No |
13843 *
13844 * @see https://developer.mozilla.org/docs/Web/CSS/will-change
13845 */
13846 "will-change"?: Property.WillChange | undefined;
13847 /**
13848 * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box.
13849 *
13850 * **Syntax**: `normal | break-all | keep-all | break-word`
13851 *
13852 * **Initial value**: `normal`
13853 *
13854 * | Chrome | Firefox | Safari | Edge | IE |
13855 * | :----: | :-----: | :----: | :----: | :-----: |
13856 * | **1** | **15** | **3** | **12** | **5.5** |
13857 *
13858 * @see https://developer.mozilla.org/docs/Web/CSS/word-break
13859 */
13860 "word-break"?: Property.WordBreak | undefined;
13861 /**
13862 * The **`word-spacing`** CSS property sets the length of space between words and between tags.
13863 *
13864 * **Syntax**: `normal | <length>`
13865 *
13866 * **Initial value**: `normal`
13867 *
13868 * | Chrome | Firefox | Safari | Edge | IE |
13869 * | :----: | :-----: | :----: | :----: | :---: |
13870 * | **1** | **1** | **1** | **12** | **6** |
13871 *
13872 * @see https://developer.mozilla.org/docs/Web/CSS/word-spacing
13873 */
13874 "word-spacing"?: Property.WordSpacing<TLength> | undefined;
13875 /**
13876 * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.
13877 *
13878 * **Syntax**: `normal | break-word`
13879 *
13880 * **Initial value**: `normal`
13881 */
13882 "word-wrap"?: Property.WordWrap | undefined;
13883 /**
13884 * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).
13885 *
13886 * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`
13887 *
13888 * **Initial value**: `horizontal-tb`
13889 *
13890 * | Chrome | Firefox | Safari | Edge | IE |
13891 * | :-----: | :-----: | :-------: | :----: | :---: |
13892 * | **48** | **41** | **10.1** | **12** | **9** |
13893 * | 8 _-x-_ | | 5.1 _-x-_ | | |
13894 *
13895 * @see https://developer.mozilla.org/docs/Web/CSS/writing-mode
13896 */
13897 "writing-mode"?: Property.WritingMode | undefined;
13898 /**
13899 * The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one.
13900 *
13901 * **Syntax**: `auto | <integer>`
13902 *
13903 * **Initial value**: `auto`
13904 *
13905 * | Chrome | Firefox | Safari | Edge | IE |
13906 * | :----: | :-----: | :----: | :----: | :---: |
13907 * | **1** | **1** | **1** | **12** | **4** |
13908 *
13909 * @see https://developer.mozilla.org/docs/Web/CSS/z-index
13910 */
13911 "z-index"?: Property.ZIndex | undefined;
13912 /**
13913 * The non-standard **`zoom`** CSS property can be used to control the magnification level of an element. `transform: scale()` should be used instead of this property, if possible. However, unlike CSS Transforms, `zoom` affects the layout size of the element.
13914 *
13915 * **Syntax**: `normal | reset | <number> | <percentage>`
13916 *
13917 * **Initial value**: `normal`
13918 *
13919 * | Chrome | Firefox | Safari | Edge | IE |
13920 * | :----: | :-----: | :-----: | :----: | :-----: |
13921 * | **1** | No | **3.1** | **12** | **5.5** |
13922 *
13923 * @see https://developer.mozilla.org/docs/Web/CSS/zoom
13924 */
13925 zoom?: Property.Zoom | undefined;
13926}
13927export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
13928 /**
13929 * The `**all**` shorthand CSS property resets all of an element's properties except `unicode-bidi`, `direction`, and CSS Custom Properties. It can set properties to their initial or inherited values, or to the values specified in another stylesheet origin.
13930 *
13931 * **Syntax**: `initial | inherit | unset | revert`
13932 *
13933 * **Initial value**: There is no practical initial value for it.
13934 *
13935 * | Chrome | Firefox | Safari | Edge | IE |
13936 * | :----: | :-----: | :-----: | :----: | :-: |
13937 * | **37** | **27** | **9.1** | **79** | No |
13938 *
13939 * @see https://developer.mozilla.org/docs/Web/CSS/all
13940 */
13941 all?: Property.All | undefined;
13942 /**
13943 * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
13944 *
13945 * **Syntax**: `<single-animation>#`
13946 *
13947 * | Chrome | Firefox | Safari | Edge | IE |
13948 * | :-----: | :-----: | :-----: | :----: | :----: |
13949 * | **43** | **16** | **9** | **12** | **10** |
13950 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
13951 *
13952 * @see https://developer.mozilla.org/docs/Web/CSS/animation
13953 */
13954 animation?: Property.Animation<TTime> | undefined;
13955 /**
13956 * The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method.
13957 *
13958 * **Syntax**: `[ <bg-layer> , ]* <final-bg-layer>`
13959 *
13960 * | Chrome | Firefox | Safari | Edge | IE |
13961 * | :----: | :-----: | :----: | :----: | :---: |
13962 * | **1** | **1** | **1** | **12** | **4** |
13963 *
13964 * @see https://developer.mozilla.org/docs/Web/CSS/background
13965 */
13966 background?: Property.Background<TLength> | undefined;
13967 /**
13968 * The **`background-position`** CSS property sets the initial position for each background image. The position is relative to the position layer set by `background-origin`.
13969 *
13970 * **Syntax**: `<bg-position>#`
13971 *
13972 * **Initial value**: `0% 0%`
13973 *
13974 * | Chrome | Firefox | Safari | Edge | IE |
13975 * | :----: | :-----: | :----: | :----: | :---: |
13976 * | **1** | **1** | **1** | **12** | **4** |
13977 *
13978 * @see https://developer.mozilla.org/docs/Web/CSS/background-position
13979 */
13980 "background-position"?: Property.BackgroundPosition<TLength> | undefined;
13981 /**
13982 * The **`border`** shorthand CSS property sets an element's border. It sets the values of `border-width`, `border-style`, and `border-color`.
13983 *
13984 * **Syntax**: `<line-width> || <line-style> || <color>`
13985 *
13986 * | Chrome | Firefox | Safari | Edge | IE |
13987 * | :----: | :-----: | :----: | :----: | :---: |
13988 * | **1** | **1** | **1** | **12** | **4** |
13989 *
13990 * @see https://developer.mozilla.org/docs/Web/CSS/border
13991 */
13992 border?: Property.Border<TLength> | undefined;
13993 /**
13994 * The **`border-block`** CSS property is a shorthand property for setting the individual logical block border property values in a single place in the style sheet.
13995 *
13996 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
13997 *
13998 * | Chrome | Firefox | Safari | Edge | IE |
13999 * | :----: | :-----: | :------: | :----: | :-: |
14000 * | **87** | **66** | **14.1** | **87** | No |
14001 *
14002 * @see https://developer.mozilla.org/docs/Web/CSS/border-block
14003 */
14004 "border-block"?: Property.BorderBlock<TLength> | undefined;
14005 /**
14006 * The **`border-block-end`** CSS property is a shorthand property for setting the individual logical block-end border property values in a single place in the style sheet.
14007 *
14008 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
14009 *
14010 * | Chrome | Firefox | Safari | Edge | IE |
14011 * | :----: | :-----: | :------: | :----: | :-: |
14012 * | **69** | **41** | **12.1** | **79** | No |
14013 *
14014 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end
14015 */
14016 "border-block-end"?: Property.BorderBlockEnd<TLength> | undefined;
14017 /**
14018 * The **`border-block-start`** CSS property is a shorthand property for setting the individual logical block-start border property values in a single place in the style sheet.
14019 *
14020 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
14021 *
14022 * | Chrome | Firefox | Safari | Edge | IE |
14023 * | :----: | :-----: | :------: | :----: | :-: |
14024 * | **69** | **41** | **12.1** | **79** | No |
14025 *
14026 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start
14027 */
14028 "border-block-start"?: Property.BorderBlockStart<TLength> | undefined;
14029 /**
14030 * The **`border-bottom`** shorthand CSS property sets an element's bottom border. It sets the values of `border-bottom-width`, `border-bottom-style` and `border-bottom-color`.
14031 *
14032 * **Syntax**: `<line-width> || <line-style> || <color>`
14033 *
14034 * | Chrome | Firefox | Safari | Edge | IE |
14035 * | :----: | :-----: | :----: | :----: | :---: |
14036 * | **1** | **1** | **1** | **12** | **4** |
14037 *
14038 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom
14039 */
14040 "border-bottom"?: Property.BorderBottom<TLength> | undefined;
14041 /**
14042 * The **`border-color`** shorthand CSS property sets the color of an element's border.
14043 *
14044 * **Syntax**: `<color>{1,4}`
14045 *
14046 * | Chrome | Firefox | Safari | Edge | IE |
14047 * | :----: | :-----: | :----: | :----: | :---: |
14048 * | **1** | **1** | **1** | **12** | **4** |
14049 *
14050 * @see https://developer.mozilla.org/docs/Web/CSS/border-color
14051 */
14052 "border-color"?: Property.BorderColor | undefined;
14053 /**
14054 * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
14055 *
14056 * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
14057 *
14058 * | Chrome | Firefox | Safari | Edge | IE |
14059 * | :-----: | :-------: | :-----: | :----: | :----: |
14060 * | **16** | **15** | **6** | **12** | **11** |
14061 * | 7 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | |
14062 *
14063 * @see https://developer.mozilla.org/docs/Web/CSS/border-image
14064 */
14065 "border-image"?: Property.BorderImage | undefined;
14066 /**
14067 * The **`border-inline`** CSS property is a shorthand property for setting the individual logical inline border property values in a single place in the style sheet.
14068 *
14069 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
14070 *
14071 * | Chrome | Firefox | Safari | Edge | IE |
14072 * | :----: | :-----: | :------: | :----: | :-: |
14073 * | **87** | **66** | **14.1** | **87** | No |
14074 *
14075 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline
14076 */
14077 "border-inline"?: Property.BorderInline<TLength> | undefined;
14078 /**
14079 * The **`border-inline-end`** CSS property is a shorthand property for setting the individual logical inline-end border property values in a single place in the style sheet.
14080 *
14081 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
14082 *
14083 * | Chrome | Firefox | Safari | Edge | IE |
14084 * | :----: | :-----: | :------: | :----: | :-: |
14085 * | **69** | **41** | **12.1** | **79** | No |
14086 *
14087 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end
14088 */
14089 "border-inline-end"?: Property.BorderInlineEnd<TLength> | undefined;
14090 /**
14091 * The **`border-inline-start`** CSS property is a shorthand property for setting the individual logical inline-start border property values in a single place in the style sheet.
14092 *
14093 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
14094 *
14095 * | Chrome | Firefox | Safari | Edge | IE |
14096 * | :----: | :-----: | :------: | :----: | :-: |
14097 * | **69** | **41** | **12.1** | **79** | No |
14098 *
14099 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start
14100 */
14101 "border-inline-start"?: Property.BorderInlineStart<TLength> | undefined;
14102 /**
14103 * The **`border-left`** shorthand CSS property sets all the properties of an element's left border.
14104 *
14105 * **Syntax**: `<line-width> || <line-style> || <color>`
14106 *
14107 * | Chrome | Firefox | Safari | Edge | IE |
14108 * | :----: | :-----: | :----: | :----: | :---: |
14109 * | **1** | **1** | **1** | **12** | **4** |
14110 *
14111 * @see https://developer.mozilla.org/docs/Web/CSS/border-left
14112 */
14113 "border-left"?: Property.BorderLeft<TLength> | undefined;
14114 /**
14115 * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
14116 *
14117 * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`
14118 *
14119 * | Chrome | Firefox | Safari | Edge | IE |
14120 * | :-----: | :-----: | :-----: | :----: | :---: |
14121 * | **4** | **4** | **5** | **12** | **9** |
14122 * | 1 _-x-_ | | 3 _-x-_ | | |
14123 *
14124 * @see https://developer.mozilla.org/docs/Web/CSS/border-radius
14125 */
14126 "border-radius"?: Property.BorderRadius<TLength> | undefined;
14127 /**
14128 * The **`border-right`** shorthand CSS property sets all the properties of an element's right border.
14129 *
14130 * **Syntax**: `<line-width> || <line-style> || <color>`
14131 *
14132 * | Chrome | Firefox | Safari | Edge | IE |
14133 * | :----: | :-----: | :----: | :----: | :-----: |
14134 * | **1** | **1** | **1** | **12** | **5.5** |
14135 *
14136 * @see https://developer.mozilla.org/docs/Web/CSS/border-right
14137 */
14138 "border-right"?: Property.BorderRight<TLength> | undefined;
14139 /**
14140 * The **`border-style`** shorthand CSS property sets the line style for all four sides of an element's border.
14141 *
14142 * **Syntax**: `<line-style>{1,4}`
14143 *
14144 * | Chrome | Firefox | Safari | Edge | IE |
14145 * | :----: | :-----: | :----: | :----: | :---: |
14146 * | **1** | **1** | **1** | **12** | **4** |
14147 *
14148 * @see https://developer.mozilla.org/docs/Web/CSS/border-style
14149 */
14150 "border-style"?: Property.BorderStyle | undefined;
14151 /**
14152 * The **`border-top`** shorthand CSS property sets all the properties of an element's top border.
14153 *
14154 * **Syntax**: `<line-width> || <line-style> || <color>`
14155 *
14156 * | Chrome | Firefox | Safari | Edge | IE |
14157 * | :----: | :-----: | :----: | :----: | :---: |
14158 * | **1** | **1** | **1** | **12** | **4** |
14159 *
14160 * @see https://developer.mozilla.org/docs/Web/CSS/border-top
14161 */
14162 "border-top"?: Property.BorderTop<TLength> | undefined;
14163 /**
14164 * The **`border-width`** shorthand CSS property sets the width of an element's border.
14165 *
14166 * **Syntax**: `<line-width>{1,4}`
14167 *
14168 * | Chrome | Firefox | Safari | Edge | IE |
14169 * | :----: | :-----: | :----: | :----: | :---: |
14170 * | **1** | **1** | **1** | **12** | **4** |
14171 *
14172 * @see https://developer.mozilla.org/docs/Web/CSS/border-width
14173 */
14174 "border-width"?: Property.BorderWidth<TLength> | undefined;
14175 /**
14176 * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
14177 *
14178 * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`
14179 *
14180 * | Chrome | Firefox | Safari | Edge | IE |
14181 * | :-----: | :-----: | :-----: | :----: | :----: |
14182 * | **50** | **52** | **9** | **12** | **10** |
14183 * | 1 _-x-_ | | 3 _-x-_ | | |
14184 *
14185 * @see https://developer.mozilla.org/docs/Web/CSS/column-rule
14186 */
14187 "column-rule"?: Property.ColumnRule<TLength> | undefined;
14188 /**
14189 * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
14190 *
14191 * **Syntax**: `<'column-width'> || <'column-count'>`
14192 *
14193 * | Chrome | Firefox | Safari | Edge | IE |
14194 * | :----: | :-----: | :-----: | :----: | :----: |
14195 * | **50** | **52** | **9** | **12** | **10** |
14196 * | | | 3 _-x-_ | | |
14197 *
14198 * @see https://developer.mozilla.org/docs/Web/CSS/columns
14199 */
14200 columns?: Property.Columns<TLength> | undefined;
14201 /**
14202 * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
14203 *
14204 * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
14205 *
14206 * | Chrome | Firefox | Safari | Edge | IE |
14207 * | :------: | :-----: | :-----: | :----: | :------: |
14208 * | **29** | **20** | **9** | **12** | **11** |
14209 * | 21 _-x-_ | | 7 _-x-_ | | 10 _-x-_ |
14210 *
14211 * @see https://developer.mozilla.org/docs/Web/CSS/flex
14212 */
14213 flex?: Property.Flex<TLength> | undefined;
14214 /**
14215 * The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.
14216 *
14217 * **Syntax**: `<'flex-direction'> || <'flex-wrap'>`
14218 *
14219 * | Chrome | Firefox | Safari | Edge | IE |
14220 * | :------: | :-----: | :-----: | :----: | :----: |
14221 * | **29** | **28** | **9** | **12** | **11** |
14222 * | 21 _-x-_ | | 7 _-x-_ | | |
14223 *
14224 * @see https://developer.mozilla.org/docs/Web/CSS/flex-flow
14225 */
14226 "flex-flow"?: Property.FlexFlow | undefined;
14227 /**
14228 * The **`font`** CSS shorthand property sets all the different properties of an element's font. Alternatively, it sets an element's font to a system font.
14229 *
14230 * **Syntax**: `[ [ <'font-style'> || <font-variant-css21> || <'font-weight'> || <'font-stretch'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar`
14231 *
14232 * | Chrome | Firefox | Safari | Edge | IE |
14233 * | :----: | :-----: | :----: | :----: | :---: |
14234 * | **1** | **1** | **1** | **12** | **3** |
14235 *
14236 * @see https://developer.mozilla.org/docs/Web/CSS/font
14237 */
14238 font?: Property.Font | undefined;
14239 /**
14240 * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`.
14241 *
14242 * **Syntax**: `<'row-gap'> <'column-gap'>?`
14243 *
14244 * ---
14245 *
14246 * _Supported in Flex Layout_
14247 *
14248 * | Chrome | Firefox | Safari | Edge | IE |
14249 * | :----: | :-----: | :------: | :----: | :-: |
14250 * | **84** | **63** | **14.1** | **84** | No |
14251 *
14252 * ---
14253 *
14254 * _Supported in Grid Layout_
14255 *
14256 * | Chrome | Firefox | Safari | Edge | IE |
14257 * | :-------------: | :-------------: | :---------------: | :----: | :-: |
14258 * | **66** | **61** | **12** | **16** | No |
14259 * | 57 _(grid-gap)_ | 52 _(grid-gap)_ | 10.1 _(grid-gap)_ | | |
14260 *
14261 * ---
14262 *
14263 * _Supported in Multi-column Layout_
14264 *
14265 * | Chrome | Firefox | Safari | Edge | IE |
14266 * | :----: | :-----: | :----: | :----: | :-: |
14267 * | **66** | **61** | No | **16** | No |
14268 *
14269 * ---
14270 *
14271 * @see https://developer.mozilla.org/docs/Web/CSS/gap
14272 */
14273 gap?: Property.Gap<TLength> | undefined;
14274 /**
14275 * The **`grid`** CSS property is a shorthand property that sets all of the explicit and implicit grid properties in a single declaration.
14276 *
14277 * **Syntax**: `<'grid-template'> | <'grid-template-rows'> / [ auto-flow && dense? ] <'grid-auto-columns'>? | [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>`
14278 *
14279 * | Chrome | Firefox | Safari | Edge | IE |
14280 * | :----: | :-----: | :------: | :----: | :-: |
14281 * | **57** | **52** | **10.1** | **16** | No |
14282 *
14283 * @see https://developer.mozilla.org/docs/Web/CSS/grid
14284 */
14285 grid?: Property.Grid | undefined;
14286 /**
14287 * The **`grid-area`** CSS shorthand property specifies a grid item’s size and location within a grid by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the edges of its grid area.
14288 *
14289 * **Syntax**: `<grid-line> [ / <grid-line> ]{0,3}`
14290 *
14291 * | Chrome | Firefox | Safari | Edge | IE |
14292 * | :----: | :-----: | :------: | :----: | :-: |
14293 * | **57** | **52** | **10.1** | **16** | No |
14294 *
14295 * @see https://developer.mozilla.org/docs/Web/CSS/grid-area
14296 */
14297 "grid-area"?: Property.GridArea | undefined;
14298 /**
14299 * The **`grid-column`** CSS shorthand property specifies a grid item's size and location within a grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.
14300 *
14301 * **Syntax**: `<grid-line> [ / <grid-line> ]?`
14302 *
14303 * | Chrome | Firefox | Safari | Edge | IE |
14304 * | :----: | :-----: | :------: | :----: | :-: |
14305 * | **57** | **52** | **10.1** | **16** | No |
14306 *
14307 * @see https://developer.mozilla.org/docs/Web/CSS/grid-column
14308 */
14309 "grid-column"?: Property.GridColumn | undefined;
14310 /**
14311 * The **`grid-row`** CSS shorthand property specifies a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.
14312 *
14313 * **Syntax**: `<grid-line> [ / <grid-line> ]?`
14314 *
14315 * | Chrome | Firefox | Safari | Edge | IE |
14316 * | :----: | :-----: | :------: | :----: | :-: |
14317 * | **57** | **52** | **10.1** | **16** | No |
14318 *
14319 * @see https://developer.mozilla.org/docs/Web/CSS/grid-row
14320 */
14321 "grid-row"?: Property.GridRow | undefined;
14322 /**
14323 * The **`grid-template`** CSS property is a shorthand property for defining grid columns, rows, and areas.
14324 *
14325 * **Syntax**: `none | [ <'grid-template-rows'> / <'grid-template-columns'> ] | [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?`
14326 *
14327 * | Chrome | Firefox | Safari | Edge | IE |
14328 * | :----: | :-----: | :------: | :----: | :-: |
14329 * | **57** | **52** | **10.1** | **16** | No |
14330 *
14331 * @see https://developer.mozilla.org/docs/Web/CSS/grid-template
14332 */
14333 "grid-template"?: Property.GridTemplate | undefined;
14334 /**
14335 * **Syntax**: `none | <integer>`
14336 *
14337 * **Initial value**: `none`
14338 */
14339 "line-clamp"?: Property.LineClamp | undefined;
14340 /**
14341 * The **`list-style`** CSS shorthand property allows you set all the list style properties at once.
14342 *
14343 * **Syntax**: `<'list-style-type'> || <'list-style-position'> || <'list-style-image'>`
14344 *
14345 * | Chrome | Firefox | Safari | Edge | IE |
14346 * | :----: | :-----: | :----: | :----: | :---: |
14347 * | **1** | **1** | **1** | **12** | **4** |
14348 *
14349 * @see https://developer.mozilla.org/docs/Web/CSS/list-style
14350 */
14351 "list-style"?: Property.ListStyle | undefined;
14352 /**
14353 * The **`margin`** CSS property sets the margin area on all four sides of an element. It is a shorthand for `margin-top`, `margin-right`, `margin-bottom`, and `margin-left`.
14354 *
14355 * **Syntax**: `[ <length> | <percentage> | auto ]{1,4}`
14356 *
14357 * | Chrome | Firefox | Safari | Edge | IE |
14358 * | :----: | :-----: | :----: | :----: | :---: |
14359 * | **1** | **1** | **1** | **12** | **3** |
14360 *
14361 * @see https://developer.mozilla.org/docs/Web/CSS/margin
14362 */
14363 margin?: Property.Margin<TLength> | undefined;
14364 /**
14365 * The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.
14366 *
14367 * **Syntax**: `<mask-layer>#`
14368 *
14369 * | Chrome | Firefox | Safari | Edge | IE |
14370 * | :----: | :-----: | :-----: | :---: | :-: |
14371 * | **1** | **2** | **3.1** | 12-79 | No |
14372 *
14373 * @see https://developer.mozilla.org/docs/Web/CSS/mask
14374 */
14375 mask?: Property.Mask<TLength> | undefined;
14376 /**
14377 * The **`mask-border`** CSS shorthand property lets you create a mask along the edge of an element's border.
14378 *
14379 * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`
14380 *
14381 * | Chrome | Firefox | Safari | Edge | IE |
14382 * | :------------------------------: | :-----: | :--------------------------------: | :-------------------------------: | :-: |
14383 * | **1** _(-webkit-mask-box-image)_ | No | **3.1** _(-webkit-mask-box-image)_ | **79** _(-webkit-mask-box-image)_ | No |
14384 *
14385 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border
14386 */
14387 "mask-border"?: Property.MaskBorder | undefined;
14388 /**
14389 * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.
14390 *
14391 * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`
14392 *
14393 * | Chrome | Firefox | Safari | Edge | IE |
14394 * | :-----------: | :-----: | :----: | :----: | :-: |
14395 * | **55** | **72** | No | **79** | No |
14396 * | 46 _(motion)_ | | | | |
14397 *
14398 * @see https://developer.mozilla.org/docs/Web/CSS/offset
14399 */
14400 motion?: Property.Offset<TLength> | undefined;
14401 /**
14402 * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.
14403 *
14404 * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`
14405 *
14406 * | Chrome | Firefox | Safari | Edge | IE |
14407 * | :-----------: | :-----: | :----: | :----: | :-: |
14408 * | **55** | **72** | No | **79** | No |
14409 * | 46 _(motion)_ | | | | |
14410 *
14411 * @see https://developer.mozilla.org/docs/Web/CSS/offset
14412 */
14413 offset?: Property.Offset<TLength> | undefined;
14414 /**
14415 * The **`outline`** CSS shorthand property set all the outline properties in a single declaration.
14416 *
14417 * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`
14418 *
14419 * | Chrome | Firefox | Safari | Edge | IE |
14420 * | :----: | :-----: | :-----: | :----: | :---: |
14421 * | **1** | **1.5** | **1.2** | **12** | **8** |
14422 *
14423 * @see https://developer.mozilla.org/docs/Web/CSS/outline
14424 */
14425 outline?: Property.Outline<TLength> | undefined;
14426 /**
14427 * The **`overflow`** CSS shorthand property sets the desired behavior for an element's overflow — i.e. when an element's content is too big to fit in its block formatting context — in both directions.
14428 *
14429 * **Syntax**: `[ visible | hidden | clip | scroll | auto ]{1,2}`
14430 *
14431 * **Initial value**: `visible`
14432 *
14433 * | Chrome | Firefox | Safari | Edge | IE |
14434 * | :----: | :-----: | :----: | :----: | :---: |
14435 * | **1** | **1** | **1** | **12** | **4** |
14436 *
14437 * @see https://developer.mozilla.org/docs/Web/CSS/overflow
14438 */
14439 overflow?: Property.Overflow | undefined;
14440 /**
14441 * The **`overscroll-behavior`** CSS property sets what a browser does when reaching the boundary of a scrolling area. It's a shorthand for `overscroll-behavior-x` and `overscroll-behavior-y`.
14442 *
14443 * **Syntax**: `[ contain | none | auto ]{1,2}`
14444 *
14445 * **Initial value**: `auto`
14446 *
14447 * | Chrome | Firefox | Safari | Edge | IE |
14448 * | :----: | :-----: | :----: | :----: | :-: |
14449 * | **63** | **59** | No | **18** | No |
14450 *
14451 * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior
14452 */
14453 "overscroll-behavior"?: Property.OverscrollBehavior | undefined;
14454 /**
14455 * The **`padding`** CSS shorthand property sets the padding area on all four sides of an element at once.
14456 *
14457 * **Syntax**: `[ <length> | <percentage> ]{1,4}`
14458 *
14459 * | Chrome | Firefox | Safari | Edge | IE |
14460 * | :----: | :-----: | :----: | :----: | :---: |
14461 * | **1** | **1** | **1** | **12** | **4** |
14462 *
14463 * @see https://developer.mozilla.org/docs/Web/CSS/padding
14464 */
14465 padding?: Property.Padding<TLength> | undefined;
14466 /**
14467 * The CSS **`place-items`** shorthand property allows you to align items along both the block and inline directions at once (i.e. the `align-items` and `justify-items` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not set, the first value is also used for it.
14468 *
14469 * **Syntax**: `<'align-items'> <'justify-items'>?`
14470 *
14471 * | Chrome | Firefox | Safari | Edge | IE |
14472 * | :----: | :-----: | :----: | :----: | :-: |
14473 * | **59** | **45** | **11** | **79** | No |
14474 *
14475 * @see https://developer.mozilla.org/docs/Web/CSS/place-items
14476 */
14477 "place-items"?: Property.PlaceItems | undefined;
14478 /**
14479 * The **`place-self`** CSS shorthand property allows you to align an individual item in both the block and inline directions at once (i.e. the `align-self` and `justify-self` properties) in a relevant layout system such as Grid or Flexbox. If the second value is not present, the first value is also used for it.
14480 *
14481 * **Syntax**: `<'align-self'> <'justify-self'>?`
14482 *
14483 * | Chrome | Firefox | Safari | Edge | IE |
14484 * | :----: | :-----: | :----: | :----: | :-: |
14485 * | **59** | **45** | **11** | **79** | No |
14486 *
14487 * @see https://developer.mozilla.org/docs/Web/CSS/place-self
14488 */
14489 "place-self"?: Property.PlaceSelf | undefined;
14490 /**
14491 * The **`text-decoration`** shorthand CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, `text-decoration-style`, and the newer `text-decoration-thickness` property.
14492 *
14493 * **Syntax**: `<'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-thickness'>`
14494 *
14495 * | Chrome | Firefox | Safari | Edge | IE |
14496 * | :----: | :-----: | :----: | :----: | :---: |
14497 * | **1** | **1** | **1** | **12** | **3** |
14498 *
14499 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration
14500 */
14501 "text-decoration"?: Property.TextDecoration<TLength> | undefined;
14502 /**
14503 * The **`text-emphasis`** CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for `text-emphasis-style` and `text-emphasis-color`.
14504 *
14505 * **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`
14506 *
14507 * | Chrome | Firefox | Safari | Edge | IE |
14508 * | :----------: | :-----: | :----: | :----------: | :-: |
14509 * | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
14510 *
14511 * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis
14512 */
14513 "text-emphasis"?: Property.TextEmphasis | undefined;
14514 /**
14515 * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
14516 *
14517 * **Syntax**: `<single-transition>#`
14518 *
14519 * | Chrome | Firefox | Safari | Edge | IE |
14520 * | :-----: | :-----: | :-------: | :----: | :----: |
14521 * | **26** | **16** | **9** | **12** | **10** |
14522 * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
14523 *
14524 * @see https://developer.mozilla.org/docs/Web/CSS/transition
14525 */
14526 transition?: Property.Transition<TTime> | undefined;
14527}
14528export interface StandardPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> extends StandardLonghandPropertiesHyphen<TLength, TTime>, StandardShorthandPropertiesHyphen<TLength, TTime> {
14529}
14530export interface VendorLonghandPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
14531 /**
14532 * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
14533 *
14534 * **Syntax**: `<time>#`
14535 *
14536 * **Initial value**: `0s`
14537 */
14538 "-moz-animation-delay"?: Property.AnimationDelay<TTime> | undefined;
14539 /**
14540 * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
14541 *
14542 * **Syntax**: `<single-animation-direction>#`
14543 *
14544 * **Initial value**: `normal`
14545 */
14546 "-moz-animation-direction"?: Property.AnimationDirection | undefined;
14547 /**
14548 * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
14549 *
14550 * **Syntax**: `<time>#`
14551 *
14552 * **Initial value**: `0s`
14553 */
14554 "-moz-animation-duration"?: Property.AnimationDuration<TTime> | undefined;
14555 /**
14556 * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
14557 *
14558 * **Syntax**: `<single-animation-fill-mode>#`
14559 *
14560 * **Initial value**: `none`
14561 */
14562 "-moz-animation-fill-mode"?: Property.AnimationFillMode | undefined;
14563 /**
14564 * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
14565 *
14566 * **Syntax**: `<single-animation-iteration-count>#`
14567 *
14568 * **Initial value**: `1`
14569 */
14570 "-moz-animation-iteration-count"?: Property.AnimationIterationCount | undefined;
14571 /**
14572 * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
14573 *
14574 * **Syntax**: `[ none | <keyframes-name> ]#`
14575 *
14576 * **Initial value**: `none`
14577 */
14578 "-moz-animation-name"?: Property.AnimationName | undefined;
14579 /**
14580 * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
14581 *
14582 * **Syntax**: `<single-animation-play-state>#`
14583 *
14584 * **Initial value**: `running`
14585 */
14586 "-moz-animation-play-state"?: Property.AnimationPlayState | undefined;
14587 /**
14588 * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
14589 *
14590 * **Syntax**: `<easing-function>#`
14591 *
14592 * **Initial value**: `ease`
14593 */
14594 "-moz-animation-timing-function"?: Property.AnimationTimingFunction | undefined;
14595 /**
14596 * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.
14597 *
14598 * **Syntax**: `none | button | button-arrow-down | button-arrow-next | button-arrow-previous | button-arrow-up | button-bevel | button-focus | caret | checkbox | checkbox-container | checkbox-label | checkmenuitem | dualbutton | groupbox | listbox | listitem | menuarrow | menubar | menucheckbox | menuimage | menuitem | menuitemtext | menulist | menulist-button | menulist-text | menulist-textfield | menupopup | menuradio | menuseparator | meterbar | meterchunk | progressbar | progressbar-vertical | progresschunk | progresschunk-vertical | radio | radio-container | radio-label | radiomenuitem | range | range-thumb | resizer | resizerpanel | scale-horizontal | scalethumbend | scalethumb-horizontal | scalethumbstart | scalethumbtick | scalethumb-vertical | scale-vertical | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical | searchfield | separator | sheet | spinner | spinner-downbutton | spinner-textfield | spinner-upbutton | splitter | statusbar | statusbarpanel | tab | tabpanel | tabpanels | tab-scroll-arrow-back | tab-scroll-arrow-forward | textfield | textfield-multiline | toolbar | toolbarbutton | toolbarbutton-dropdown | toolbargripper | toolbox | tooltip | treeheader | treeheadercell | treeheadersortarrow | treeitem | treeline | treetwisty | treetwistyopen | treeview | -moz-mac-unified-toolbar | -moz-win-borderless-glass | -moz-win-browsertabbar-toolbox | -moz-win-communicationstext | -moz-win-communications-toolbox | -moz-win-exclude-glass | -moz-win-glass | -moz-win-mediatext | -moz-win-media-toolbox | -moz-window-button-box | -moz-window-button-box-maximized | -moz-window-button-close | -moz-window-button-maximize | -moz-window-button-minimize | -moz-window-button-restore | -moz-window-frame-bottom | -moz-window-frame-left | -moz-window-frame-right | -moz-window-titlebar | -moz-window-titlebar-maximized`
14599 *
14600 * **Initial value**: `none` (but this value is overridden in the user agent CSS)
14601 */
14602 "-moz-appearance"?: Property.MozAppearance | undefined;
14603 /**
14604 * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
14605 *
14606 * **Syntax**: `visible | hidden`
14607 *
14608 * **Initial value**: `visible`
14609 */
14610 "-moz-backface-visibility"?: Property.BackfaceVisibility | undefined;
14611 /**
14612 * In Mozilla applications like Firefox, the **`-moz-border-bottom-colors`** CSS property sets a list of colors for the bottom border.
14613 *
14614 * **Syntax**: `<color>+ | none`
14615 *
14616 * **Initial value**: `none`
14617 */
14618 "-moz-border-bottom-colors"?: Property.MozBorderBottomColors | undefined;
14619 /**
14620 * The **`border-inline-end-color`** CSS property defines the color of the logical inline-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
14621 *
14622 * **Syntax**: `<'border-top-color'>`
14623 *
14624 * **Initial value**: `currentcolor`
14625 */
14626 "-moz-border-end-color"?: Property.BorderInlineEndColor | undefined;
14627 /**
14628 * The **`border-inline-end-style`** CSS property defines the style of the logical inline end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
14629 *
14630 * **Syntax**: `<'border-top-style'>`
14631 *
14632 * **Initial value**: `none`
14633 */
14634 "-moz-border-end-style"?: Property.BorderInlineEndStyle | undefined;
14635 /**
14636 * The **`border-inline-end-width`** CSS property defines the width of the logical inline-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
14637 *
14638 * **Syntax**: `<'border-top-width'>`
14639 *
14640 * **Initial value**: `medium`
14641 */
14642 "-moz-border-end-width"?: Property.BorderInlineEndWidth<TLength> | undefined;
14643 /**
14644 * In Mozilla applications like Firefox, the **`-moz-border-left-colors`** CSS property sets a list of colors for the left border.
14645 *
14646 * **Syntax**: `<color>+ | none`
14647 *
14648 * **Initial value**: `none`
14649 */
14650 "-moz-border-left-colors"?: Property.MozBorderLeftColors | undefined;
14651 /**
14652 * In Mozilla applications like Firefox, the **`-moz-border-right-colors`** CSS property sets a list of colors for the right border.
14653 *
14654 * **Syntax**: `<color>+ | none`
14655 *
14656 * **Initial value**: `none`
14657 */
14658 "-moz-border-right-colors"?: Property.MozBorderRightColors | undefined;
14659 /**
14660 * The **`border-inline-start-color`** CSS property defines the color of the logical inline start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
14661 *
14662 * **Syntax**: `<'border-top-color'>`
14663 *
14664 * **Initial value**: `currentcolor`
14665 */
14666 "-moz-border-start-color"?: Property.BorderInlineStartColor | undefined;
14667 /**
14668 * The **`border-inline-start-style`** CSS property defines the style of the logical inline start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
14669 *
14670 * **Syntax**: `<'border-top-style'>`
14671 *
14672 * **Initial value**: `none`
14673 */
14674 "-moz-border-start-style"?: Property.BorderInlineStartStyle | undefined;
14675 /**
14676 * In Mozilla applications like Firefox, the **`-moz-border-top-colors`** CSS property sets a list of colors for the top border.
14677 *
14678 * **Syntax**: `<color>+ | none`
14679 *
14680 * **Initial value**: `none`
14681 */
14682 "-moz-border-top-colors"?: Property.MozBorderTopColors | undefined;
14683 /**
14684 * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
14685 *
14686 * **Syntax**: `content-box | border-box`
14687 *
14688 * **Initial value**: `content-box`
14689 */
14690 "-moz-box-sizing"?: Property.BoxSizing | undefined;
14691 /**
14692 * The **`column-count`** CSS property breaks an element's content into the specified number of columns.
14693 *
14694 * **Syntax**: `<integer> | auto`
14695 *
14696 * **Initial value**: `auto`
14697 */
14698 "-moz-column-count"?: Property.ColumnCount | undefined;
14699 /**
14700 * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.
14701 *
14702 * **Syntax**: `auto | balance | balance-all`
14703 *
14704 * **Initial value**: `balance`
14705 */
14706 "-moz-column-fill"?: Property.ColumnFill | undefined;
14707 /**
14708 * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
14709 *
14710 * **Syntax**: `normal | <length-percentage>`
14711 *
14712 * **Initial value**: `normal`
14713 */
14714 "-moz-column-gap"?: Property.ColumnGap<TLength> | undefined;
14715 /**
14716 * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.
14717 *
14718 * **Syntax**: `<color>`
14719 *
14720 * **Initial value**: `currentcolor`
14721 */
14722 "-moz-column-rule-color"?: Property.ColumnRuleColor | undefined;
14723 /**
14724 * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.
14725 *
14726 * **Syntax**: `<'border-style'>`
14727 *
14728 * **Initial value**: `none`
14729 */
14730 "-moz-column-rule-style"?: Property.ColumnRuleStyle | undefined;
14731 /**
14732 * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
14733 *
14734 * **Syntax**: `<'border-width'>`
14735 *
14736 * **Initial value**: `medium`
14737 */
14738 "-moz-column-rule-width"?: Property.ColumnRuleWidth<TLength> | undefined;
14739 /**
14740 * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.
14741 *
14742 * **Syntax**: `<length> | auto`
14743 *
14744 * **Initial value**: `auto`
14745 */
14746 "-moz-column-width"?: Property.ColumnWidth<TLength> | undefined;
14747 /**
14748 * The `**-moz-context-properties**` property can be used within privileged contexts in Firefox to share the values of specified properties of the element with a child SVG image.
14749 *
14750 * **Syntax**: `none | [ fill | fill-opacity | stroke | stroke-opacity ]#`
14751 *
14752 * **Initial value**: `none`
14753 */
14754 "-moz-context-properties"?: Property.MozContextProperties | undefined;
14755 /**
14756 * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
14757 *
14758 * **Syntax**: `normal | <feature-tag-value>#`
14759 *
14760 * **Initial value**: `normal`
14761 */
14762 "-moz-font-feature-settings"?: Property.FontFeatureSettings | undefined;
14763 /**
14764 * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface.
14765 *
14766 * **Syntax**: `normal | <string>`
14767 *
14768 * **Initial value**: `normal`
14769 */
14770 "-moz-font-language-override"?: Property.FontLanguageOverride | undefined;
14771 /**
14772 * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
14773 *
14774 * **Syntax**: `none | manual | auto`
14775 *
14776 * **Initial value**: `manual`
14777 */
14778 "-moz-hyphens"?: Property.Hyphens | undefined;
14779 /**
14780 * For certain XUL elements and pseudo-elements that use an image from the `list-style-image` property, this property specifies a region of the image that is used in place of the whole image. This allows elements to use different pieces of the same image to improve performance.
14781 *
14782 * **Syntax**: `<shape> | auto`
14783 *
14784 * **Initial value**: `auto`
14785 */
14786 "-moz-image-region"?: Property.MozImageRegion | undefined;
14787 /**
14788 * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
14789 *
14790 * **Syntax**: `<'margin-left'>`
14791 *
14792 * **Initial value**: `0`
14793 */
14794 "-moz-margin-end"?: Property.MarginInlineEnd<TLength> | undefined;
14795 /**
14796 * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
14797 *
14798 * **Syntax**: `<'margin-left'>`
14799 *
14800 * **Initial value**: `0`
14801 */
14802 "-moz-margin-start"?: Property.MarginInlineStart<TLength> | undefined;
14803 /**
14804 * The **`-moz-orient`** CSS property specifies the orientation of the element to which it's applied.
14805 *
14806 * **Syntax**: `inline | block | horizontal | vertical`
14807 *
14808 * **Initial value**: `inline`
14809 */
14810 "-moz-orient"?: Property.MozOrient | undefined;
14811 /**
14812 * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.
14813 *
14814 * **Syntax**: `auto | never | always | <absolute-size> | <length>`
14815 *
14816 * **Initial value**: `auto`
14817 */
14818 "-moz-osx-font-smoothing"?: Property.FontSmooth<TLength> | undefined;
14819 /**
14820 * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
14821 *
14822 * **Syntax**: `<'padding-left'>`
14823 *
14824 * **Initial value**: `0`
14825 */
14826 "-moz-padding-end"?: Property.PaddingInlineEnd<TLength> | undefined;
14827 /**
14828 * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
14829 *
14830 * **Syntax**: `<'padding-left'>`
14831 *
14832 * **Initial value**: `0`
14833 */
14834 "-moz-padding-start"?: Property.PaddingInlineStart<TLength> | undefined;
14835 /**
14836 * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
14837 *
14838 * **Syntax**: `none | <length>`
14839 *
14840 * **Initial value**: `none`
14841 */
14842 "-moz-perspective"?: Property.Perspective<TLength> | undefined;
14843 /**
14844 * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
14845 *
14846 * **Syntax**: `<position>`
14847 *
14848 * **Initial value**: `50% 50%`
14849 */
14850 "-moz-perspective-origin"?: Property.PerspectiveOrigin<TLength> | undefined;
14851 /**
14852 * **`-moz-stack-sizing`** is an extended CSS property. Normally, a `<xul:stack>` will change its size so that all of its child elements are completely visible. For example, moving a child of the stack far to the right will widen the stack so the child remains visible.
14853 *
14854 * **Syntax**: `ignore | stretch-to-fit`
14855 *
14856 * **Initial value**: `stretch-to-fit`
14857 */
14858 "-moz-stack-sizing"?: Property.MozStackSizing | undefined;
14859 /**
14860 * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
14861 *
14862 * **Syntax**: `<integer> | <length>`
14863 *
14864 * **Initial value**: `8`
14865 */
14866 "-moz-tab-size"?: Property.TabSize<TLength> | undefined;
14867 /**
14868 * The **`-moz-text-blink`** non-standard Mozilla CSS extension specifies the blink mode.
14869 *
14870 * **Syntax**: `none | blink`
14871 *
14872 * **Initial value**: `none`
14873 */
14874 "-moz-text-blink"?: Property.MozTextBlink | undefined;
14875 /**
14876 * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
14877 *
14878 * **Syntax**: `none | auto | <percentage>`
14879 *
14880 * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
14881 */
14882 "-moz-text-size-adjust"?: Property.TextSizeAdjust | undefined;
14883 /**
14884 * The **`transform-origin`** CSS property sets the origin for an element's transformations.
14885 *
14886 * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
14887 *
14888 * **Initial value**: `50% 50% 0`
14889 */
14890 "-moz-transform-origin"?: Property.TransformOrigin<TLength> | undefined;
14891 /**
14892 * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
14893 *
14894 * **Syntax**: `flat | preserve-3d`
14895 *
14896 * **Initial value**: `flat`
14897 */
14898 "-moz-transform-style"?: Property.TransformStyle | undefined;
14899 /**
14900 * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
14901 *
14902 * **Syntax**: `<time>#`
14903 *
14904 * **Initial value**: `0s`
14905 */
14906 "-moz-transition-delay"?: Property.TransitionDelay<TTime> | undefined;
14907 /**
14908 * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
14909 *
14910 * **Syntax**: `<time>#`
14911 *
14912 * **Initial value**: `0s`
14913 */
14914 "-moz-transition-duration"?: Property.TransitionDuration<TTime> | undefined;
14915 /**
14916 * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
14917 *
14918 * **Syntax**: `none | <single-transition-property>#`
14919 *
14920 * **Initial value**: all
14921 */
14922 "-moz-transition-property"?: Property.TransitionProperty | undefined;
14923 /**
14924 * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
14925 *
14926 * **Syntax**: `<easing-function>#`
14927 *
14928 * **Initial value**: `ease`
14929 */
14930 "-moz-transition-timing-function"?: Property.TransitionTimingFunction | undefined;
14931 /**
14932 * The **`-moz-user-focus`** CSS property is used to indicate whether an element can have the focus.
14933 *
14934 * **Syntax**: `ignore | normal | select-after | select-before | select-menu | select-same | select-all | none`
14935 *
14936 * **Initial value**: `none`
14937 */
14938 "-moz-user-focus"?: Property.MozUserFocus | undefined;
14939 /**
14940 * The **`user-modify`** property has no effect in Firefox. It was originally planned to determine whether or not the content of an element can be edited by a user.
14941 *
14942 * **Syntax**: `read-only | read-write | write-only`
14943 *
14944 * **Initial value**: `read-only`
14945 */
14946 "-moz-user-modify"?: Property.MozUserModify | undefined;
14947 /**
14948 * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
14949 *
14950 * **Syntax**: `auto | text | none | contain | all`
14951 *
14952 * **Initial value**: `auto`
14953 */
14954 "-moz-user-select"?: Property.UserSelect | undefined;
14955 /**
14956 * The **`-moz-window-dragging`** CSS property specifies whether a window is draggable or not. It only works in Chrome code, and only on Mac OS X.
14957 *
14958 * **Syntax**: `drag | no-drag`
14959 *
14960 * **Initial value**: `drag`
14961 */
14962 "-moz-window-dragging"?: Property.MozWindowDragging | undefined;
14963 /**
14964 * The **`-moz-window-shadow`** CSS property specifies whether a window will have a shadow. It only works on Mac OS X.
14965 *
14966 * **Syntax**: `default | menu | tooltip | sheet | none`
14967 *
14968 * **Initial value**: `default`
14969 */
14970 "-moz-window-shadow"?: Property.MozWindowShadow | undefined;
14971 /**
14972 * The **`-ms-accelerator`** CSS property is a Microsoft extension that sets or retrieves a string indicating whether the object represents a keyboard shortcut.
14973 *
14974 * **Syntax**: `false | true`
14975 *
14976 * **Initial value**: `false`
14977 */
14978 "-ms-accelerator"?: Property.MsAccelerator | undefined;
14979 /**
14980 * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.
14981 *
14982 * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`
14983 *
14984 * **Initial value**: `auto`
14985 */
14986 "-ms-align-self"?: Property.AlignSelf | undefined;
14987 /**
14988 * The **`-ms-block-progression`** CSS property is a Microsoft extension that specifies the block progression and layout orientation.
14989 *
14990 * **Syntax**: `tb | rl | bt | lr`
14991 *
14992 * **Initial value**: `tb`
14993 */
14994 "-ms-block-progression"?: Property.MsBlockProgression | undefined;
14995 /**
14996 * The **`-ms-content-zoom-chaining`** CSS property is a Microsoft extension specifying the zoom behavior that occurs when a user hits the zoom limit during page manipulation.
14997 *
14998 * **Syntax**: `none | chained`
14999 *
15000 * **Initial value**: `none`
15001 */
15002 "-ms-content-zoom-chaining"?: Property.MsContentZoomChaining | undefined;
15003 /**
15004 * The **`-ms-content-zoom-limit-max`** CSS property is a Microsoft extension that specifies the selected elements' maximum zoom factor.
15005 *
15006 * **Syntax**: `<percentage>`
15007 *
15008 * **Initial value**: `400%`
15009 */
15010 "-ms-content-zoom-limit-max"?: Property.MsContentZoomLimitMax | undefined;
15011 /**
15012 * The **`-ms-content-zoom-limit-min`** CSS property is a Microsoft extension that specifies the minimum zoom factor.
15013 *
15014 * **Syntax**: `<percentage>`
15015 *
15016 * **Initial value**: `100%`
15017 */
15018 "-ms-content-zoom-limit-min"?: Property.MsContentZoomLimitMin | undefined;
15019 /**
15020 * The **`-ms-content-zoom-snap-points`** CSS property is a Microsoft extension that specifies where zoom snap-points are located.
15021 *
15022 * **Syntax**: `snapInterval( <percentage>, <percentage> ) | snapList( <percentage># )`
15023 *
15024 * **Initial value**: `snapInterval(0%, 100%)`
15025 */
15026 "-ms-content-zoom-snap-points"?: Property.MsContentZoomSnapPoints | undefined;
15027 /**
15028 * The **`-ms-content-zoom-snap-type`** CSS property is a Microsoft extension that specifies how zooming is affected by defined snap-points.
15029 *
15030 * **Syntax**: `none | proximity | mandatory`
15031 *
15032 * **Initial value**: `none`
15033 */
15034 "-ms-content-zoom-snap-type"?: Property.MsContentZoomSnapType | undefined;
15035 /**
15036 * The **`-ms-content-zooming`** CSS property is a Microsoft extension that specifies whether zooming is enabled.
15037 *
15038 * **Syntax**: `none | zoom`
15039 *
15040 * **Initial value**: zoom for the top level element, none for all other elements
15041 */
15042 "-ms-content-zooming"?: Property.MsContentZooming | undefined;
15043 /**
15044 * The `-ms-filter` CSS property is a Microsoft extension that sets or retrieves the filter or collection of filters applied to an object.
15045 *
15046 * **Syntax**: `<string>`
15047 *
15048 * **Initial value**: "" (the empty string)
15049 */
15050 "-ms-filter"?: Property.MsFilter | undefined;
15051 /**
15052 * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).
15053 *
15054 * **Syntax**: `row | row-reverse | column | column-reverse`
15055 *
15056 * **Initial value**: `row`
15057 */
15058 "-ms-flex-direction"?: Property.FlexDirection | undefined;
15059 /**
15060 * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.
15061 *
15062 * **Syntax**: `<number>`
15063 *
15064 * **Initial value**: `0`
15065 */
15066 "-ms-flex-positive"?: Property.FlexGrow | undefined;
15067 /**
15068 * The **`-ms-flow-from`** CSS property is a Microsoft extension that gets or sets a value identifying a region container in the document that accepts the content flow from the data source.
15069 *
15070 * **Syntax**: `[ none | <custom-ident> ]#`
15071 *
15072 * **Initial value**: `none`
15073 */
15074 "-ms-flow-from"?: Property.MsFlowFrom | undefined;
15075 /**
15076 * The **`-ms-flow-into`** CSS property is a Microsoft extension that gets or sets a value identifying an iframe container in the document that serves as the region's data source.
15077 *
15078 * **Syntax**: `[ none | <custom-ident> ]#`
15079 *
15080 * **Initial value**: `none`
15081 */
15082 "-ms-flow-into"?: Property.MsFlowInto | undefined;
15083 /**
15084 * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.
15085 *
15086 * **Syntax**: `none | <track-list> | <auto-track-list>`
15087 *
15088 * **Initial value**: `none`
15089 */
15090 "-ms-grid-columns"?: Property.MsGridColumns<TLength> | undefined;
15091 /**
15092 * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.
15093 *
15094 * **Syntax**: `none | <track-list> | <auto-track-list>`
15095 *
15096 * **Initial value**: `none`
15097 */
15098 "-ms-grid-rows"?: Property.MsGridRows<TLength> | undefined;
15099 /**
15100 * The **`-ms-high-contrast-adjust`** CSS property is a Microsoft extension that gets or sets a value indicating whether to override any CSS properties that would have been set in high contrast mode.
15101 *
15102 * **Syntax**: `auto | none`
15103 *
15104 * **Initial value**: `auto`
15105 */
15106 "-ms-high-contrast-adjust"?: Property.MsHighContrastAdjust | undefined;
15107 /**
15108 * The **`-ms-hyphenate-limit-chars`** CSS property is a Microsoft extension that specifies one to three values indicating the minimum number of characters in a hyphenated word. If the word does not meet the required minimum number of characters in the word, before the hyphen, or after the hyphen, then the word is not hyphenated.
15109 *
15110 * **Syntax**: `auto | <integer>{1,3}`
15111 *
15112 * **Initial value**: `auto`
15113 */
15114 "-ms-hyphenate-limit-chars"?: Property.MsHyphenateLimitChars | undefined;
15115 /**
15116 * The **`-ms-hyphenate-limit-lines`** CSS property is a Microsoft extension specifying the maximum number of consecutive lines in an element that may be ended with a hyphenated word.
15117 *
15118 * **Syntax**: `no-limit | <integer>`
15119 *
15120 * **Initial value**: `no-limit`
15121 */
15122 "-ms-hyphenate-limit-lines"?: Property.MsHyphenateLimitLines | undefined;
15123 /**
15124 * The `**-ms-hyphenate-limit-zone**` CSS property is a Microsoft extension specifying the width of the hyphenation zone.
15125 *
15126 * **Syntax**: `<percentage> | <length>`
15127 *
15128 * **Initial value**: `0`
15129 */
15130 "-ms-hyphenate-limit-zone"?: Property.MsHyphenateLimitZone<TLength> | undefined;
15131 /**
15132 * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
15133 *
15134 * **Syntax**: `none | manual | auto`
15135 *
15136 * **Initial value**: `manual`
15137 */
15138 "-ms-hyphens"?: Property.Hyphens | undefined;
15139 /**
15140 * The **`-ms-ime-align`** CSS property is a Microsoft extension aligning the Input Method Editor (IME) candidate window box relative to the element on which the IME composition is active. The extension is implemented in Microsoft Edge and Internet Explorer 11.
15141 *
15142 * **Syntax**: `auto | after`
15143 *
15144 * **Initial value**: `auto`
15145 */
15146 "-ms-ime-align"?: Property.MsImeAlign | undefined;
15147 /**
15148 * The CSS **`justify-self`** property sets the way a box is justified inside its alignment container along the appropriate axis.
15149 *
15150 * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]`
15151 *
15152 * **Initial value**: `auto`
15153 */
15154 "-ms-justify-self"?: Property.JustifySelf | undefined;
15155 /**
15156 * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
15157 *
15158 * **Syntax**: `auto | loose | normal | strict | anywhere`
15159 *
15160 * **Initial value**: `auto`
15161 */
15162 "-ms-line-break"?: Property.LineBreak | undefined;
15163 /**
15164 * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.
15165 *
15166 * **Syntax**: `<integer>`
15167 *
15168 * **Initial value**: `0`
15169 */
15170 "-ms-order"?: Property.Order | undefined;
15171 /**
15172 * The **`-ms-overflow-style`** CSS property is a Microsoft extension controlling the behavior of scrollbars when the content of an element overflows.
15173 *
15174 * **Syntax**: `auto | none | scrollbar | -ms-autohiding-scrollbar`
15175 *
15176 * **Initial value**: `auto`
15177 */
15178 "-ms-overflow-style"?: Property.MsOverflowStyle | undefined;
15179 /**
15180 * The **`overflow-x`** CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.
15181 *
15182 * **Syntax**: `visible | hidden | clip | scroll | auto`
15183 *
15184 * **Initial value**: `visible`
15185 */
15186 "-ms-overflow-x"?: Property.OverflowX | undefined;
15187 /**
15188 * The **`overflow-y`** CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.
15189 *
15190 * **Syntax**: `visible | hidden | clip | scroll | auto`
15191 *
15192 * **Initial value**: `visible`
15193 */
15194 "-ms-overflow-y"?: Property.OverflowY | undefined;
15195 /**
15196 * The `**-ms-scroll-chaining**` CSS property is a Microsoft extension that specifies the scrolling behavior that occurs when a user hits the scroll limit during a manipulation.
15197 *
15198 * **Syntax**: `chained | none`
15199 *
15200 * **Initial value**: `chained`
15201 */
15202 "-ms-scroll-chaining"?: Property.MsScrollChaining | undefined;
15203 /**
15204 * The `**-ms-scroll-limit-x-max**` CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollLeft` property.
15205 *
15206 * **Syntax**: `auto | <length>`
15207 *
15208 * **Initial value**: `auto`
15209 */
15210 "-ms-scroll-limit-x-max"?: Property.MsScrollLimitXMax<TLength> | undefined;
15211 /**
15212 * The **`-ms-scroll-limit-x-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollLeft` property.
15213 *
15214 * **Syntax**: `<length>`
15215 *
15216 * **Initial value**: `0`
15217 */
15218 "-ms-scroll-limit-x-min"?: Property.MsScrollLimitXMin<TLength> | undefined;
15219 /**
15220 * The **`-ms-scroll-limit-y-max`** CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollTop` property.
15221 *
15222 * **Syntax**: `auto | <length>`
15223 *
15224 * **Initial value**: `auto`
15225 */
15226 "-ms-scroll-limit-y-max"?: Property.MsScrollLimitYMax<TLength> | undefined;
15227 /**
15228 * The **`-ms-scroll-limit-y-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollTop` property.
15229 *
15230 * **Syntax**: `<length>`
15231 *
15232 * **Initial value**: `0`
15233 */
15234 "-ms-scroll-limit-y-min"?: Property.MsScrollLimitYMin<TLength> | undefined;
15235 /**
15236 * The **`-ms-scroll-rails`** CSS property is a Microsoft extension that specifies whether scrolling locks to the primary axis of motion.
15237 *
15238 * **Syntax**: `none | railed`
15239 *
15240 * **Initial value**: `railed`
15241 */
15242 "-ms-scroll-rails"?: Property.MsScrollRails | undefined;
15243 /**
15244 * The **`-ms-scroll-snap-points-x`** CSS property is a Microsoft extension that specifies where snap-points will be located along the x-axis.
15245 *
15246 * **Syntax**: `snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )`
15247 *
15248 * **Initial value**: `snapInterval(0px, 100%)`
15249 */
15250 "-ms-scroll-snap-points-x"?: Property.MsScrollSnapPointsX | undefined;
15251 /**
15252 * The **`-ms-scroll-snap-points-y`** CSS property is a Microsoft extension that specifies where snap-points will be located along the y-axis.
15253 *
15254 * **Syntax**: `snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )`
15255 *
15256 * **Initial value**: `snapInterval(0px, 100%)`
15257 */
15258 "-ms-scroll-snap-points-y"?: Property.MsScrollSnapPointsY | undefined;
15259 /**
15260 * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.
15261 *
15262 * **Syntax**: `none | proximity | mandatory`
15263 *
15264 * **Initial value**: `none`
15265 */
15266 "-ms-scroll-snap-type"?: Property.MsScrollSnapType | undefined;
15267 /**
15268 * The **`-ms-scroll-translation`** CSS property is a Microsoft extension that specifies whether vertical-to-horizontal scroll wheel translation occurs on the specified element.
15269 *
15270 * **Syntax**: `none | vertical-to-horizontal`
15271 *
15272 * **Initial value**: `none`
15273 */
15274 "-ms-scroll-translation"?: Property.MsScrollTranslation | undefined;
15275 /**
15276 * The **`-ms-scrollbar-3dlight-color`** CSS property is a Microsoft extension specifying the color of the top and left edges of the scroll box and scroll arrows of a scroll bar.
15277 *
15278 * **Syntax**: `<color>`
15279 *
15280 * **Initial value**: depends on user agent
15281 */
15282 "-ms-scrollbar-3dlight-color"?: Property.MsScrollbar3dlightColor | undefined;
15283 /**
15284 * The **`-ms-scrollbar-arrow-color`** CSS property is a Microsoft extension that specifies the color of the arrow elements of a scroll arrow.
15285 *
15286 * **Syntax**: `<color>`
15287 *
15288 * **Initial value**: `ButtonText`
15289 */
15290 "-ms-scrollbar-arrow-color"?: Property.MsScrollbarArrowColor | undefined;
15291 /**
15292 * The `**-ms-scrollbar-base-color**` CSS property is a Microsoft extension that specifies the base color of the main elements of a scroll bar.
15293 *
15294 * **Syntax**: `<color>`
15295 *
15296 * **Initial value**: depends on user agent
15297 */
15298 "-ms-scrollbar-base-color"?: Property.MsScrollbarBaseColor | undefined;
15299 /**
15300 * The **`-ms-scrollbar-darkshadow-color`** CSS property is a Microsoft extension that specifies the color of a scroll bar's gutter.
15301 *
15302 * **Syntax**: `<color>`
15303 *
15304 * **Initial value**: `ThreeDDarkShadow`
15305 */
15306 "-ms-scrollbar-darkshadow-color"?: Property.MsScrollbarDarkshadowColor | undefined;
15307 /**
15308 * The `**-ms-scrollbar-face-color**` CSS property is a Microsoft extension that specifies the color of the scroll box and scroll arrows of a scroll bar.
15309 *
15310 * **Syntax**: `<color>`
15311 *
15312 * **Initial value**: `ThreeDFace`
15313 */
15314 "-ms-scrollbar-face-color"?: Property.MsScrollbarFaceColor | undefined;
15315 /**
15316 * The `**-ms-scrollbar-highlight-color**` CSS property is a Microsoft extension that specifies the color of the slider tray, the top and left edges of the scroll box, and the scroll arrows of a scroll bar.
15317 *
15318 * **Syntax**: `<color>`
15319 *
15320 * **Initial value**: `ThreeDHighlight`
15321 */
15322 "-ms-scrollbar-highlight-color"?: Property.MsScrollbarHighlightColor | undefined;
15323 /**
15324 * The **`-ms-scrollbar-shadow-color`** CSS property is a Microsoft extension that specifies the color of the bottom and right edges of the scroll box and scroll arrows of a scroll bar.
15325 *
15326 * **Syntax**: `<color>`
15327 *
15328 * **Initial value**: `ThreeDDarkShadow`
15329 */
15330 "-ms-scrollbar-shadow-color"?: Property.MsScrollbarShadowColor | undefined;
15331 /**
15332 * The **`-ms-text-autospace`** CSS property is a Microsoft extension that specifies the autospacing and narrow space width adjustment of text.
15333 *
15334 * **Syntax**: `none | ideograph-alpha | ideograph-numeric | ideograph-parenthesis | ideograph-space`
15335 *
15336 * **Initial value**: `none`
15337 */
15338 "-ms-text-autospace"?: Property.MsTextAutospace | undefined;
15339 /**
15340 * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.
15341 *
15342 * **Syntax**: `none | all | [ digits <integer>? ]`
15343 *
15344 * **Initial value**: `none`
15345 */
15346 "-ms-text-combine-horizontal"?: Property.TextCombineUpright | undefined;
15347 /**
15348 * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.
15349 *
15350 * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`
15351 *
15352 * **Initial value**: `clip`
15353 */
15354 "-ms-text-overflow"?: Property.TextOverflow | undefined;
15355 /**
15356 * The **`touch-action`** CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser).
15357 *
15358 * **Syntax**: `auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation`
15359 *
15360 * **Initial value**: `auto`
15361 */
15362 "-ms-touch-action"?: Property.TouchAction | undefined;
15363 /**
15364 * The **`-ms-touch-select`** CSS property is a Microsoft extension that toggles the gripper visual elements that enable touch text selection.
15365 *
15366 * **Syntax**: `grippers | none`
15367 *
15368 * **Initial value**: `grippers`
15369 */
15370 "-ms-touch-select"?: Property.MsTouchSelect | undefined;
15371 /**
15372 * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
15373 *
15374 * **Syntax**: `none | <transform-list>`
15375 *
15376 * **Initial value**: `none`
15377 */
15378 "-ms-transform"?: Property.Transform | undefined;
15379 /**
15380 * The **`transform-origin`** CSS property sets the origin for an element's transformations.
15381 *
15382 * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
15383 *
15384 * **Initial value**: `50% 50% 0`
15385 */
15386 "-ms-transform-origin"?: Property.TransformOrigin<TLength> | undefined;
15387 /**
15388 * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
15389 *
15390 * **Syntax**: `<time>#`
15391 *
15392 * **Initial value**: `0s`
15393 */
15394 "-ms-transition-delay"?: Property.TransitionDelay<TTime> | undefined;
15395 /**
15396 * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
15397 *
15398 * **Syntax**: `<time>#`
15399 *
15400 * **Initial value**: `0s`
15401 */
15402 "-ms-transition-duration"?: Property.TransitionDuration<TTime> | undefined;
15403 /**
15404 * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
15405 *
15406 * **Syntax**: `none | <single-transition-property>#`
15407 *
15408 * **Initial value**: all
15409 */
15410 "-ms-transition-property"?: Property.TransitionProperty | undefined;
15411 /**
15412 * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
15413 *
15414 * **Syntax**: `<easing-function>#`
15415 *
15416 * **Initial value**: `ease`
15417 */
15418 "-ms-transition-timing-function"?: Property.TransitionTimingFunction | undefined;
15419 /**
15420 * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
15421 *
15422 * **Syntax**: `none | element | text`
15423 *
15424 * **Initial value**: `text`
15425 */
15426 "-ms-user-select"?: Property.MsUserSelect | undefined;
15427 /**
15428 * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box.
15429 *
15430 * **Syntax**: `normal | break-all | keep-all | break-word`
15431 *
15432 * **Initial value**: `normal`
15433 */
15434 "-ms-word-break"?: Property.WordBreak | undefined;
15435 /**
15436 * The **`-ms-wrap-flow`** CSS property is a Microsoft extension that specifies how exclusions impact inline content within block-level elements.
15437 *
15438 * **Syntax**: `auto | both | start | end | maximum | clear`
15439 *
15440 * **Initial value**: `auto`
15441 */
15442 "-ms-wrap-flow"?: Property.MsWrapFlow | undefined;
15443 /**
15444 * The **`-ms-wrap-margin`** CSS property is a Microsoft extension that specifies a margin that offsets the inner wrap shape from other shapes.
15445 *
15446 * **Syntax**: `<length>`
15447 *
15448 * **Initial value**: `0`
15449 */
15450 "-ms-wrap-margin"?: Property.MsWrapMargin<TLength> | undefined;
15451 /**
15452 * The **`-ms-wrap-through`** CSS property is a Microsoft extension that specifies how content should wrap around an exclusion element.
15453 *
15454 * **Syntax**: `wrap | none`
15455 *
15456 * **Initial value**: `wrap`
15457 */
15458 "-ms-wrap-through"?: Property.MsWrapThrough | undefined;
15459 /**
15460 * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).
15461 *
15462 * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`
15463 *
15464 * **Initial value**: `horizontal-tb`
15465 */
15466 "-ms-writing-mode"?: Property.WritingMode | undefined;
15467 /**
15468 * The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.
15469 *
15470 * **Syntax**: `normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>`
15471 *
15472 * **Initial value**: `normal`
15473 */
15474 "-webkit-align-content"?: Property.AlignContent | undefined;
15475 /**
15476 * The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area.
15477 *
15478 * **Syntax**: `normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]`
15479 *
15480 * **Initial value**: `normal`
15481 */
15482 "-webkit-align-items"?: Property.AlignItems | undefined;
15483 /**
15484 * The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.
15485 *
15486 * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`
15487 *
15488 * **Initial value**: `auto`
15489 */
15490 "-webkit-align-self"?: Property.AlignSelf | undefined;
15491 /**
15492 * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
15493 *
15494 * **Syntax**: `<time>#`
15495 *
15496 * **Initial value**: `0s`
15497 */
15498 "-webkit-animation-delay"?: Property.AnimationDelay<TTime> | undefined;
15499 /**
15500 * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
15501 *
15502 * **Syntax**: `<single-animation-direction>#`
15503 *
15504 * **Initial value**: `normal`
15505 */
15506 "-webkit-animation-direction"?: Property.AnimationDirection | undefined;
15507 /**
15508 * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
15509 *
15510 * **Syntax**: `<time>#`
15511 *
15512 * **Initial value**: `0s`
15513 */
15514 "-webkit-animation-duration"?: Property.AnimationDuration<TTime> | undefined;
15515 /**
15516 * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
15517 *
15518 * **Syntax**: `<single-animation-fill-mode>#`
15519 *
15520 * **Initial value**: `none`
15521 */
15522 "-webkit-animation-fill-mode"?: Property.AnimationFillMode | undefined;
15523 /**
15524 * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
15525 *
15526 * **Syntax**: `<single-animation-iteration-count>#`
15527 *
15528 * **Initial value**: `1`
15529 */
15530 "-webkit-animation-iteration-count"?: Property.AnimationIterationCount | undefined;
15531 /**
15532 * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
15533 *
15534 * **Syntax**: `[ none | <keyframes-name> ]#`
15535 *
15536 * **Initial value**: `none`
15537 */
15538 "-webkit-animation-name"?: Property.AnimationName | undefined;
15539 /**
15540 * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
15541 *
15542 * **Syntax**: `<single-animation-play-state>#`
15543 *
15544 * **Initial value**: `running`
15545 */
15546 "-webkit-animation-play-state"?: Property.AnimationPlayState | undefined;
15547 /**
15548 * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
15549 *
15550 * **Syntax**: `<easing-function>#`
15551 *
15552 * **Initial value**: `ease`
15553 */
15554 "-webkit-animation-timing-function"?: Property.AnimationTimingFunction | undefined;
15555 /**
15556 * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.
15557 *
15558 * **Syntax**: `none | button | button-bevel | caret | checkbox | default-button | inner-spin-button | listbox | listitem | media-controls-background | media-controls-fullscreen-background | media-current-time-display | media-enter-fullscreen-button | media-exit-fullscreen-button | media-fullscreen-button | media-mute-button | media-overlay-play-button | media-play-button | media-seek-back-button | media-seek-forward-button | media-slider | media-sliderthumb | media-time-remaining-display | media-toggle-closed-captions-button | media-volume-slider | media-volume-slider-container | media-volume-sliderthumb | menulist | menulist-button | menulist-text | menulist-textfield | meter | progress-bar | progress-bar-value | push-button | radio | searchfield | searchfield-cancel-button | searchfield-decoration | searchfield-results-button | searchfield-results-decoration | slider-horizontal | slider-vertical | sliderthumb-horizontal | sliderthumb-vertical | square-button | textarea | textfield | -apple-pay-button`
15559 *
15560 * **Initial value**: `none` (but this value is overridden in the user agent CSS)
15561 */
15562 "-webkit-appearance"?: Property.WebkitAppearance | undefined;
15563 /**
15564 * The **`backdrop-filter`** CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything _behind_ the element, to see the effect you must make the element or its background at least partially transparent.
15565 *
15566 * **Syntax**: `none | <filter-function-list>`
15567 *
15568 * **Initial value**: `none`
15569 */
15570 "-webkit-backdrop-filter"?: Property.BackdropFilter | undefined;
15571 /**
15572 * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
15573 *
15574 * **Syntax**: `visible | hidden`
15575 *
15576 * **Initial value**: `visible`
15577 */
15578 "-webkit-backface-visibility"?: Property.BackfaceVisibility | undefined;
15579 /**
15580 * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
15581 *
15582 * **Syntax**: `<box>#`
15583 *
15584 * **Initial value**: `border-box`
15585 */
15586 "-webkit-background-clip"?: Property.BackgroundClip | undefined;
15587 /**
15588 * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
15589 *
15590 * **Syntax**: `<box>#`
15591 *
15592 * **Initial value**: `padding-box`
15593 */
15594 "-webkit-background-origin"?: Property.BackgroundOrigin | undefined;
15595 /**
15596 * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
15597 *
15598 * **Syntax**: `<bg-size>#`
15599 *
15600 * **Initial value**: `auto auto`
15601 */
15602 "-webkit-background-size"?: Property.BackgroundSize<TLength> | undefined;
15603 /**
15604 * **Syntax**: `<color>`
15605 *
15606 * **Initial value**: `currentcolor`
15607 */
15608 "-webkit-border-before-color"?: Property.WebkitBorderBeforeColor | undefined;
15609 /**
15610 * **Syntax**: `<'border-style'>`
15611 *
15612 * **Initial value**: `none`
15613 */
15614 "-webkit-border-before-style"?: Property.WebkitBorderBeforeStyle | undefined;
15615 /**
15616 * **Syntax**: `<'border-width'>`
15617 *
15618 * **Initial value**: `medium`
15619 */
15620 "-webkit-border-before-width"?: Property.WebkitBorderBeforeWidth<TLength> | undefined;
15621 /**
15622 * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
15623 *
15624 * **Syntax**: `<length-percentage>{1,2}`
15625 *
15626 * **Initial value**: `0`
15627 */
15628 "-webkit-border-bottom-left-radius"?: Property.BorderBottomLeftRadius<TLength> | undefined;
15629 /**
15630 * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
15631 *
15632 * **Syntax**: `<length-percentage>{1,2}`
15633 *
15634 * **Initial value**: `0`
15635 */
15636 "-webkit-border-bottom-right-radius"?: Property.BorderBottomRightRadius<TLength> | undefined;
15637 /**
15638 * The **`border-image-slice`** CSS property divides the image specified by `border-image-source` into regions. These regions form the components of an element's border image.
15639 *
15640 * **Syntax**: `<number-percentage>{1,4} && fill?`
15641 *
15642 * **Initial value**: `100%`
15643 */
15644 "-webkit-border-image-slice"?: Property.BorderImageSlice | undefined;
15645 /**
15646 * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
15647 *
15648 * **Syntax**: `<length-percentage>{1,2}`
15649 *
15650 * **Initial value**: `0`
15651 */
15652 "-webkit-border-top-left-radius"?: Property.BorderTopLeftRadius<TLength> | undefined;
15653 /**
15654 * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
15655 *
15656 * **Syntax**: `<length-percentage>{1,2}`
15657 *
15658 * **Initial value**: `0`
15659 */
15660 "-webkit-border-top-right-radius"?: Property.BorderTopRightRadius<TLength> | undefined;
15661 /**
15662 * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
15663 *
15664 * **Syntax**: `slice | clone`
15665 *
15666 * **Initial value**: `slice`
15667 */
15668 "-webkit-box-decoration-break"?: Property.BoxDecorationBreak | undefined;
15669 /**
15670 * The **`-webkit-box-reflect`** CSS property lets you reflect the content of an element in one specific direction.
15671 *
15672 * **Syntax**: `[ above | below | right | left ]? <length>? <image>?`
15673 *
15674 * **Initial value**: `none`
15675 */
15676 "-webkit-box-reflect"?: Property.WebkitBoxReflect<TLength> | undefined;
15677 /**
15678 * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.
15679 *
15680 * **Syntax**: `none | <shadow>#`
15681 *
15682 * **Initial value**: `none`
15683 */
15684 "-webkit-box-shadow"?: Property.BoxShadow | undefined;
15685 /**
15686 * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
15687 *
15688 * **Syntax**: `content-box | border-box`
15689 *
15690 * **Initial value**: `content-box`
15691 */
15692 "-webkit-box-sizing"?: Property.BoxSizing | undefined;
15693 /**
15694 * The `**clip-path**` CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden.
15695 *
15696 * **Syntax**: `<clip-source> | [ <basic-shape> || <geometry-box> ] | none`
15697 *
15698 * **Initial value**: `none`
15699 */
15700 "-webkit-clip-path"?: Property.ClipPath | undefined;
15701 /**
15702 * The **`column-count`** CSS property breaks an element's content into the specified number of columns.
15703 *
15704 * **Syntax**: `<integer> | auto`
15705 *
15706 * **Initial value**: `auto`
15707 */
15708 "-webkit-column-count"?: Property.ColumnCount | undefined;
15709 /**
15710 * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.
15711 *
15712 * **Syntax**: `auto | balance | balance-all`
15713 *
15714 * **Initial value**: `balance`
15715 */
15716 "-webkit-column-fill"?: Property.ColumnFill | undefined;
15717 /**
15718 * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
15719 *
15720 * **Syntax**: `normal | <length-percentage>`
15721 *
15722 * **Initial value**: `normal`
15723 */
15724 "-webkit-column-gap"?: Property.ColumnGap<TLength> | undefined;
15725 /**
15726 * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.
15727 *
15728 * **Syntax**: `<color>`
15729 *
15730 * **Initial value**: `currentcolor`
15731 */
15732 "-webkit-column-rule-color"?: Property.ColumnRuleColor | undefined;
15733 /**
15734 * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.
15735 *
15736 * **Syntax**: `<'border-style'>`
15737 *
15738 * **Initial value**: `none`
15739 */
15740 "-webkit-column-rule-style"?: Property.ColumnRuleStyle | undefined;
15741 /**
15742 * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
15743 *
15744 * **Syntax**: `<'border-width'>`
15745 *
15746 * **Initial value**: `medium`
15747 */
15748 "-webkit-column-rule-width"?: Property.ColumnRuleWidth<TLength> | undefined;
15749 /**
15750 * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`.
15751 *
15752 * **Syntax**: `none | all`
15753 *
15754 * **Initial value**: `none`
15755 */
15756 "-webkit-column-span"?: Property.ColumnSpan | undefined;
15757 /**
15758 * The **`column-width`** CSS property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.
15759 *
15760 * **Syntax**: `<length> | auto`
15761 *
15762 * **Initial value**: `auto`
15763 */
15764 "-webkit-column-width"?: Property.ColumnWidth<TLength> | undefined;
15765 /**
15766 * The **`filter`** CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders.
15767 *
15768 * **Syntax**: `none | <filter-function-list>`
15769 *
15770 * **Initial value**: `none`
15771 */
15772 "-webkit-filter"?: Property.Filter | undefined;
15773 /**
15774 * The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`.
15775 *
15776 * **Syntax**: `content | <'width'>`
15777 *
15778 * **Initial value**: `auto`
15779 */
15780 "-webkit-flex-basis"?: Property.FlexBasis<TLength> | undefined;
15781 /**
15782 * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).
15783 *
15784 * **Syntax**: `row | row-reverse | column | column-reverse`
15785 *
15786 * **Initial value**: `row`
15787 */
15788 "-webkit-flex-direction"?: Property.FlexDirection | undefined;
15789 /**
15790 * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.
15791 *
15792 * **Syntax**: `<number>`
15793 *
15794 * **Initial value**: `0`
15795 */
15796 "-webkit-flex-grow"?: Property.FlexGrow | undefined;
15797 /**
15798 * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of all flex items is larger than the flex container, items shrink to fit according to `flex-shrink`.
15799 *
15800 * **Syntax**: `<number>`
15801 *
15802 * **Initial value**: `1`
15803 */
15804 "-webkit-flex-shrink"?: Property.FlexShrink | undefined;
15805 /**
15806 * The **`flex-wrap`** CSS property sets whether flex items are forced onto one line or can wrap onto multiple lines. If wrapping is allowed, it sets the direction that lines are stacked.
15807 *
15808 * **Syntax**: `nowrap | wrap | wrap-reverse`
15809 *
15810 * **Initial value**: `nowrap`
15811 */
15812 "-webkit-flex-wrap"?: Property.FlexWrap | undefined;
15813 /**
15814 * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
15815 *
15816 * **Syntax**: `normal | <feature-tag-value>#`
15817 *
15818 * **Initial value**: `normal`
15819 */
15820 "-webkit-font-feature-settings"?: Property.FontFeatureSettings | undefined;
15821 /**
15822 * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font.
15823 *
15824 * **Syntax**: `auto | normal | none`
15825 *
15826 * **Initial value**: `auto`
15827 */
15828 "-webkit-font-kerning"?: Property.FontKerning | undefined;
15829 /**
15830 * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.
15831 *
15832 * **Syntax**: `auto | never | always | <absolute-size> | <length>`
15833 *
15834 * **Initial value**: `auto`
15835 */
15836 "-webkit-font-smoothing"?: Property.FontSmooth<TLength> | undefined;
15837 /**
15838 * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text.
15839 *
15840 * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]`
15841 *
15842 * **Initial value**: `normal`
15843 */
15844 "-webkit-font-variant-ligatures"?: Property.FontVariantLigatures | undefined;
15845 /**
15846 * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely, hyphenate at manually-specified points within the text, or let the browser automatically insert hyphens where appropriate.
15847 *
15848 * **Syntax**: `none | manual | auto`
15849 *
15850 * **Initial value**: `manual`
15851 */
15852 "-webkit-hyphens"?: Property.Hyphens | undefined;
15853 /**
15854 * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters.
15855 *
15856 * **Syntax**: `normal | [ <number> <integer>? ]`
15857 *
15858 * **Initial value**: `normal`
15859 */
15860 "-webkit-initial-letter"?: Property.InitialLetter | undefined;
15861 /**
15862 * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.
15863 *
15864 * **Syntax**: `normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]`
15865 *
15866 * **Initial value**: `normal`
15867 */
15868 "-webkit-justify-content"?: Property.JustifyContent | undefined;
15869 /**
15870 * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
15871 *
15872 * **Syntax**: `auto | loose | normal | strict | anywhere`
15873 *
15874 * **Initial value**: `auto`
15875 */
15876 "-webkit-line-break"?: Property.LineBreak | undefined;
15877 /**
15878 * The **`-webkit-line-clamp`** CSS property allows limiting of the contents of a block container to the specified number of lines.
15879 *
15880 * **Syntax**: `none | <integer>`
15881 *
15882 * **Initial value**: `none`
15883 */
15884 "-webkit-line-clamp"?: Property.WebkitLineClamp | undefined;
15885 /**
15886 * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
15887 *
15888 * **Syntax**: `<'margin-left'>`
15889 *
15890 * **Initial value**: `0`
15891 */
15892 "-webkit-margin-end"?: Property.MarginInlineEnd<TLength> | undefined;
15893 /**
15894 * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
15895 *
15896 * **Syntax**: `<'margin-left'>`
15897 *
15898 * **Initial value**: `0`
15899 */
15900 "-webkit-margin-start"?: Property.MarginInlineStart<TLength> | undefined;
15901 /**
15902 * If a `-webkit-mask-image` is specified, `-webkit-mask-attachment` determines whether the mask image's position is fixed within the viewport, or scrolls along with its containing block.
15903 *
15904 * **Syntax**: `<attachment>#`
15905 *
15906 * **Initial value**: `scroll`
15907 */
15908 "-webkit-mask-attachment"?: Property.WebkitMaskAttachment | undefined;
15909 /**
15910 * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box.
15911 *
15912 * **Syntax**: `[ <length> | <number> ]{1,4}`
15913 *
15914 * **Initial value**: `0`
15915 */
15916 "-webkit-mask-box-image-outset"?: Property.MaskBorderOutset<TLength> | undefined;
15917 /**
15918 * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border.
15919 *
15920 * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`
15921 *
15922 * **Initial value**: `stretch`
15923 */
15924 "-webkit-mask-box-image-repeat"?: Property.MaskBorderRepeat | undefined;
15925 /**
15926 * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border.
15927 *
15928 * **Syntax**: `<number-percentage>{1,4} fill?`
15929 *
15930 * **Initial value**: `0`
15931 */
15932 "-webkit-mask-box-image-slice"?: Property.MaskBorderSlice | undefined;
15933 /**
15934 * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border.
15935 *
15936 * **Syntax**: `none | <image>`
15937 *
15938 * **Initial value**: `none`
15939 */
15940 "-webkit-mask-box-image-source"?: Property.MaskBorderSource | undefined;
15941 /**
15942 * The **`mask-border-width`** CSS property sets the width of an element's mask border.
15943 *
15944 * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`
15945 *
15946 * **Initial value**: `auto`
15947 */
15948 "-webkit-mask-box-image-width"?: Property.MaskBorderWidth<TLength> | undefined;
15949 /**
15950 * The **`mask-clip`** CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area.
15951 *
15952 * **Syntax**: `[ <box> | border | padding | content | text ]#`
15953 *
15954 * **Initial value**: `border`
15955 */
15956 "-webkit-mask-clip"?: Property.WebkitMaskClip | undefined;
15957 /**
15958 * The **`-webkit-mask-composite`** property specifies the manner in which multiple mask images applied to the same element are composited with one another. Mask images are composited in the opposite order that they are declared with the `-webkit-mask-image` property.
15959 *
15960 * **Syntax**: `<composite-style>#`
15961 *
15962 * **Initial value**: `source-over`
15963 */
15964 "-webkit-mask-composite"?: Property.WebkitMaskComposite | undefined;
15965 /**
15966 * The **`mask-image`** CSS property sets the image that is used as mask layer for an element.
15967 *
15968 * **Syntax**: `<mask-reference>#`
15969 *
15970 * **Initial value**: `none`
15971 */
15972 "-webkit-mask-image"?: Property.WebkitMaskImage | undefined;
15973 /**
15974 * The **`mask-origin`** CSS property sets the origin of a mask.
15975 *
15976 * **Syntax**: `[ <box> | border | padding | content ]#`
15977 *
15978 * **Initial value**: `padding`
15979 */
15980 "-webkit-mask-origin"?: Property.WebkitMaskOrigin | undefined;
15981 /**
15982 * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image.
15983 *
15984 * **Syntax**: `<position>#`
15985 *
15986 * **Initial value**: `0% 0%`
15987 */
15988 "-webkit-mask-position"?: Property.WebkitMaskPosition<TLength> | undefined;
15989 /**
15990 * The `-webkit-mask-position-x` CSS property sets the initial horizontal position of a mask image.
15991 *
15992 * **Syntax**: `[ <length-percentage> | left | center | right ]#`
15993 *
15994 * **Initial value**: `0%`
15995 */
15996 "-webkit-mask-position-x"?: Property.WebkitMaskPositionX<TLength> | undefined;
15997 /**
15998 * The `-webkit-mask-position-y` CSS property sets the initial vertical position of a mask image.
15999 *
16000 * **Syntax**: `[ <length-percentage> | top | center | bottom ]#`
16001 *
16002 * **Initial value**: `0%`
16003 */
16004 "-webkit-mask-position-y"?: Property.WebkitMaskPositionY<TLength> | undefined;
16005 /**
16006 * The **`mask-repeat`** CSS property sets how mask images are repeated. A mask image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all.
16007 *
16008 * **Syntax**: `<repeat-style>#`
16009 *
16010 * **Initial value**: `repeat`
16011 */
16012 "-webkit-mask-repeat"?: Property.WebkitMaskRepeat | undefined;
16013 /**
16014 * The `-webkit-mask-repeat-x` property specifies whether and how a mask image is repeated (tiled) horizontally.
16015 *
16016 * **Syntax**: `repeat | no-repeat | space | round`
16017 *
16018 * **Initial value**: `repeat`
16019 */
16020 "-webkit-mask-repeat-x"?: Property.WebkitMaskRepeatX | undefined;
16021 /**
16022 * The `-webkit-mask-repeat-y` property sets whether and how a mask image is repeated (tiled) vertically.
16023 *
16024 * **Syntax**: `repeat | no-repeat | space | round`
16025 *
16026 * **Initial value**: `repeat`
16027 */
16028 "-webkit-mask-repeat-y"?: Property.WebkitMaskRepeatY | undefined;
16029 /**
16030 * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio.
16031 *
16032 * **Syntax**: `<bg-size>#`
16033 *
16034 * **Initial value**: `auto auto`
16035 */
16036 "-webkit-mask-size"?: Property.WebkitMaskSize<TLength> | undefined;
16037 /**
16038 * The **`max-inline-size`** CSS property defines the horizontal or vertical maximum size of an element's block, depending on its writing mode. It corresponds to either the `max-width` or the `max-height` property, depending on the value of `writing-mode`.
16039 *
16040 * **Syntax**: `<'max-width'>`
16041 *
16042 * **Initial value**: `0`
16043 */
16044 "-webkit-max-inline-size"?: Property.MaxInlineSize<TLength> | undefined;
16045 /**
16046 * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.
16047 *
16048 * **Syntax**: `<integer>`
16049 *
16050 * **Initial value**: `0`
16051 */
16052 "-webkit-order"?: Property.Order | undefined;
16053 /**
16054 * The `-webkit-overflow-scrolling` CSS property controls whether or not touch devices use momentum-based scrolling for a given element.
16055 *
16056 * **Syntax**: `auto | touch`
16057 *
16058 * **Initial value**: `auto`
16059 */
16060 "-webkit-overflow-scrolling"?: Property.WebkitOverflowScrolling | undefined;
16061 /**
16062 * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
16063 *
16064 * **Syntax**: `<'padding-left'>`
16065 *
16066 * **Initial value**: `0`
16067 */
16068 "-webkit-padding-end"?: Property.PaddingInlineEnd<TLength> | undefined;
16069 /**
16070 * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
16071 *
16072 * **Syntax**: `<'padding-left'>`
16073 *
16074 * **Initial value**: `0`
16075 */
16076 "-webkit-padding-start"?: Property.PaddingInlineStart<TLength> | undefined;
16077 /**
16078 * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
16079 *
16080 * **Syntax**: `none | <length>`
16081 *
16082 * **Initial value**: `none`
16083 */
16084 "-webkit-perspective"?: Property.Perspective<TLength> | undefined;
16085 /**
16086 * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
16087 *
16088 * **Syntax**: `<position>`
16089 *
16090 * **Initial value**: `50% 50%`
16091 */
16092 "-webkit-perspective-origin"?: Property.PerspectiveOrigin<TLength> | undefined;
16093 /**
16094 * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.
16095 *
16096 * **Syntax**: `economy | exact`
16097 *
16098 * **Initial value**: `economy`
16099 */
16100 "-webkit-print-color-adjust"?: Property.ColorAdjust | undefined;
16101 /**
16102 * The `**ruby-position**` CSS property defines the position of a ruby element relatives to its base element. It can be position over the element (`over`), under it (`under`), or between the characters, on their right side (`inter-character`).
16103 *
16104 * **Syntax**: `[ alternate || [ over | under ] ] | inter-character`
16105 *
16106 * **Initial value**: `alternate`
16107 */
16108 "-webkit-ruby-position"?: Property.RubyPosition | undefined;
16109 /**
16110 * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.
16111 *
16112 * **Syntax**: `none | [ x | y | block | inline | both ] [ mandatory | proximity ]?`
16113 *
16114 * **Initial value**: `none`
16115 */
16116 "-webkit-scroll-snap-type"?: Property.ScrollSnapType | undefined;
16117 /**
16118 * The **`shape-margin`** CSS property sets a margin for a CSS shape created using `shape-outside`.
16119 *
16120 * **Syntax**: `<length-percentage>`
16121 *
16122 * **Initial value**: `0`
16123 */
16124 "-webkit-shape-margin"?: Property.ShapeMargin<TLength> | undefined;
16125 /**
16126 * **`-webkit-tap-highlight-color`** is a non-standard CSS property that sets the color of the highlight that appears over a link while it's being tapped. The highlighting indicates to the user that their tap is being successfully recognized, and indicates which element they're tapping on.
16127 *
16128 * **Syntax**: `<color>`
16129 *
16130 * **Initial value**: `black`
16131 */
16132 "-webkit-tap-highlight-color"?: Property.WebkitTapHighlightColor | undefined;
16133 /**
16134 * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.
16135 *
16136 * **Syntax**: `none | all | [ digits <integer>? ]`
16137 *
16138 * **Initial value**: `none`
16139 */
16140 "-webkit-text-combine"?: Property.TextCombineUpright | undefined;
16141 /**
16142 * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
16143 *
16144 * **Syntax**: `<color>`
16145 *
16146 * **Initial value**: `currentcolor`
16147 */
16148 "-webkit-text-decoration-color"?: Property.TextDecorationColor | undefined;
16149 /**
16150 * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
16151 *
16152 * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
16153 *
16154 * **Initial value**: `none`
16155 */
16156 "-webkit-text-decoration-line"?: Property.TextDecorationLine | undefined;
16157 /**
16158 * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors.
16159 *
16160 * **Syntax**: `none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]`
16161 *
16162 * **Initial value**: `objects`
16163 */
16164 "-webkit-text-decoration-skip"?: Property.TextDecorationSkip | undefined;
16165 /**
16166 * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
16167 *
16168 * **Syntax**: `solid | double | dotted | dashed | wavy`
16169 *
16170 * **Initial value**: `solid`
16171 */
16172 "-webkit-text-decoration-style"?: Property.TextDecorationStyle | undefined;
16173 /**
16174 * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand.
16175 *
16176 * **Syntax**: `<color>`
16177 *
16178 * **Initial value**: `currentcolor`
16179 */
16180 "-webkit-text-emphasis-color"?: Property.TextEmphasisColor | undefined;
16181 /**
16182 * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased.
16183 *
16184 * **Syntax**: `[ over | under ] && [ right | left ]`
16185 *
16186 * **Initial value**: `over right`
16187 */
16188 "-webkit-text-emphasis-position"?: Property.TextEmphasisPosition | undefined;
16189 /**
16190 * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand.
16191 *
16192 * **Syntax**: `none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>`
16193 *
16194 * **Initial value**: `none`
16195 */
16196 "-webkit-text-emphasis-style"?: Property.TextEmphasisStyle | undefined;
16197 /**
16198 * The **`-webkit-text-fill-color`** CSS property specifies the fill color of characters of text. If this property is not set, the value of the `color` property is used.
16199 *
16200 * **Syntax**: `<color>`
16201 *
16202 * **Initial value**: `currentcolor`
16203 */
16204 "-webkit-text-fill-color"?: Property.WebkitTextFillColor | undefined;
16205 /**
16206 * The **`text-orientation`** CSS property sets the orientation of the text characters in a line. It only affects text in vertical mode (when `writing-mode` is not `horizontal-tb`). It is useful for controlling the display of languages that use vertical script, and also for making vertical table headers.
16207 *
16208 * **Syntax**: `mixed | upright | sideways`
16209 *
16210 * **Initial value**: `mixed`
16211 */
16212 "-webkit-text-orientation"?: Property.TextOrientation | undefined;
16213 /**
16214 * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
16215 *
16216 * **Syntax**: `none | auto | <percentage>`
16217 *
16218 * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
16219 */
16220 "-webkit-text-size-adjust"?: Property.TextSizeAdjust | undefined;
16221 /**
16222 * The **`-webkit-text-stroke-color`** CSS property specifies the stroke color of characters of text. If this property is not set, the value of the `color` property is used.
16223 *
16224 * **Syntax**: `<color>`
16225 *
16226 * **Initial value**: `currentcolor`
16227 */
16228 "-webkit-text-stroke-color"?: Property.WebkitTextStrokeColor | undefined;
16229 /**
16230 * The **`-webkit-text-stroke-width`** CSS property specifies the width of the stroke for text.
16231 *
16232 * **Syntax**: `<length>`
16233 *
16234 * **Initial value**: `0`
16235 */
16236 "-webkit-text-stroke-width"?: Property.WebkitTextStrokeWidth<TLength> | undefined;
16237 /**
16238 * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value.
16239 *
16240 * **Syntax**: `auto | from-font | [ under || [ left | right ] ]`
16241 *
16242 * **Initial value**: `auto`
16243 */
16244 "-webkit-text-underline-position"?: Property.TextUnderlinePosition | undefined;
16245 /**
16246 * The `-webkit-touch-callout` CSS property controls the display of the default callout shown when you touch and hold a touch target.
16247 *
16248 * **Syntax**: `default | none`
16249 *
16250 * **Initial value**: `default`
16251 */
16252 "-webkit-touch-callout"?: Property.WebkitTouchCallout | undefined;
16253 /**
16254 * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
16255 *
16256 * **Syntax**: `none | <transform-list>`
16257 *
16258 * **Initial value**: `none`
16259 */
16260 "-webkit-transform"?: Property.Transform | undefined;
16261 /**
16262 * The **`transform-origin`** CSS property sets the origin for an element's transformations.
16263 *
16264 * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
16265 *
16266 * **Initial value**: `50% 50% 0`
16267 */
16268 "-webkit-transform-origin"?: Property.TransformOrigin<TLength> | undefined;
16269 /**
16270 * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
16271 *
16272 * **Syntax**: `flat | preserve-3d`
16273 *
16274 * **Initial value**: `flat`
16275 */
16276 "-webkit-transform-style"?: Property.TransformStyle | undefined;
16277 /**
16278 * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
16279 *
16280 * **Syntax**: `<time>#`
16281 *
16282 * **Initial value**: `0s`
16283 */
16284 "-webkit-transition-delay"?: Property.TransitionDelay<TTime> | undefined;
16285 /**
16286 * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
16287 *
16288 * **Syntax**: `<time>#`
16289 *
16290 * **Initial value**: `0s`
16291 */
16292 "-webkit-transition-duration"?: Property.TransitionDuration<TTime> | undefined;
16293 /**
16294 * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
16295 *
16296 * **Syntax**: `none | <single-transition-property>#`
16297 *
16298 * **Initial value**: all
16299 */
16300 "-webkit-transition-property"?: Property.TransitionProperty | undefined;
16301 /**
16302 * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
16303 *
16304 * **Syntax**: `<easing-function>#`
16305 *
16306 * **Initial value**: `ease`
16307 */
16308 "-webkit-transition-timing-function"?: Property.TransitionTimingFunction | undefined;
16309 /**
16310 * **Syntax**: `read-only | read-write | read-write-plaintext-only`
16311 *
16312 * **Initial value**: `read-only`
16313 */
16314 "-webkit-user-modify"?: Property.WebkitUserModify | undefined;
16315 /**
16316 * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
16317 *
16318 * **Syntax**: `auto | text | none | contain | all`
16319 *
16320 * **Initial value**: `auto`
16321 */
16322 "-webkit-user-select"?: Property.UserSelect | undefined;
16323 /**
16324 * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (`html` element for HTML documents).
16325 *
16326 * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`
16327 *
16328 * **Initial value**: `horizontal-tb`
16329 */
16330 "-webkit-writing-mode"?: Property.WritingMode | undefined;
16331}
16332export interface VendorShorthandPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
16333 /**
16334 * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
16335 *
16336 * **Syntax**: `<single-animation>#`
16337 */
16338 "-moz-animation"?: Property.Animation<TTime> | undefined;
16339 /**
16340 * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
16341 *
16342 * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
16343 */
16344 "-moz-border-image"?: Property.BorderImage | undefined;
16345 /**
16346 * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
16347 *
16348 * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`
16349 */
16350 "-moz-column-rule"?: Property.ColumnRule<TLength> | undefined;
16351 /**
16352 * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
16353 *
16354 * **Syntax**: `<'column-width'> || <'column-count'>`
16355 */
16356 "-moz-columns"?: Property.Columns<TLength> | undefined;
16357 /**
16358 * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
16359 *
16360 * **Syntax**: `<single-transition>#`
16361 */
16362 "-moz-transition"?: Property.Transition<TTime> | undefined;
16363 /**
16364 * The **`-ms-content-zoom-limit`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-content-zoom-limit-min` and `-ms-content-zoom-limit-max` properties.
16365 *
16366 * **Syntax**: `<'-ms-content-zoom-limit-min'> <'-ms-content-zoom-limit-max'>`
16367 */
16368 "-ms-content-zoom-limit"?: Property.MsContentZoomLimit | undefined;
16369 /**
16370 * The **`-ms-content-zoom-snap`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-content-zoom-snap-type` and `-ms-content-zoom-snap-points` properties.
16371 *
16372 * **Syntax**: `<'-ms-content-zoom-snap-type'> || <'-ms-content-zoom-snap-points'>`
16373 */
16374 "-ms-content-zoom-snap"?: Property.MsContentZoomSnap | undefined;
16375 /**
16376 * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
16377 *
16378 * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
16379 */
16380 "-ms-flex"?: Property.Flex<TLength> | undefined;
16381 /**
16382 * The **\-ms-scroll-limit** CSS property is a Microsoft extension that specifies values for the `-ms-scroll-limit-x-min`, `-ms-scroll-limit-y-min`, `-ms-scroll-limit-x-max`, and `-ms-scroll-limit-y-max` properties.
16383 *
16384 * **Syntax**: `<'-ms-scroll-limit-x-min'> <'-ms-scroll-limit-y-min'> <'-ms-scroll-limit-x-max'> <'-ms-scroll-limit-y-max'>`
16385 */
16386 "-ms-scroll-limit"?: Property.MsScrollLimit | undefined;
16387 /**
16388 * The **`-ms-scroll-snap-x`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-scroll-snap-type` and `-ms-scroll-snap-points-x` properties.
16389 *
16390 * **Syntax**: `<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-x'>`
16391 */
16392 "-ms-scroll-snap-x"?: Property.MsScrollSnapX | undefined;
16393 /**
16394 * The **`-ms-scroll-snap-x`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-scroll-snap-type` and `-ms-scroll-snap-points-y` properties.
16395 *
16396 * **Syntax**: `<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-y'>`
16397 */
16398 "-ms-scroll-snap-y"?: Property.MsScrollSnapY | undefined;
16399 /**
16400 * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
16401 *
16402 * **Syntax**: `<single-transition>#`
16403 */
16404 "-ms-transition"?: Property.Transition<TTime> | undefined;
16405 /**
16406 * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
16407 *
16408 * **Syntax**: `<single-animation>#`
16409 */
16410 "-webkit-animation"?: Property.Animation<TTime> | undefined;
16411 /**
16412 * The **`-webkit-border-before`** CSS property is a shorthand property for setting the individual logical block start border property values in a single place in the style sheet.
16413 *
16414 * **Syntax**: `<'border-width'> || <'border-style'> || <color>`
16415 */
16416 "-webkit-border-before"?: Property.WebkitBorderBefore<TLength> | undefined;
16417 /**
16418 * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
16419 *
16420 * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
16421 */
16422 "-webkit-border-image"?: Property.BorderImage | undefined;
16423 /**
16424 * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
16425 *
16426 * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`
16427 */
16428 "-webkit-border-radius"?: Property.BorderRadius<TLength> | undefined;
16429 /**
16430 * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
16431 *
16432 * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`
16433 */
16434 "-webkit-column-rule"?: Property.ColumnRule<TLength> | undefined;
16435 /**
16436 * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
16437 *
16438 * **Syntax**: `<'column-width'> || <'column-count'>`
16439 */
16440 "-webkit-columns"?: Property.Columns<TLength> | undefined;
16441 /**
16442 * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
16443 *
16444 * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
16445 */
16446 "-webkit-flex"?: Property.Flex<TLength> | undefined;
16447 /**
16448 * The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.
16449 *
16450 * **Syntax**: `<'flex-direction'> || <'flex-wrap'>`
16451 */
16452 "-webkit-flex-flow"?: Property.FlexFlow | undefined;
16453 /**
16454 * The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.
16455 *
16456 * **Syntax**: `[ <mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || [ <box> | border | padding | content | text ] || [ <box> | border | padding | content ] ]#`
16457 */
16458 "-webkit-mask"?: Property.WebkitMask<TLength> | undefined;
16459 /**
16460 * The **`mask-border`** CSS shorthand property lets you create a mask along the edge of an element's border.
16461 *
16462 * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`
16463 */
16464 "-webkit-mask-box-image"?: Property.MaskBorder | undefined;
16465 /**
16466 * The **`text-emphasis`** CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for `text-emphasis-style` and `text-emphasis-color`.
16467 *
16468 * **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`
16469 */
16470 "-webkit-text-emphasis"?: Property.TextEmphasis | undefined;
16471 /**
16472 * The **`-webkit-text-stroke`** CSS property specifies the width and color of strokes for text characters. This is a shorthand property for the longhand properties `-webkit-text-stroke-width` and `-webkit-text-stroke-color`.
16473 *
16474 * **Syntax**: `<length> || <color>`
16475 */
16476 "-webkit-text-stroke"?: Property.WebkitTextStroke<TLength> | undefined;
16477 /**
16478 * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
16479 *
16480 * **Syntax**: `<single-transition>#`
16481 */
16482 "-webkit-transition"?: Property.Transition<TTime> | undefined;
16483}
16484export interface VendorPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> extends VendorLonghandPropertiesHyphen<TLength, TTime>, VendorShorthandPropertiesHyphen<TLength, TTime> {
16485}
16486export interface ObsoletePropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
16487 /**
16488 * In combination with `elevation`, the **`azimuth`** CSS property enables different audio sources to be positioned spatially for aural presentation. This is important in that it provides a natural way to tell several voices apart, as each can be positioned to originate at a different location on the sound stage. Stereo output produce a lateral sound stage, while binaural headphones and multi-speaker setups allow for a fully three-dimensional stage.
16489 *
16490 * **Syntax**: `<angle> | [ [ left-side | far-left | left | center-left | center | center-right | right | far-right | right-side ] || behind ] | leftwards | rightwards`
16491 *
16492 * **Initial value**: `center`
16493 *
16494 * @deprecated
16495 */
16496 azimuth?: Property.Azimuth | undefined;
16497 /**
16498 * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
16499 *
16500 * **Syntax**: `start | center | end | baseline | stretch`
16501 *
16502 * **Initial value**: `stretch`
16503 *
16504 * @deprecated
16505 */
16506 "box-align"?: Property.BoxAlign | undefined;
16507 /**
16508 * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
16509 *
16510 * **Syntax**: `normal | reverse | inherit`
16511 *
16512 * **Initial value**: `normal`
16513 *
16514 * @deprecated
16515 */
16516 "box-direction"?: Property.BoxDirection | undefined;
16517 /**
16518 * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
16519 *
16520 * **Syntax**: `<number>`
16521 *
16522 * **Initial value**: `0`
16523 *
16524 * @deprecated
16525 */
16526 "box-flex"?: Property.BoxFlex | undefined;
16527 /**
16528 * The **`box-flex-group`** CSS property assigns the flexbox's child elements to a flex group.
16529 *
16530 * **Syntax**: `<integer>`
16531 *
16532 * **Initial value**: `1`
16533 *
16534 * @deprecated
16535 */
16536 "box-flex-group"?: Property.BoxFlexGroup | undefined;
16537 /**
16538 * The **`box-lines`** CSS property determines whether the box may have a single or multiple lines (rows for horizontally oriented boxes, columns for vertically oriented boxes).
16539 *
16540 * **Syntax**: `single | multiple`
16541 *
16542 * **Initial value**: `single`
16543 *
16544 * @deprecated
16545 */
16546 "box-lines"?: Property.BoxLines | undefined;
16547 /**
16548 * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
16549 *
16550 * **Syntax**: `<integer>`
16551 *
16552 * **Initial value**: `1`
16553 *
16554 * @deprecated
16555 */
16556 "box-ordinal-group"?: Property.BoxOrdinalGroup | undefined;
16557 /**
16558 * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
16559 *
16560 * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
16561 *
16562 * **Initial value**: `inline-axis` (`horizontal` in XUL)
16563 *
16564 * @deprecated
16565 */
16566 "box-orient"?: Property.BoxOrient | undefined;
16567 /**
16568 * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
16569 *
16570 * **Syntax**: `start | center | end | justify`
16571 *
16572 * **Initial value**: `start`
16573 *
16574 * @deprecated
16575 */
16576 "box-pack"?: Property.BoxPack | undefined;
16577 /**
16578 * The **`clip`** CSS property defines a visible portion of an element. The `clip` property applies only to absolutely positioned elements — that is, elements with `position:absolute` or `position:fixed`.
16579 *
16580 * **Syntax**: `<shape> | auto`
16581 *
16582 * **Initial value**: `auto`
16583 *
16584 * @deprecated
16585 */
16586 clip?: Property.Clip | undefined;
16587 /**
16588 * The **`font-variant-alternates`** CSS property controls the usage of alternate glyphs. These alternate glyphs may be referenced by alternative names defined in `@font-feature-values`.
16589 *
16590 * **Syntax**: `normal | [ stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) ]`
16591 *
16592 * **Initial value**: `normal`
16593 *
16594 * @deprecated
16595 */
16596 "font-variant-alternates"?: Property.FontVariantAlternates | undefined;
16597 /**
16598 * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
16599 *
16600 * **Syntax**: `<length-percentage>`
16601 *
16602 * **Initial value**: `0`
16603 *
16604 * @deprecated
16605 */
16606 "grid-column-gap"?: Property.GridColumnGap<TLength> | undefined;
16607 /**
16608 * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`.
16609 *
16610 * **Syntax**: `<'grid-row-gap'> <'grid-column-gap'>?`
16611 *
16612 * @deprecated
16613 */
16614 "grid-gap"?: Property.GridGap<TLength> | undefined;
16615 /**
16616 * The **`row-gap`** CSS property sets the size of the gap (gutter) between an element's grid rows.
16617 *
16618 * **Syntax**: `<length-percentage>`
16619 *
16620 * **Initial value**: `0`
16621 *
16622 * @deprecated
16623 */
16624 "grid-row-gap"?: Property.GridRowGap<TLength> | undefined;
16625 /**
16626 * The **`ime-mode`** CSS property controls the state of the input method editor (IME) for text fields. This property is obsolete.
16627 *
16628 * **Syntax**: `auto | normal | active | inactive | disabled`
16629 *
16630 * **Initial value**: `auto`
16631 *
16632 * @deprecated
16633 */
16634 "ime-mode"?: Property.ImeMode | undefined;
16635 /**
16636 * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
16637 *
16638 * **Syntax**: `<'top'>{1,2}`
16639 *
16640 * **Initial value**: `auto`
16641 *
16642 * @deprecated
16643 */
16644 "offset-block"?: Property.InsetBlock<TLength> | undefined;
16645 /**
16646 * The **`inset-block-end`** CSS property defines the logical block end offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
16647 *
16648 * **Syntax**: `<'top'>`
16649 *
16650 * **Initial value**: `auto`
16651 *
16652 * @deprecated
16653 */
16654 "offset-block-end"?: Property.InsetBlockEnd<TLength> | undefined;
16655 /**
16656 * The **`inset-block-start`** CSS property defines the logical block start offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
16657 *
16658 * **Syntax**: `<'top'>`
16659 *
16660 * **Initial value**: `auto`
16661 *
16662 * @deprecated
16663 */
16664 "offset-block-start"?: Property.InsetBlockStart<TLength> | undefined;
16665 /**
16666 * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
16667 *
16668 * **Syntax**: `<'top'>{1,2}`
16669 *
16670 * **Initial value**: `auto`
16671 *
16672 * @deprecated
16673 */
16674 "offset-inline"?: Property.InsetInline<TLength> | undefined;
16675 /**
16676 * The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
16677 *
16678 * **Syntax**: `<'top'>`
16679 *
16680 * **Initial value**: `auto`
16681 *
16682 * @deprecated
16683 */
16684 "offset-inline-end"?: Property.InsetInlineEnd<TLength> | undefined;
16685 /**
16686 * The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
16687 *
16688 * **Syntax**: `<'top'>`
16689 *
16690 * **Initial value**: `auto`
16691 *
16692 * @deprecated
16693 */
16694 "offset-inline-start"?: Property.InsetInlineStart<TLength> | undefined;
16695 /**
16696 * The **`scroll-snap-coordinate`** CSS property defines the x and y coordinate positions within an element that will align with its nearest ancestor scroll container's `scroll-snap-destination` for each respective axis.
16697 *
16698 * **Syntax**: `none | <position>#`
16699 *
16700 * **Initial value**: `none`
16701 *
16702 * @deprecated
16703 */
16704 "scroll-snap-coordinate"?: Property.ScrollSnapCoordinate<TLength> | undefined;
16705 /**
16706 * The **`scroll-snap-destination`** CSS property defines the position in x and y coordinates within the scroll container's visual viewport which element snap points align with.
16707 *
16708 * **Syntax**: `<position>`
16709 *
16710 * **Initial value**: `0px 0px`
16711 *
16712 * @deprecated
16713 */
16714 "scroll-snap-destination"?: Property.ScrollSnapDestination<TLength> | undefined;
16715 /**
16716 * The **`scroll-snap-points-x`** CSS property defines the horizontal positioning of snap points within the content of the scroll container they are applied to.
16717 *
16718 * **Syntax**: `none | repeat( <length-percentage> )`
16719 *
16720 * **Initial value**: `none`
16721 *
16722 * @deprecated
16723 */
16724 "scroll-snap-points-x"?: Property.ScrollSnapPointsX | undefined;
16725 /**
16726 * The **`scroll-snap-points-y`** CSS property defines the vertical positioning of snap points within the content of the scroll container they are applied to.
16727 *
16728 * **Syntax**: `none | repeat( <length-percentage> )`
16729 *
16730 * **Initial value**: `none`
16731 *
16732 * @deprecated
16733 */
16734 "scroll-snap-points-y"?: Property.ScrollSnapPointsY | undefined;
16735 /**
16736 * The **`scroll-snap-type-x`** CSS property defines how strictly snap points are enforced on the horizontal axis of the scroll container in case there is one.
16737 *
16738 * **Syntax**: `none | mandatory | proximity`
16739 *
16740 * **Initial value**: `none`
16741 *
16742 * @deprecated
16743 */
16744 "scroll-snap-type-x"?: Property.ScrollSnapTypeX | undefined;
16745 /**
16746 * The **`scroll-snap-type-y`** CSS property defines how strictly snap points are enforced on the vertical axis of the scroll container in case there is one.
16747 *
16748 * **Syntax**: `none | mandatory | proximity`
16749 *
16750 * **Initial value**: `none`
16751 *
16752 * @deprecated
16753 */
16754 "scroll-snap-type-y"?: Property.ScrollSnapTypeY | undefined;
16755 /**
16756 * The **`-ms-scrollbar-track-color`** CSS property is a Microsoft extension that specifies the color of the track element of a scrollbar.
16757 *
16758 * **Syntax**: `<color>`
16759 *
16760 * **Initial value**: `Scrollbar`
16761 *
16762 * @deprecated
16763 */
16764 "scrollbar-track-color"?: Property.MsScrollbarTrackColor | undefined;
16765 /**
16766 * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
16767 *
16768 * **Syntax**: `start | center | end | baseline | stretch`
16769 *
16770 * **Initial value**: `stretch`
16771 *
16772 * @deprecated
16773 */
16774 "-khtml-box-align"?: Property.BoxAlign | undefined;
16775 /**
16776 * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
16777 *
16778 * **Syntax**: `normal | reverse | inherit`
16779 *
16780 * **Initial value**: `normal`
16781 *
16782 * @deprecated
16783 */
16784 "-khtml-box-direction"?: Property.BoxDirection | undefined;
16785 /**
16786 * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
16787 *
16788 * **Syntax**: `<number>`
16789 *
16790 * **Initial value**: `0`
16791 *
16792 * @deprecated
16793 */
16794 "-khtml-box-flex"?: Property.BoxFlex | undefined;
16795 /**
16796 * The **`box-flex-group`** CSS property assigns the flexbox's child elements to a flex group.
16797 *
16798 * **Syntax**: `<integer>`
16799 *
16800 * **Initial value**: `1`
16801 *
16802 * @deprecated
16803 */
16804 "-khtml-box-flex-group"?: Property.BoxFlexGroup | undefined;
16805 /**
16806 * The **`box-lines`** CSS property determines whether the box may have a single or multiple lines (rows for horizontally oriented boxes, columns for vertically oriented boxes).
16807 *
16808 * **Syntax**: `single | multiple`
16809 *
16810 * **Initial value**: `single`
16811 *
16812 * @deprecated
16813 */
16814 "-khtml-box-lines"?: Property.BoxLines | undefined;
16815 /**
16816 * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
16817 *
16818 * **Syntax**: `<integer>`
16819 *
16820 * **Initial value**: `1`
16821 *
16822 * @deprecated
16823 */
16824 "-khtml-box-ordinal-group"?: Property.BoxOrdinalGroup | undefined;
16825 /**
16826 * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
16827 *
16828 * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
16829 *
16830 * **Initial value**: `inline-axis` (`horizontal` in XUL)
16831 *
16832 * @deprecated
16833 */
16834 "-khtml-box-orient"?: Property.BoxOrient | undefined;
16835 /**
16836 * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
16837 *
16838 * **Syntax**: `start | center | end | justify`
16839 *
16840 * **Initial value**: `start`
16841 *
16842 * @deprecated
16843 */
16844 "-khtml-box-pack"?: Property.BoxPack | undefined;
16845 /**
16846 * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
16847 *
16848 * **Syntax**: `auto | loose | normal | strict | anywhere`
16849 *
16850 * **Initial value**: `auto`
16851 *
16852 * @deprecated
16853 */
16854 "-khtml-line-break"?: Property.LineBreak | undefined;
16855 /**
16856 * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.
16857 *
16858 * **Syntax**: `<alpha-value>`
16859 *
16860 * **Initial value**: `1.0`
16861 *
16862 * @deprecated
16863 */
16864 "-khtml-opacity"?: Property.Opacity | undefined;
16865 /**
16866 * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes.
16867 *
16868 * **Syntax**: `auto | text | none | contain | all`
16869 *
16870 * **Initial value**: `auto`
16871 *
16872 * @deprecated
16873 */
16874 "-khtml-user-select"?: Property.UserSelect | undefined;
16875 /**
16876 * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
16877 *
16878 * **Syntax**: `<box>#`
16879 *
16880 * **Initial value**: `border-box`
16881 *
16882 * @deprecated
16883 */
16884 "-moz-background-clip"?: Property.BackgroundClip | undefined;
16885 /**
16886 * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
16887 *
16888 * **Syntax**: `slice | clone`
16889 *
16890 * **Initial value**: `slice`
16891 *
16892 * @deprecated
16893 */
16894 "-moz-background-inline-policy"?: Property.BoxDecorationBreak | undefined;
16895 /**
16896 * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
16897 *
16898 * **Syntax**: `<box>#`
16899 *
16900 * **Initial value**: `padding-box`
16901 *
16902 * @deprecated
16903 */
16904 "-moz-background-origin"?: Property.BackgroundOrigin | undefined;
16905 /**
16906 * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
16907 *
16908 * **Syntax**: `<bg-size>#`
16909 *
16910 * **Initial value**: `auto auto`
16911 *
16912 * @deprecated
16913 */
16914 "-moz-background-size"?: Property.BackgroundSize<TLength> | undefined;
16915 /**
16916 * The **`-moz-binding`** CSS property is used by Mozilla-based applications to attach an XBL binding to a DOM element.
16917 *
16918 * **Syntax**: `<url> | none`
16919 *
16920 * **Initial value**: `none`
16921 *
16922 * @deprecated
16923 */
16924 "-moz-binding"?: Property.MozBinding | undefined;
16925 /**
16926 * The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
16927 *
16928 * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`
16929 *
16930 * @deprecated
16931 */
16932 "-moz-border-radius"?: Property.BorderRadius<TLength> | undefined;
16933 /**
16934 * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
16935 *
16936 * **Syntax**: `<length-percentage>{1,2}`
16937 *
16938 * **Initial value**: `0`
16939 *
16940 * @deprecated
16941 */
16942 "-moz-border-radius-bottomleft"?: Property.BorderBottomLeftRadius<TLength> | undefined;
16943 /**
16944 * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
16945 *
16946 * **Syntax**: `<length-percentage>{1,2}`
16947 *
16948 * **Initial value**: `0`
16949 *
16950 * @deprecated
16951 */
16952 "-moz-border-radius-bottomright"?: Property.BorderBottomRightRadius<TLength> | undefined;
16953 /**
16954 * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
16955 *
16956 * **Syntax**: `<length-percentage>{1,2}`
16957 *
16958 * **Initial value**: `0`
16959 *
16960 * @deprecated
16961 */
16962 "-moz-border-radius-topleft"?: Property.BorderTopLeftRadius<TLength> | undefined;
16963 /**
16964 * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
16965 *
16966 * **Syntax**: `<length-percentage>{1,2}`
16967 *
16968 * **Initial value**: `0`
16969 *
16970 * @deprecated
16971 */
16972 "-moz-border-radius-topright"?: Property.BorderTopRightRadius<TLength> | undefined;
16973 /**
16974 * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
16975 *
16976 * **Syntax**: `start | center | end | baseline | stretch`
16977 *
16978 * **Initial value**: `stretch`
16979 *
16980 * @deprecated
16981 */
16982 "-moz-box-align"?: Property.BoxAlign | undefined;
16983 /**
16984 * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
16985 *
16986 * **Syntax**: `normal | reverse | inherit`
16987 *
16988 * **Initial value**: `normal`
16989 *
16990 * @deprecated
16991 */
16992 "-moz-box-direction"?: Property.BoxDirection | undefined;
16993 /**
16994 * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
16995 *
16996 * **Syntax**: `<number>`
16997 *
16998 * **Initial value**: `0`
16999 *
17000 * @deprecated
17001 */
17002 "-moz-box-flex"?: Property.BoxFlex | undefined;
17003 /**
17004 * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
17005 *
17006 * **Syntax**: `<integer>`
17007 *
17008 * **Initial value**: `1`
17009 *
17010 * @deprecated
17011 */
17012 "-moz-box-ordinal-group"?: Property.BoxOrdinalGroup | undefined;
17013 /**
17014 * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
17015 *
17016 * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
17017 *
17018 * **Initial value**: `inline-axis` (`horizontal` in XUL)
17019 *
17020 * @deprecated
17021 */
17022 "-moz-box-orient"?: Property.BoxOrient | undefined;
17023 /**
17024 * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
17025 *
17026 * **Syntax**: `start | center | end | justify`
17027 *
17028 * **Initial value**: `start`
17029 *
17030 * @deprecated
17031 */
17032 "-moz-box-pack"?: Property.BoxPack | undefined;
17033 /**
17034 * The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.
17035 *
17036 * **Syntax**: `none | <shadow>#`
17037 *
17038 * **Initial value**: `none`
17039 *
17040 * @deprecated
17041 */
17042 "-moz-box-shadow"?: Property.BoxShadow | undefined;
17043 /**
17044 * The non-standard **`-moz-float-edge`** CSS property specifies whether the height and width properties of the element include the margin, border, or padding thickness.
17045 *
17046 * **Syntax**: `border-box | content-box | margin-box | padding-box`
17047 *
17048 * **Initial value**: `content-box`
17049 *
17050 * @deprecated
17051 */
17052 "-moz-float-edge"?: Property.MozFloatEdge | undefined;
17053 /**
17054 * The **`-moz-force-broken-image-icon`** extended CSS property can be used to force the broken image icon to be shown even when a broken image has an `alt` attribute.
17055 *
17056 * **Syntax**: `0 | 1`
17057 *
17058 * **Initial value**: `0`
17059 *
17060 * @deprecated
17061 */
17062 "-moz-force-broken-image-icon"?: Property.MozForceBrokenImageIcon | undefined;
17063 /**
17064 * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.
17065 *
17066 * **Syntax**: `<alpha-value>`
17067 *
17068 * **Initial value**: `1.0`
17069 *
17070 * @deprecated
17071 */
17072 "-moz-opacity"?: Property.Opacity | undefined;
17073 /**
17074 * The **`outline`** CSS shorthand property set all the outline properties in a single declaration.
17075 *
17076 * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`
17077 *
17078 * @deprecated
17079 */
17080 "-moz-outline"?: Property.Outline<TLength> | undefined;
17081 /**
17082 * The **`outline-color`** CSS property sets the color of an element's outline.
17083 *
17084 * **Syntax**: `<color> | invert`
17085 *
17086 * **Initial value**: `invert`, for browsers supporting it, `currentColor` for the other
17087 *
17088 * @deprecated
17089 */
17090 "-moz-outline-color"?: Property.OutlineColor | undefined;
17091 /**
17092 * In Mozilla applications like Firefox, the **`-moz-outline-radius`** CSS shorthand property can be used to give an element's `outline` rounded corners.
17093 *
17094 * **Syntax**: `<outline-radius>{1,4} [ / <outline-radius>{1,4} ]?`
17095 *
17096 * @deprecated
17097 */
17098 "-moz-outline-radius"?: Property.MozOutlineRadius<TLength> | undefined;
17099 /**
17100 * In Mozilla applications, the **`-moz-outline-radius-bottomleft`** CSS property can be used to round the bottom-left corner of an element's `outline`.
17101 *
17102 * **Syntax**: `<outline-radius>`
17103 *
17104 * **Initial value**: `0`
17105 *
17106 * @deprecated
17107 */
17108 "-moz-outline-radius-bottomleft"?: Property.MozOutlineRadiusBottomleft<TLength> | undefined;
17109 /**
17110 * In Mozilla applications, the **`-moz-outline-radius-bottomright`** CSS property can be used to round the bottom-right corner of an element's `outline`.
17111 *
17112 * **Syntax**: `<outline-radius>`
17113 *
17114 * **Initial value**: `0`
17115 *
17116 * @deprecated
17117 */
17118 "-moz-outline-radius-bottomright"?: Property.MozOutlineRadiusBottomright<TLength> | undefined;
17119 /**
17120 * In Mozilla applications, the **`-moz-outline-radius-topleft`** CSS property can be used to round the top-left corner of an element's `outline`.
17121 *
17122 * **Syntax**: `<outline-radius>`
17123 *
17124 * **Initial value**: `0`
17125 *
17126 * @deprecated
17127 */
17128 "-moz-outline-radius-topleft"?: Property.MozOutlineRadiusTopleft<TLength> | undefined;
17129 /**
17130 * In Mozilla applications, the **`-moz-outline-radius-topright`** CSS property can be used to round the top-right corner of an element's `outline`.
17131 *
17132 * **Syntax**: `<outline-radius>`
17133 *
17134 * **Initial value**: `0`
17135 *
17136 * @deprecated
17137 */
17138 "-moz-outline-radius-topright"?: Property.MozOutlineRadiusTopright<TLength> | undefined;
17139 /**
17140 * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
17141 *
17142 * **Syntax**: `auto | <'border-style'>`
17143 *
17144 * **Initial value**: `none`
17145 *
17146 * @deprecated
17147 */
17148 "-moz-outline-style"?: Property.OutlineStyle | undefined;
17149 /**
17150 * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
17151 *
17152 * **Syntax**: `<line-width>`
17153 *
17154 * **Initial value**: `medium`
17155 *
17156 * @deprecated
17157 */
17158 "-moz-outline-width"?: Property.OutlineWidth<TLength> | undefined;
17159 /**
17160 * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.
17161 *
17162 * **Syntax**: `auto | start | end | left | right | center | justify`
17163 *
17164 * **Initial value**: `auto`
17165 *
17166 * @deprecated
17167 */
17168 "-moz-text-align-last"?: Property.TextAlignLast | undefined;
17169 /**
17170 * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
17171 *
17172 * **Syntax**: `<color>`
17173 *
17174 * **Initial value**: `currentcolor`
17175 *
17176 * @deprecated
17177 */
17178 "-moz-text-decoration-color"?: Property.TextDecorationColor | undefined;
17179 /**
17180 * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
17181 *
17182 * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
17183 *
17184 * **Initial value**: `none`
17185 *
17186 * @deprecated
17187 */
17188 "-moz-text-decoration-line"?: Property.TextDecorationLine | undefined;
17189 /**
17190 * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
17191 *
17192 * **Syntax**: `solid | double | dotted | dashed | wavy`
17193 *
17194 * **Initial value**: `solid`
17195 *
17196 * @deprecated
17197 */
17198 "-moz-text-decoration-style"?: Property.TextDecorationStyle | undefined;
17199 /**
17200 * In Mozilla applications, **`-moz-user-input`** determines if an element will accept user input.
17201 *
17202 * **Syntax**: `auto | none | enabled | disabled`
17203 *
17204 * **Initial value**: `auto`
17205 *
17206 * @deprecated
17207 */
17208 "-moz-user-input"?: Property.MozUserInput | undefined;
17209 /**
17210 * The **`ime-mode`** CSS property controls the state of the input method editor (IME) for text fields. This property is obsolete.
17211 *
17212 * **Syntax**: `auto | normal | active | inactive | disabled`
17213 *
17214 * **Initial value**: `auto`
17215 *
17216 * @deprecated
17217 */
17218 "-ms-ime-mode"?: Property.ImeMode | undefined;
17219 /**
17220 * The **`-ms-scrollbar-track-color`** CSS property is a Microsoft extension that specifies the color of the track element of a scrollbar.
17221 *
17222 * **Syntax**: `<color>`
17223 *
17224 * **Initial value**: `Scrollbar`
17225 *
17226 * @deprecated
17227 */
17228 "-ms-scrollbar-track-color"?: Property.MsScrollbarTrackColor | undefined;
17229 /**
17230 * The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
17231 *
17232 * **Syntax**: `<single-animation>#`
17233 *
17234 * @deprecated
17235 */
17236 "-o-animation"?: Property.Animation<TTime> | undefined;
17237 /**
17238 * The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
17239 *
17240 * **Syntax**: `<time>#`
17241 *
17242 * **Initial value**: `0s`
17243 *
17244 * @deprecated
17245 */
17246 "-o-animation-delay"?: Property.AnimationDelay<TTime> | undefined;
17247 /**
17248 * The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
17249 *
17250 * **Syntax**: `<single-animation-direction>#`
17251 *
17252 * **Initial value**: `normal`
17253 *
17254 * @deprecated
17255 */
17256 "-o-animation-direction"?: Property.AnimationDirection | undefined;
17257 /**
17258 * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
17259 *
17260 * **Syntax**: `<time>#`
17261 *
17262 * **Initial value**: `0s`
17263 *
17264 * @deprecated
17265 */
17266 "-o-animation-duration"?: Property.AnimationDuration<TTime> | undefined;
17267 /**
17268 * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
17269 *
17270 * **Syntax**: `<single-animation-fill-mode>#`
17271 *
17272 * **Initial value**: `none`
17273 *
17274 * @deprecated
17275 */
17276 "-o-animation-fill-mode"?: Property.AnimationFillMode | undefined;
17277 /**
17278 * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
17279 *
17280 * **Syntax**: `<single-animation-iteration-count>#`
17281 *
17282 * **Initial value**: `1`
17283 *
17284 * @deprecated
17285 */
17286 "-o-animation-iteration-count"?: Property.AnimationIterationCount | undefined;
17287 /**
17288 * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
17289 *
17290 * **Syntax**: `[ none | <keyframes-name> ]#`
17291 *
17292 * **Initial value**: `none`
17293 *
17294 * @deprecated
17295 */
17296 "-o-animation-name"?: Property.AnimationName | undefined;
17297 /**
17298 * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
17299 *
17300 * **Syntax**: `<single-animation-play-state>#`
17301 *
17302 * **Initial value**: `running`
17303 *
17304 * @deprecated
17305 */
17306 "-o-animation-play-state"?: Property.AnimationPlayState | undefined;
17307 /**
17308 * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
17309 *
17310 * **Syntax**: `<easing-function>#`
17311 *
17312 * **Initial value**: `ease`
17313 *
17314 * @deprecated
17315 */
17316 "-o-animation-timing-function"?: Property.AnimationTimingFunction | undefined;
17317 /**
17318 * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
17319 *
17320 * **Syntax**: `<bg-size>#`
17321 *
17322 * **Initial value**: `auto auto`
17323 *
17324 * @deprecated
17325 */
17326 "-o-background-size"?: Property.BackgroundSize<TLength> | undefined;
17327 /**
17328 * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
17329 *
17330 * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
17331 *
17332 * @deprecated
17333 */
17334 "-o-border-image"?: Property.BorderImage | undefined;
17335 /**
17336 * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `<img>` or `<video>`, should be resized to fit its container.
17337 *
17338 * **Syntax**: `fill | contain | cover | none | scale-down`
17339 *
17340 * **Initial value**: `fill`
17341 *
17342 * @deprecated
17343 */
17344 "-o-object-fit"?: Property.ObjectFit | undefined;
17345 /**
17346 * The **`object-position`** CSS property specifies the alignment of the selected replaced element's contents within the element's box. Areas of the box which aren't covered by the replaced element's object will show the element's background.
17347 *
17348 * **Syntax**: `<position>`
17349 *
17350 * **Initial value**: `50% 50%`
17351 *
17352 * @deprecated
17353 */
17354 "-o-object-position"?: Property.ObjectPosition<TLength> | undefined;
17355 /**
17356 * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
17357 *
17358 * **Syntax**: `<integer> | <length>`
17359 *
17360 * **Initial value**: `8`
17361 *
17362 * @deprecated
17363 */
17364 "-o-tab-size"?: Property.TabSize<TLength> | undefined;
17365 /**
17366 * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.
17367 *
17368 * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`
17369 *
17370 * **Initial value**: `clip`
17371 *
17372 * @deprecated
17373 */
17374 "-o-text-overflow"?: Property.TextOverflow | undefined;
17375 /**
17376 * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
17377 *
17378 * **Syntax**: `none | <transform-list>`
17379 *
17380 * **Initial value**: `none`
17381 *
17382 * @deprecated
17383 */
17384 "-o-transform"?: Property.Transform | undefined;
17385 /**
17386 * The **`transform-origin`** CSS property sets the origin for an element's transformations.
17387 *
17388 * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
17389 *
17390 * **Initial value**: `50% 50% 0`
17391 *
17392 * @deprecated
17393 */
17394 "-o-transform-origin"?: Property.TransformOrigin<TLength> | undefined;
17395 /**
17396 * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
17397 *
17398 * **Syntax**: `<single-transition>#`
17399 *
17400 * @deprecated
17401 */
17402 "-o-transition"?: Property.Transition<TTime> | undefined;
17403 /**
17404 * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
17405 *
17406 * **Syntax**: `<time>#`
17407 *
17408 * **Initial value**: `0s`
17409 *
17410 * @deprecated
17411 */
17412 "-o-transition-delay"?: Property.TransitionDelay<TTime> | undefined;
17413 /**
17414 * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
17415 *
17416 * **Syntax**: `<time>#`
17417 *
17418 * **Initial value**: `0s`
17419 *
17420 * @deprecated
17421 */
17422 "-o-transition-duration"?: Property.TransitionDuration<TTime> | undefined;
17423 /**
17424 * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
17425 *
17426 * **Syntax**: `none | <single-transition-property>#`
17427 *
17428 * **Initial value**: all
17429 *
17430 * @deprecated
17431 */
17432 "-o-transition-property"?: Property.TransitionProperty | undefined;
17433 /**
17434 * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
17435 *
17436 * **Syntax**: `<easing-function>#`
17437 *
17438 * **Initial value**: `ease`
17439 *
17440 * @deprecated
17441 */
17442 "-o-transition-timing-function"?: Property.TransitionTimingFunction | undefined;
17443 /**
17444 * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box.
17445 *
17446 * **Syntax**: `start | center | end | baseline | stretch`
17447 *
17448 * **Initial value**: `stretch`
17449 *
17450 * @deprecated
17451 */
17452 "-webkit-box-align"?: Property.BoxAlign | undefined;
17453 /**
17454 * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge).
17455 *
17456 * **Syntax**: `normal | reverse | inherit`
17457 *
17458 * **Initial value**: `normal`
17459 *
17460 * @deprecated
17461 */
17462 "-webkit-box-direction"?: Property.BoxDirection | undefined;
17463 /**
17464 * The **`-moz-box-flex`** and **`-webkit-box-flex`** CSS properties specify how a `-moz-box` or `-webkit-box` grows to fill the box that contains it, in the direction of the containing box's layout.
17465 *
17466 * **Syntax**: `<number>`
17467 *
17468 * **Initial value**: `0`
17469 *
17470 * @deprecated
17471 */
17472 "-webkit-box-flex"?: Property.BoxFlex | undefined;
17473 /**
17474 * The **`box-flex-group`** CSS property assigns the flexbox's child elements to a flex group.
17475 *
17476 * **Syntax**: `<integer>`
17477 *
17478 * **Initial value**: `1`
17479 *
17480 * @deprecated
17481 */
17482 "-webkit-box-flex-group"?: Property.BoxFlexGroup | undefined;
17483 /**
17484 * The **`box-lines`** CSS property determines whether the box may have a single or multiple lines (rows for horizontally oriented boxes, columns for vertically oriented boxes).
17485 *
17486 * **Syntax**: `single | multiple`
17487 *
17488 * **Initial value**: `single`
17489 *
17490 * @deprecated
17491 */
17492 "-webkit-box-lines"?: Property.BoxLines | undefined;
17493 /**
17494 * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
17495 *
17496 * **Syntax**: `<integer>`
17497 *
17498 * **Initial value**: `1`
17499 *
17500 * @deprecated
17501 */
17502 "-webkit-box-ordinal-group"?: Property.BoxOrdinalGroup | undefined;
17503 /**
17504 * This is a property of the original CSS Flexible Box Layout Module draft, and has been replaced by a newer standard. See flexbox for information about the current standard.
17505 *
17506 * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
17507 *
17508 * **Initial value**: `inline-axis` (`horizontal` in XUL)
17509 *
17510 * @deprecated
17511 */
17512 "-webkit-box-orient"?: Property.BoxOrient | undefined;
17513 /**
17514 * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
17515 *
17516 * **Syntax**: `start | center | end | justify`
17517 *
17518 * **Initial value**: `start`
17519 *
17520 * @deprecated
17521 */
17522 "-webkit-box-pack"?: Property.BoxPack | undefined;
17523 /**
17524 * The **`scroll-snap-points-x`** CSS property defines the horizontal positioning of snap points within the content of the scroll container they are applied to.
17525 *
17526 * **Syntax**: `none | repeat( <length-percentage> )`
17527 *
17528 * **Initial value**: `none`
17529 *
17530 * @deprecated
17531 */
17532 "-webkit-scroll-snap-points-x"?: Property.ScrollSnapPointsX | undefined;
17533 /**
17534 * The **`scroll-snap-points-y`** CSS property defines the vertical positioning of snap points within the content of the scroll container they are applied to.
17535 *
17536 * **Syntax**: `none | repeat( <length-percentage> )`
17537 *
17538 * **Initial value**: `none`
17539 *
17540 * @deprecated
17541 */
17542 "-webkit-scroll-snap-points-y"?: Property.ScrollSnapPointsY | undefined;
17543}
17544export interface SvgPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
17545 "alignment-baseline"?: Property.AlignmentBaseline | undefined;
17546 "baseline-shift"?: Property.BaselineShift<TLength> | undefined;
17547 clip?: Property.Clip | undefined;
17548 "clip-path"?: Property.ClipPath | undefined;
17549 "clip-rule"?: Property.ClipRule | undefined;
17550 color?: Property.Color | undefined;
17551 "color-interpolation"?: Property.ColorInterpolation | undefined;
17552 "color-rendering"?: Property.ColorRendering | undefined;
17553 cursor?: Property.Cursor | undefined;
17554 direction?: Property.Direction | undefined;
17555 display?: Property.Display | undefined;
17556 "dominant-baseline"?: Property.DominantBaseline | undefined;
17557 fill?: Property.Fill | undefined;
17558 "fill-opacity"?: Property.FillOpacity | undefined;
17559 "fill-rule"?: Property.FillRule | undefined;
17560 filter?: Property.Filter | undefined;
17561 "flood-color"?: Property.FloodColor | undefined;
17562 "flood-opacity"?: Property.FloodOpacity | undefined;
17563 font?: Property.Font | undefined;
17564 "font-family"?: Property.FontFamily | undefined;
17565 "font-size"?: Property.FontSize<TLength> | undefined;
17566 "font-size-adjust"?: Property.FontSizeAdjust | undefined;
17567 "font-stretch"?: Property.FontStretch | undefined;
17568 "font-style"?: Property.FontStyle | undefined;
17569 "font-variant"?: Property.FontVariant | undefined;
17570 "font-weight"?: Property.FontWeight | undefined;
17571 "glyph-orientation-vertical"?: Property.GlyphOrientationVertical | undefined;
17572 "image-rendering"?: Property.ImageRendering | undefined;
17573 "letter-spacing"?: Property.LetterSpacing<TLength> | undefined;
17574 "lighting-color"?: Property.LightingColor | undefined;
17575 "line-height"?: Property.LineHeight<TLength> | undefined;
17576 marker?: Property.Marker | undefined;
17577 "marker-end"?: Property.MarkerEnd | undefined;
17578 "marker-mid"?: Property.MarkerMid | undefined;
17579 "marker-start"?: Property.MarkerStart | undefined;
17580 mask?: Property.Mask<TLength> | undefined;
17581 opacity?: Property.Opacity | undefined;
17582 overflow?: Property.Overflow | undefined;
17583 "paint-order"?: Property.PaintOrder | undefined;
17584 "pointer-events"?: Property.PointerEvents | undefined;
17585 "shape-rendering"?: Property.ShapeRendering | undefined;
17586 "stop-color"?: Property.StopColor | undefined;
17587 "stop-opacity"?: Property.StopOpacity | undefined;
17588 stroke?: Property.Stroke | undefined;
17589 "stroke-dasharray"?: Property.StrokeDasharray<TLength> | undefined;
17590 "stroke-dashoffset"?: Property.StrokeDashoffset<TLength> | undefined;
17591 "stroke-linecap"?: Property.StrokeLinecap | undefined;
17592 "stroke-linejoin"?: Property.StrokeLinejoin | undefined;
17593 "stroke-miterlimit"?: Property.StrokeMiterlimit | undefined;
17594 "stroke-opacity"?: Property.StrokeOpacity | undefined;
17595 "stroke-width"?: Property.StrokeWidth<TLength> | undefined;
17596 "text-anchor"?: Property.TextAnchor | undefined;
17597 "text-decoration"?: Property.TextDecoration<TLength> | undefined;
17598 "text-rendering"?: Property.TextRendering | undefined;
17599 "unicode-bidi"?: Property.UnicodeBidi | undefined;
17600 "vector-effect"?: Property.VectorEffect | undefined;
17601 visibility?: Property.Visibility | undefined;
17602 "white-space"?: Property.WhiteSpace | undefined;
17603 "word-spacing"?: Property.WordSpacing<TLength> | undefined;
17604 "writing-mode"?: Property.WritingMode | undefined;
17605}
17606export interface PropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> extends StandardPropertiesHyphen<TLength, TTime>, VendorPropertiesHyphen<TLength, TTime>, ObsoletePropertiesHyphen<TLength, TTime>, SvgPropertiesHyphen<TLength, TTime> {
17607}
17608export type StandardLonghandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<StandardLonghandProperties<TLength, TTime>>;
17609export type StandardShorthandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<StandardShorthandProperties<TLength, TTime>>;
17610export interface StandardPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> extends StandardLonghandPropertiesFallback<TLength, TTime>, StandardShorthandPropertiesFallback<TLength, TTime> {
17611}
17612export type VendorLonghandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<VendorLonghandProperties<TLength, TTime>>;
17613export type VendorShorthandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<VendorShorthandProperties<TLength, TTime>>;
17614export interface VendorPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> extends VendorLonghandPropertiesFallback<TLength, TTime>, VendorShorthandPropertiesFallback<TLength, TTime> {
17615}
17616export type ObsoletePropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<ObsoleteProperties<TLength, TTime>>;
17617export type SvgPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<SvgProperties<TLength, TTime>>;
17618export interface PropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> extends StandardPropertiesFallback<TLength, TTime>, VendorPropertiesFallback<TLength, TTime>, ObsoletePropertiesFallback<TLength, TTime>, SvgPropertiesFallback<TLength, TTime> {
17619}
17620export type StandardLonghandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<StandardLonghandPropertiesHyphen<TLength, TTime>>;
17621export type StandardShorthandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<StandardShorthandPropertiesHyphen<TLength, TTime>>;
17622export interface StandardPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> extends StandardLonghandPropertiesHyphenFallback<TLength, TTime>, StandardShorthandPropertiesHyphenFallback<TLength, TTime> {
17623}
17624export type VendorLonghandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<VendorLonghandPropertiesHyphen<TLength, TTime>>;
17625export type VendorShorthandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<VendorShorthandPropertiesHyphen<TLength, TTime>>;
17626export interface VendorPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> extends VendorLonghandPropertiesHyphenFallback<TLength, TTime>, VendorShorthandPropertiesHyphenFallback<TLength, TTime> {
17627}
17628export type ObsoletePropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<ObsoletePropertiesHyphen<TLength, TTime>>;
17629export type SvgPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<SvgPropertiesHyphen<TLength, TTime>>;
17630export interface PropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> extends StandardPropertiesHyphenFallback<TLength, TTime>, VendorPropertiesHyphenFallback<TLength, TTime>, ObsoletePropertiesHyphenFallback<TLength, TTime>, SvgPropertiesHyphenFallback<TLength, TTime> {
17631}
17632export type AtRules = "@charset" | "@counter-style" | "@document" | "@font-face" | "@font-feature-values" | "@import" | "@keyframes" | "@media" | "@namespace" | "@page" | "@property" | "@supports" | "@viewport";
17633export type AdvancedPseudos = ":-moz-any()" | ":-moz-dir" | ":-webkit-any()" | "::cue" | "::cue-region" | "::part" | "::slotted" | ":dir" | ":has" | ":host" | ":host-context" | ":is" | ":lang" | ":matches()" | ":not" | ":nth-child" | ":nth-last-child" | ":nth-last-of-type" | ":nth-of-type" | ":where";
17634export type SimplePseudos = ":-khtml-any-link" | ":-moz-any-link" | ":-moz-focusring" | ":-moz-full-screen" | ":-moz-placeholder" | ":-moz-read-only" | ":-moz-read-write" | ":-moz-ui-invalid" | ":-moz-ui-valid" | ":-ms-fullscreen" | ":-ms-input-placeholder" | ":-webkit-any-link" | ":-webkit-full-screen" | "::-moz-placeholder" | "::-moz-progress-bar" | "::-moz-range-progress" | "::-moz-range-thumb" | "::-moz-range-track" | "::-moz-selection" | "::-ms-backdrop" | "::-ms-browse" | "::-ms-check" | "::-ms-clear" | "::-ms-fill" | "::-ms-fill-lower" | "::-ms-fill-upper" | "::-ms-input-placeholder" | "::-ms-reveal" | "::-ms-thumb" | "::-ms-ticks-after" | "::-ms-ticks-before" | "::-ms-tooltip" | "::-ms-track" | "::-ms-value" | "::-webkit-backdrop" | "::-webkit-input-placeholder" | "::-webkit-progress-bar" | "::-webkit-progress-inner-value" | "::-webkit-progress-value" | "::-webkit-slider-runnable-track" | "::-webkit-slider-thumb" | "::after" | "::backdrop" | "::before" | "::cue" | "::cue-region" | "::first-letter" | "::first-line" | "::grammar-error" | "::marker" | "::placeholder" | "::selection" | "::spelling-error" | "::target-text" | ":active" | ":after" | ":any-link" | ":before" | ":blank" | ":checked" | ":current" | ":default" | ":defined" | ":disabled" | ":empty" | ":enabled" | ":first" | ":first-child" | ":first-letter" | ":first-line" | ":first-of-type" | ":focus" | ":focus-visible" | ":focus-within" | ":fullscreen" | ":future" | ":hover" | ":in-range" | ":indeterminate" | ":invalid" | ":last-child" | ":last-of-type" | ":left" | ":link" | ":local-link" | ":nth-col" | ":nth-last-col" | ":only-child" | ":only-of-type" | ":optional" | ":out-of-range" | ":past" | ":paused" | ":picture-in-picture" | ":placeholder-shown" | ":read-only" | ":read-write" | ":required" | ":right" | ":root" | ":scope" | ":target" | ":target-within" | ":user-invalid" | ":user-valid" | ":valid" | ":visited";
17635export type Pseudos = AdvancedPseudos | SimplePseudos;
17636export type HtmlAttributes = "[abbr]" | "[accept-charset]" | "[accept]" | "[accesskey]" | "[action]" | "[align]" | "[alink]" | "[allow]" | "[allowfullscreen]" | "[allowpaymentrequest]" | "[alt]" | "[archive]" | "[async]" | "[autobuffer]" | "[autocapitalize]" | "[autocomplete]" | "[autofocus]" | "[autoplay]" | "[axis]" | "[background]" | "[behavior]" | "[bgcolor]" | "[border]" | "[bottommargin]" | "[buffered]" | "[cellpadding]" | "[cellspacing]" | "[char]" | "[charoff]" | "[charset]" | "[checked]" | "[cite]" | "[class]" | "[classid]" | "[clear]" | "[code]" | "[codebase]" | "[codetype]" | "[color]" | "[cols]" | "[colspan]" | "[command]" | "[compact]" | "[content]" | "[contenteditable]" | "[contextmenu]" | "[controls]" | "[coords]" | "[crossorigin]" | "[data]" | "[datafld]" | "[datasrc]" | "[datetime]" | "[declare]" | "[decoding]" | "[default]" | "[defer]" | "[dir]" | "[direction]" | "[dirname]" | "[disabled]" | "[download]" | "[draggable]" | "[enctype]" | "[enterkeyhint]" | "[exportparts]" | "[face]" | "[for]" | "[form]" | "[formaction]" | "[formenctype]" | "[formmethod]" | "[formnovalidate]" | "[formtarget]" | "[frame]" | "[frameborder]" | "[headers]" | "[height]" | "[hidden]" | "[high]" | "[href]" | "[hreflang]" | "[hspace]" | "[http-equiv]" | "[icon]" | "[id]" | "[imagesizes]" | "[imagesrcset]" | "[inputmode]" | "[integrity]" | "[intrinsicsize]" | "[is]" | "[ismap]" | "[itemid]" | "[itemprop]" | "[itemref]" | "[itemscope]" | "[itemtype]" | "[kind]" | "[label]" | "[lang]" | "[language]" | "[leftmargin]" | "[link]" | "[loading]" | "[longdesc]" | "[loop]" | "[low]" | "[manifest]" | "[marginheight]" | "[marginwidth]" | "[max]" | "[maxlength]" | "[mayscript]" | "[media]" | "[method]" | "[methods]" | "[min]" | "[minlength]" | "[moz-opaque]" | "[mozallowfullscreen]" | "[mozcurrentsampleoffset]" | "[msallowfullscreen]" | "[multiple]" | "[muted]" | "[name]" | "[nohref]" | "[nomodule]" | "[nonce]" | "[noresize]" | "[noshade]" | "[novalidate]" | "[nowrap]" | "[object]" | "[onafterprint]" | "[onbeforeprint]" | "[onbeforeunload]" | "[onblur]" | "[onerror]" | "[onfocus]" | "[onhashchange]" | "[onlanguagechange]" | "[onload]" | "[onmessage]" | "[onoffline]" | "[ononline]" | "[onpopstate]" | "[onredo]" | "[onresize]" | "[onstorage]" | "[onundo]" | "[onunload]" | "[open]" | "[optimum]" | "[part]" | "[ping]" | "[placeholder]" | "[played]" | "[poster]" | "[prefetch]" | "[preload]" | "[profile]" | "[radiogroup]" | "[readonly]" | "[referrerpolicy]" | "[rel]" | "[required]" | "[rev]" | "[reversed]" | "[rightmargin]" | "[rows]" | "[rowspan]" | "[rules]" | "[sandbox-allow-downloads]" | "[sandbox-allow-modals]" | "[sandbox-allow-popups-to-escape-sandbox]" | "[sandbox-allow-popups]" | "[sandbox-allow-presentation]" | "[sandbox-allow-same-origin]" | "[sandbox-allow-storage-access-by-user-activation]" | "[sandbox-allow-top-navigation-by-user-activation]" | "[sandbox]" | "[scope]" | "[scoped]" | "[scrollamount]" | "[scrolldelay]" | "[scrolling]" | "[selected]" | "[shape]" | "[size]" | "[sizes]" | "[slot]" | "[span]" | "[spellcheck]" | "[src]" | "[srcdoc]" | "[srclang]" | "[srcset]" | "[standby]" | "[start]" | "[style]" | "[summary]" | "[tabindex]" | "[target]" | "[text]" | "[title]" | "[topmargin]" | "[translate]" | "[truespeed]" | "[type]" | "[usemap]" | "[valign]" | "[value]" | "[valuetype]" | "[version]" | "[vlink]" | "[volume]" | "[vspace]" | "[webkitallowfullscreen]" | "[width]" | "[wrap]" | "[xmlns]";
17637export type SvgAttributes = "[accent-height]" | "[alignment-baseline]" | "[allowReorder]" | "[alphabetic]" | "[animation]" | "[arabic-form]" | "[ascent]" | "[attributeName]" | "[attributeType]" | "[azimuth]" | "[baseFrequency]" | "[baseProfile]" | "[baseline-shift]" | "[bbox]" | "[bias]" | "[by]" | "[calcMode]" | "[cap-height]" | "[class]" | "[clip-path]" | "[clip-rule]" | "[clipPathUnits]" | "[clip]" | "[color-interpolation-filters]" | "[color-interpolation]" | "[color-profile]" | "[color-rendering]" | "[color]" | "[contentScriptType]" | "[contentStyleType]" | "[cursor]" | "[cx]" | "[cy]" | "[d]" | "[descent]" | "[diffuseConstant]" | "[direction]" | "[display]" | "[divisor]" | "[document]" | "[dominant-baseline]" | "[download]" | "[dur]" | "[dx]" | "[dy]" | "[edgeMode]" | "[elevation]" | "[enable-background]" | "[fill-opacity]" | "[fill-rule]" | "[fill]" | "[filterRes]" | "[filterUnits]" | "[filter]" | "[flood-color]" | "[flood-opacity]" | "[font-family]" | "[font-size-adjust]" | "[font-size]" | "[font-stretch]" | "[font-style]" | "[font-variant]" | "[font-weight]" | "[format]" | "[fr]" | "[from]" | "[fx]" | "[fy]" | "[g1]" | "[g2]" | "[global]" | "[glyph-name]" | "[glyph-orientation-horizontal]" | "[glyph-orientation-vertical]" | "[glyphRef]" | "[gradientTransform]" | "[gradientUnits]" | "[graphical]" | "[hanging]" | "[hatchContentUnits]" | "[hatchUnits]" | "[height]" | "[horiz-adv-x]" | "[horiz-origin-x]" | "[horiz-origin-y]" | "[href]" | "[hreflang]" | "[id]" | "[ideographic]" | "[image-rendering]" | "[in2]" | "[in]" | "[k1]" | "[k2]" | "[k3]" | "[k4]" | "[k]" | "[kernelMatrix]" | "[kernelUnitLength]" | "[kerning]" | "[keyPoints]" | "[lang]" | "[lengthAdjust]" | "[letter-spacing]" | "[lighting-color]" | "[limitingConeAngle]" | "[marker-end]" | "[marker-mid]" | "[marker-start]" | "[markerHeight]" | "[markerUnits]" | "[markerWidth]" | "[maskContentUnits]" | "[maskUnits]" | "[mask]" | "[mathematical]" | "[media]" | "[mode]" | "[name]" | "[numOctaves]" | "[offset]" | "[opacity]" | "[operator]" | "[order]" | "[orient]" | "[orientation]" | "[origin]" | "[overflow]" | "[overline-position]" | "[overline-thickness]" | "[paint-order]" | "[panose-1]" | "[path]" | "[patternContentUnits]" | "[patternTransform]" | "[patternUnits]" | "[ping]" | "[pitch]" | "[pointer-events]" | "[pointsAtX]" | "[pointsAtY]" | "[pointsAtZ]" | "[points]" | "[preserveAlpha]" | "[preserveAspectRatio]" | "[primitiveUnits]" | "[r]" | "[radius]" | "[refX]" | "[refY]" | "[referrerpolicy]" | "[rel]" | "[repeatCount]" | "[requiredExtensions]" | "[requiredFeatures]" | "[rotate]" | "[rx]" | "[ry]" | "[scale]" | "[seed]" | "[shape-rendering]" | "[side]" | "[slope]" | "[solid-color]" | "[solid-opacity]" | "[spacing]" | "[specularConstant]" | "[specularExponent]" | "[spreadMethod]" | "[startOffset]" | "[stdDeviation]" | "[stemh]" | "[stemv]" | "[stitchTiles]" | "[stop-color]" | "[stop-opacity]" | "[strikethrough-position]" | "[strikethrough-thickness]" | "[string]" | "[stroke-dasharray]" | "[stroke-dashoffset]" | "[stroke-linecap]" | "[stroke-linejoin]" | "[stroke-miterlimit]" | "[stroke-opacity]" | "[stroke-width]" | "[stroke]" | "[style]" | "[surfaceScale]" | "[systemLanguage]" | "[tabindex]" | "[targetX]" | "[targetY]" | "[target]" | "[text-anchor]" | "[text-decoration]" | "[text-overflow]" | "[text-rendering]" | "[textLength]" | "[title]" | "[to]" | "[transform-origin]" | "[transform]" | "[type]" | "[u1]" | "[u2]" | "[underline-position]" | "[underline-thickness]" | "[unicode-bidi]" | "[unicode-range]" | "[unicode]" | "[units-per-em]" | "[v-alphabetic]" | "[v-hanging]" | "[v-ideographic]" | "[v-mathematical]" | "[values]" | "[vector-effect]" | "[version]" | "[vert-adv-y]" | "[vert-origin-x]" | "[vert-origin-y]" | "[viewBox]" | "[viewTarget]" | "[visibility]" | "[white-space]" | "[width]" | "[widths]" | "[word-spacing]" | "[writing-mode]" | "[x-height]" | "[x1]" | "[x2]" | "[xChannelSelector]" | "[x]" | "[y1]" | "[y2]" | "[yChannelSelector]" | "[y]" | "[z]" | "[zoomAndPan]";
17638export type Globals = "-moz-initial" | "inherit" | "initial" | "revert" | "unset";
17639export namespace Property {
17640 export type AccentColor = Globals | DataType.Color | "auto";
17641 export type AlignContent = Globals | DataType.ContentDistribution | DataType.ContentPosition | "baseline" | "normal" | (string & {});
17642 export type AlignItems = Globals | DataType.SelfPosition | "baseline" | "normal" | "stretch" | (string & {});
17643 export type AlignSelf = Globals | DataType.SelfPosition | "auto" | "baseline" | "normal" | "stretch" | (string & {});
17644 export type AlignTracks = Globals | DataType.ContentDistribution | DataType.ContentPosition | "baseline" | "normal" | (string & {});
17645 export type All = Globals;
17646 export type Animation<TTime = string & {}> = Globals | DataType.SingleAnimation<TTime> | (string & {});
17647 export type AnimationDelay<TTime = string & {}> = Globals | TTime | (string & {});
17648 export type AnimationDirection = Globals | DataType.SingleAnimationDirection | (string & {});
17649 export type AnimationDuration<TTime = string & {}> = Globals | TTime | (string & {});
17650 export type AnimationFillMode = Globals | DataType.SingleAnimationFillMode | (string & {});
17651 export type AnimationIterationCount = Globals | "infinite" | (string & {}) | (number & {});
17652 export type AnimationName = Globals | "none" | (string & {});
17653 export type AnimationPlayState = Globals | "paused" | "running" | (string & {});
17654 export type AnimationTimingFunction = Globals | DataType.EasingFunction | (string & {});
17655 export type Appearance = Globals | DataType.CompatAuto | "auto" | "menulist-button" | "none" | "textfield";
17656 export type AspectRatio = Globals | "auto" | (string & {});
17657 export type Azimuth = Globals | "behind" | "center" | "center-left" | "center-right" | "far-left" | "far-right" | "left" | "left-side" | "leftwards" | "right" | "right-side" | "rightwards" | (string & {});
17658 export type BackdropFilter = Globals | "none" | (string & {});
17659 export type BackfaceVisibility = Globals | "hidden" | "visible";
17660 export type Background<TLength = (string & {}) | 0> = Globals | DataType.FinalBgLayer<TLength> | (string & {});
17661 export type BackgroundAttachment = Globals | DataType.Attachment | (string & {});
17662 export type BackgroundBlendMode = Globals | DataType.BlendMode | (string & {});
17663 export type BackgroundClip = Globals | DataType.Box | (string & {});
17664 export type BackgroundColor = Globals | DataType.Color;
17665 export type BackgroundImage = Globals | "none" | (string & {});
17666 export type BackgroundOrigin = Globals | DataType.Box | (string & {});
17667 export type BackgroundPosition<TLength = (string & {}) | 0> = Globals | DataType.BgPosition<TLength> | (string & {});
17668 export type BackgroundPositionX<TLength = (string & {}) | 0> = Globals | TLength | "center" | "left" | "right" | "x-end" | "x-start" | (string & {});
17669 export type BackgroundPositionY<TLength = (string & {}) | 0> = Globals | TLength | "bottom" | "center" | "top" | "y-end" | "y-start" | (string & {});
17670 export type BackgroundRepeat = Globals | DataType.RepeatStyle | (string & {});
17671 export type BackgroundSize<TLength = (string & {}) | 0> = Globals | DataType.BgSize<TLength> | (string & {});
17672 export type BlockOverflow = Globals | "clip" | "ellipsis" | (string & {});
17673 export type BlockSize<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fill-available" | "auto" | "fit-content" | "max-content" | "min-content" | (string & {});
17674 export type Border<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
17675 export type BorderBlock<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
17676 export type BorderBlockColor = Globals | DataType.Color | (string & {});
17677 export type BorderBlockEnd<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
17678 export type BorderBlockEndColor = Globals | DataType.Color;
17679 export type BorderBlockEndStyle = Globals | DataType.LineStyle;
17680 export type BorderBlockEndWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
17681 export type BorderBlockStart<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
17682 export type BorderBlockStartColor = Globals | DataType.Color;
17683 export type BorderBlockStartStyle = Globals | DataType.LineStyle;
17684 export type BorderBlockStartWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
17685 export type BorderBlockStyle = Globals | DataType.LineStyle;
17686 export type BorderBlockWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
17687 export type BorderBottom<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
17688 export type BorderBottomColor = Globals | DataType.Color;
17689 export type BorderBottomLeftRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17690 export type BorderBottomRightRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17691 export type BorderBottomStyle = Globals | DataType.LineStyle;
17692 export type BorderBottomWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
17693 export type BorderCollapse = Globals | "collapse" | "separate";
17694 export type BorderColor = Globals | DataType.Color | (string & {});
17695 export type BorderEndEndRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17696 export type BorderEndStartRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17697 export type BorderImage = Globals | "none" | "repeat" | "round" | "space" | "stretch" | (string & {}) | (number & {});
17698 export type BorderImageOutset<TLength = (string & {}) | 0> = Globals | TLength | (string & {}) | (number & {});
17699 export type BorderImageRepeat = Globals | "repeat" | "round" | "space" | "stretch" | (string & {});
17700 export type BorderImageSlice = Globals | (string & {}) | (number & {});
17701 export type BorderImageSource = Globals | "none" | (string & {});
17702 export type BorderImageWidth<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {}) | (number & {});
17703 export type BorderInline<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
17704 export type BorderInlineColor = Globals | DataType.Color | (string & {});
17705 export type BorderInlineEnd<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
17706 export type BorderInlineEndColor = Globals | DataType.Color;
17707 export type BorderInlineEndStyle = Globals | DataType.LineStyle;
17708 export type BorderInlineEndWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
17709 export type BorderInlineStart<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
17710 export type BorderInlineStartColor = Globals | DataType.Color;
17711 export type BorderInlineStartStyle = Globals | DataType.LineStyle;
17712 export type BorderInlineStartWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
17713 export type BorderInlineStyle = Globals | DataType.LineStyle;
17714 export type BorderInlineWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
17715 export type BorderLeft<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
17716 export type BorderLeftColor = Globals | DataType.Color;
17717 export type BorderLeftStyle = Globals | DataType.LineStyle;
17718 export type BorderLeftWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
17719 export type BorderRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17720 export type BorderRight<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
17721 export type BorderRightColor = Globals | DataType.Color;
17722 export type BorderRightStyle = Globals | DataType.LineStyle;
17723 export type BorderRightWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
17724 export type BorderSpacing<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17725 export type BorderStartEndRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17726 export type BorderStartStartRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17727 export type BorderStyle = Globals | DataType.LineStyle | (string & {});
17728 export type BorderTop<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
17729 export type BorderTopColor = Globals | DataType.Color;
17730 export type BorderTopLeftRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17731 export type BorderTopRightRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17732 export type BorderTopStyle = Globals | DataType.LineStyle;
17733 export type BorderTopWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
17734 export type BorderWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | (string & {});
17735 export type Bottom<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17736 export type BoxAlign = Globals | "baseline" | "center" | "end" | "start" | "stretch";
17737 export type BoxDecorationBreak = Globals | "clone" | "slice";
17738 export type BoxDirection = Globals | "inherit" | "normal" | "reverse";
17739 export type BoxFlex = Globals | (number & {}) | (string & {});
17740 export type BoxFlexGroup = Globals | (number & {}) | (string & {});
17741 export type BoxLines = Globals | "multiple" | "single";
17742 export type BoxOrdinalGroup = Globals | (number & {}) | (string & {});
17743 export type BoxOrient = Globals | "block-axis" | "horizontal" | "inherit" | "inline-axis" | "vertical";
17744 export type BoxPack = Globals | "center" | "end" | "justify" | "start";
17745 export type BoxShadow = Globals | "none" | (string & {});
17746 export type BoxSizing = Globals | "border-box" | "content-box";
17747 export type BreakAfter = Globals | "all" | "always" | "auto" | "avoid" | "avoid-column" | "avoid-page" | "avoid-region" | "column" | "left" | "page" | "recto" | "region" | "right" | "verso";
17748 export type BreakBefore = Globals | "all" | "always" | "auto" | "avoid" | "avoid-column" | "avoid-page" | "avoid-region" | "column" | "left" | "page" | "recto" | "region" | "right" | "verso";
17749 export type BreakInside = Globals | "auto" | "avoid" | "avoid-column" | "avoid-page" | "avoid-region";
17750 export type CaptionSide = Globals | "block-end" | "block-start" | "bottom" | "inline-end" | "inline-start" | "top";
17751 export type CaretColor = Globals | DataType.Color | "auto";
17752 export type Clear = Globals | "both" | "inline-end" | "inline-start" | "left" | "none" | "right";
17753 export type Clip = Globals | "auto" | (string & {});
17754 export type ClipPath = Globals | DataType.GeometryBox | "none" | (string & {});
17755 export type Color = Globals | DataType.Color;
17756 export type ColorAdjust = Globals | "economy" | "exact";
17757 export type ColorScheme = Globals | "dark" | "light" | "normal" | (string & {});
17758 export type ColumnCount = Globals | "auto" | (number & {}) | (string & {});
17759 export type ColumnFill = Globals | "auto" | "balance" | "balance-all";
17760 export type ColumnGap<TLength = (string & {}) | 0> = Globals | TLength | "normal" | (string & {});
17761 export type ColumnRule<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
17762 export type ColumnRuleColor = Globals | DataType.Color;
17763 export type ColumnRuleStyle = Globals | DataType.LineStyle | (string & {});
17764 export type ColumnRuleWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | (string & {});
17765 export type ColumnSpan = Globals | "all" | "none";
17766 export type ColumnWidth<TLength = (string & {}) | 0> = Globals | TLength | "auto";
17767 export type Columns<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {}) | (number & {});
17768 export type Contain = Globals | "content" | "layout" | "none" | "paint" | "size" | "strict" | "style" | (string & {});
17769 export type Content = Globals | DataType.ContentList | "none" | "normal" | (string & {});
17770 export type ContentVisibility = Globals | "auto" | "hidden" | "visible";
17771 export type CounterIncrement = Globals | "none" | (string & {});
17772 export type CounterReset = Globals | "none" | (string & {});
17773 export type CounterSet = Globals | "none" | (string & {});
17774 export type Cursor = Globals | "-moz-grab" | "-webkit-grab" | "alias" | "all-scroll" | "auto" | "cell" | "col-resize" | "context-menu" | "copy" | "crosshair" | "default" | "e-resize" | "ew-resize" | "grab" | "grabbing" | "help" | "move" | "n-resize" | "ne-resize" | "nesw-resize" | "no-drop" | "none" | "not-allowed" | "ns-resize" | "nw-resize" | "nwse-resize" | "pointer" | "progress" | "row-resize" | "s-resize" | "se-resize" | "sw-resize" | "text" | "vertical-text" | "w-resize" | "wait" | "zoom-in" | "zoom-out" | (string & {});
17775 export type Direction = Globals | "ltr" | "rtl";
17776 export type Display = Globals | DataType.DisplayOutside | DataType.DisplayInside | DataType.DisplayInternal | DataType.DisplayLegacy | "contents" | "list-item" | "none" | (string & {});
17777 export type EmptyCells = Globals | "hide" | "show";
17778 export type Filter = Globals | "none" | (string & {});
17779 export type Flex<TLength = (string & {}) | 0> = Globals | TLength | "auto" | "content" | "fit-content" | "max-content" | "min-content" | "none" | (string & {}) | (number & {});
17780 export type FlexBasis<TLength = (string & {}) | 0> = Globals | TLength | "-moz-max-content" | "-moz-min-content" | "-webkit-auto" | "auto" | "content" | "fit-content" | "max-content" | "min-content" | (string & {});
17781 export type FlexDirection = Globals | "column" | "column-reverse" | "row" | "row-reverse";
17782 export type FlexFlow = Globals | "column" | "column-reverse" | "nowrap" | "row" | "row-reverse" | "wrap" | "wrap-reverse" | (string & {});
17783 export type FlexGrow = Globals | (number & {}) | (string & {});
17784 export type FlexShrink = Globals | (number & {}) | (string & {});
17785 export type FlexWrap = Globals | "nowrap" | "wrap" | "wrap-reverse";
17786 export type Float = Globals | "inline-end" | "inline-start" | "left" | "none" | "right";
17787 export type Font = Globals | "caption" | "icon" | "menu" | "message-box" | "small-caption" | "status-bar" | (string & {});
17788 export type FontFamily = Globals | DataType.GenericFamily | (string & {});
17789 export type FontFeatureSettings = Globals | "normal" | (string & {});
17790 export type FontKerning = Globals | "auto" | "none" | "normal";
17791 export type FontLanguageOverride = Globals | "normal" | (string & {});
17792 export type FontOpticalSizing = Globals | "auto" | "none";
17793 export type FontSize<TLength = (string & {}) | 0> = Globals | DataType.AbsoluteSize | TLength | "larger" | "smaller" | (string & {});
17794 export type FontSizeAdjust = Globals | "from-font" | "none" | (string & {}) | (number & {});
17795 export type FontSmooth<TLength = (string & {}) | 0> = Globals | DataType.AbsoluteSize | TLength | "always" | "auto" | "never";
17796 export type FontStretch = Globals | DataType.FontStretchAbsolute;
17797 export type FontStyle = Globals | "italic" | "normal" | "oblique" | (string & {});
17798 export type FontSynthesis = Globals | "none" | "small-caps" | "style" | "weight" | (string & {});
17799 export type FontVariant = Globals | DataType.EastAsianVariantValues | "all-petite-caps" | "all-small-caps" | "common-ligatures" | "contextual" | "diagonal-fractions" | "discretionary-ligatures" | "full-width" | "historical-forms" | "historical-ligatures" | "lining-nums" | "no-common-ligatures" | "no-contextual" | "no-discretionary-ligatures" | "no-historical-ligatures" | "none" | "normal" | "oldstyle-nums" | "ordinal" | "petite-caps" | "proportional-nums" | "proportional-width" | "ruby" | "slashed-zero" | "small-caps" | "stacked-fractions" | "tabular-nums" | "titling-caps" | "unicase" | (string & {});
17800 export type FontVariantAlternates = Globals | "historical-forms" | "normal" | (string & {});
17801 export type FontVariantCaps = Globals | "all-petite-caps" | "all-small-caps" | "normal" | "petite-caps" | "small-caps" | "titling-caps" | "unicase";
17802 export type FontVariantEastAsian = Globals | DataType.EastAsianVariantValues | "full-width" | "normal" | "proportional-width" | "ruby" | (string & {});
17803 export type FontVariantLigatures = Globals | "common-ligatures" | "contextual" | "discretionary-ligatures" | "historical-ligatures" | "no-common-ligatures" | "no-contextual" | "no-discretionary-ligatures" | "no-historical-ligatures" | "none" | "normal" | (string & {});
17804 export type FontVariantNumeric = Globals | "diagonal-fractions" | "lining-nums" | "normal" | "oldstyle-nums" | "ordinal" | "proportional-nums" | "slashed-zero" | "stacked-fractions" | "tabular-nums" | (string & {});
17805 export type FontVariantPosition = Globals | "normal" | "sub" | "super";
17806 export type FontVariationSettings = Globals | "normal" | (string & {});
17807 export type FontWeight = Globals | DataType.FontWeightAbsolute | "bolder" | "lighter";
17808 export type ForcedColorAdjust = Globals | "auto" | "none";
17809 export type Gap<TLength = (string & {}) | 0> = Globals | TLength | "normal" | (string & {});
17810 export type Grid = Globals | "none" | (string & {});
17811 export type GridArea = Globals | DataType.GridLine | (string & {});
17812 export type GridAutoColumns<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | (string & {});
17813 export type GridAutoFlow = Globals | "column" | "dense" | "row" | (string & {});
17814 export type GridAutoRows<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | (string & {});
17815 export type GridColumn = Globals | DataType.GridLine | (string & {});
17816 export type GridColumnEnd = Globals | DataType.GridLine;
17817 export type GridColumnGap<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17818 export type GridColumnStart = Globals | DataType.GridLine;
17819 export type GridGap<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17820 export type GridRow = Globals | DataType.GridLine | (string & {});
17821 export type GridRowEnd = Globals | DataType.GridLine;
17822 export type GridRowGap<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17823 export type GridRowStart = Globals | DataType.GridLine;
17824 export type GridTemplate = Globals | "none" | (string & {});
17825 export type GridTemplateAreas = Globals | "none" | (string & {});
17826 export type GridTemplateColumns<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | "none" | "subgrid" | (string & {});
17827 export type GridTemplateRows<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | "none" | "subgrid" | (string & {});
17828 export type HangingPunctuation = Globals | "allow-end" | "first" | "force-end" | "last" | "none" | (string & {});
17829 export type Height<TLength = (string & {}) | 0> = Globals | TLength | "-moz-max-content" | "-moz-min-content" | "-webkit-fit-content" | "auto" | "fit-content" | "max-content" | "min-content" | (string & {});
17830 export type Hyphens = Globals | "auto" | "manual" | "none";
17831 export type ImageOrientation = Globals | "flip" | "from-image" | (string & {});
17832 export type ImageRendering = Globals | "-moz-crisp-edges" | "-webkit-optimize-contrast" | "auto" | "crisp-edges" | "pixelated";
17833 export type ImageResolution = Globals | "from-image" | (string & {});
17834 export type ImeMode = Globals | "active" | "auto" | "disabled" | "inactive" | "normal";
17835 export type InitialLetter = Globals | "normal" | (string & {}) | (number & {});
17836 export type InlineSize<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fill-available" | "auto" | "fit-content" | "max-content" | "min-content" | (string & {});
17837 export type Inset<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17838 export type InsetBlock<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17839 export type InsetBlockEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17840 export type InsetBlockStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17841 export type InsetInline<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17842 export type InsetInlineEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17843 export type InsetInlineStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17844 export type Isolation = Globals | "auto" | "isolate";
17845 export type JustifyContent = Globals | DataType.ContentDistribution | DataType.ContentPosition | "left" | "normal" | "right" | (string & {});
17846 export type JustifyItems = Globals | DataType.SelfPosition | "baseline" | "left" | "legacy" | "normal" | "right" | "stretch" | (string & {});
17847 export type JustifySelf = Globals | DataType.SelfPosition | "auto" | "baseline" | "left" | "normal" | "right" | "stretch" | (string & {});
17848 export type JustifyTracks = Globals | DataType.ContentDistribution | DataType.ContentPosition | "left" | "normal" | "right" | (string & {});
17849 export type Left<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17850 export type LetterSpacing<TLength = (string & {}) | 0> = Globals | TLength | "normal";
17851 export type LineBreak = Globals | "anywhere" | "auto" | "loose" | "normal" | "strict";
17852 export type LineClamp = Globals | "none" | (number & {}) | (string & {});
17853 export type LineHeight<TLength = (string & {}) | 0> = Globals | TLength | "normal" | (string & {}) | (number & {});
17854 export type LineHeightStep<TLength = (string & {}) | 0> = Globals | TLength;
17855 export type ListStyle = Globals | "inside" | "none" | "outside" | (string & {});
17856 export type ListStyleImage = Globals | "none" | (string & {});
17857 export type ListStylePosition = Globals | "inside" | "outside";
17858 export type ListStyleType = Globals | "none" | (string & {});
17859 export type Margin<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17860 export type MarginBlock<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17861 export type MarginBlockEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17862 export type MarginBlockStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17863 export type MarginBottom<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17864 export type MarginInline<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17865 export type MarginInlineEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17866 export type MarginInlineStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17867 export type MarginLeft<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17868 export type MarginRight<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17869 export type MarginTop<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17870 export type Mask<TLength = (string & {}) | 0> = Globals | DataType.MaskLayer<TLength> | (string & {});
17871 export type MaskBorder = Globals | "alpha" | "luminance" | "none" | "repeat" | "round" | "space" | "stretch" | (string & {}) | (number & {});
17872 export type MaskBorderMode = Globals | "alpha" | "luminance";
17873 export type MaskBorderOutset<TLength = (string & {}) | 0> = Globals | TLength | (string & {}) | (number & {});
17874 export type MaskBorderRepeat = Globals | "repeat" | "round" | "space" | "stretch" | (string & {});
17875 export type MaskBorderSlice = Globals | (string & {}) | (number & {});
17876 export type MaskBorderSource = Globals | "none" | (string & {});
17877 export type MaskBorderWidth<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {}) | (number & {});
17878 export type MaskClip = Globals | DataType.GeometryBox | "no-clip" | (string & {});
17879 export type MaskComposite = Globals | DataType.CompositingOperator | (string & {});
17880 export type MaskImage = Globals | "none" | (string & {});
17881 export type MaskMode = Globals | DataType.MaskingMode | (string & {});
17882 export type MaskOrigin = Globals | DataType.GeometryBox | (string & {});
17883 export type MaskPosition<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | (string & {});
17884 export type MaskRepeat = Globals | DataType.RepeatStyle | (string & {});
17885 export type MaskSize<TLength = (string & {}) | 0> = Globals | DataType.BgSize<TLength> | (string & {});
17886 export type MaskType = Globals | "alpha" | "luminance";
17887 export type MathStyle = Globals | "compact" | "normal";
17888 export type MaxBlockSize<TLength = (string & {}) | 0> = Globals | TLength | "-moz-max-content" | "-moz-min-content" | "-webkit-fill-available" | "fit-content" | "max-content" | "min-content" | "none" | (string & {});
17889 export type MaxHeight<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fit-content" | "-webkit-max-content" | "-webkit-min-content" | "fit-content" | "intrinsic" | "max-content" | "min-content" | "none" | (string & {});
17890 export type MaxInlineSize<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fill-available" | "fit-content" | "max-content" | "min-content" | "none" | (string & {});
17891 export type MaxLines = Globals | "none" | (number & {}) | (string & {});
17892 export type MaxWidth<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fit-content" | "-webkit-max-content" | "-webkit-min-content" | "fit-content" | "intrinsic" | "max-content" | "min-content" | "none" | (string & {});
17893 export type MinBlockSize<TLength = (string & {}) | 0> = Globals | TLength | "-moz-max-content" | "-moz-min-content" | "-webkit-fill-available" | "auto" | "fit-content" | "max-content" | "min-content" | (string & {});
17894 export type MinHeight<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fit-content" | "-webkit-max-content" | "-webkit-min-content" | "auto" | "fit-content" | "intrinsic" | "max-content" | "min-content" | (string & {});
17895 export type MinInlineSize<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fill-available" | "auto" | "fit-content" | "max-content" | "min-content" | (string & {});
17896 export type MinWidth<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fill-available" | "-webkit-fit-content" | "-webkit-max-content" | "-webkit-min-content" | "auto" | "fit-content" | "intrinsic" | "max-content" | "min-content" | "min-intrinsic" | (string & {});
17897 export type MixBlendMode = Globals | DataType.BlendMode;
17898 export type Offset<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | DataType.GeometryBox | "auto" | "none" | (string & {});
17899 export type OffsetDistance<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17900 export type OffsetPath = Globals | DataType.GeometryBox | "none" | (string & {});
17901 export type OffsetRotate = Globals | "auto" | "reverse" | (string & {});
17902 export type ObjectFit = Globals | "contain" | "cover" | "fill" | "none" | "scale-down";
17903 export type ObjectPosition<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength>;
17904 export type OffsetAnchor<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | "auto";
17905 export type Opacity = Globals | (string & {}) | (number & {});
17906 export type Order = Globals | (number & {}) | (string & {});
17907 export type Orphans = Globals | (number & {}) | (string & {});
17908 export type Outline<TLength = (string & {}) | 0> = Globals | DataType.Color | DataType.LineStyle | DataType.LineWidth<TLength> | "auto" | "invert" | (string & {});
17909 export type OutlineColor = Globals | DataType.Color | "invert";
17910 export type OutlineOffset<TLength = (string & {}) | 0> = Globals | TLength;
17911 export type OutlineStyle = Globals | DataType.LineStyle | "auto" | (string & {});
17912 export type OutlineWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
17913 export type Overflow = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible" | (string & {});
17914 export type OverflowAnchor = Globals | "auto" | "none";
17915 export type OverflowBlock = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
17916 export type OverflowClipBox = Globals | "content-box" | "padding-box";
17917 export type OverflowClipMargin<TLength = (string & {}) | 0> = Globals | DataType.VisualBox | TLength | (string & {});
17918 export type OverflowInline = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
17919 export type OverflowWrap = Globals | "anywhere" | "break-word" | "normal";
17920 export type OverflowX = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible";
17921 export type OverflowY = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible";
17922 export type OverscrollBehavior = Globals | "auto" | "contain" | "none" | (string & {});
17923 export type OverscrollBehaviorBlock = Globals | "auto" | "contain" | "none";
17924 export type OverscrollBehaviorInline = Globals | "auto" | "contain" | "none";
17925 export type OverscrollBehaviorX = Globals | "auto" | "contain" | "none";
17926 export type OverscrollBehaviorY = Globals | "auto" | "contain" | "none";
17927 export type Padding<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17928 export type PaddingBlock<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17929 export type PaddingBlockEnd<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17930 export type PaddingBlockStart<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17931 export type PaddingBottom<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17932 export type PaddingInline<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17933 export type PaddingInlineEnd<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17934 export type PaddingInlineStart<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17935 export type PaddingLeft<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17936 export type PaddingRight<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17937 export type PaddingTop<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17938 export type PageBreakAfter = Globals | "always" | "auto" | "avoid" | "left" | "recto" | "right" | "verso";
17939 export type PageBreakBefore = Globals | "always" | "auto" | "avoid" | "left" | "recto" | "right" | "verso";
17940 export type PageBreakInside = Globals | "auto" | "avoid";
17941 export type PaintOrder = Globals | "fill" | "markers" | "normal" | "stroke" | (string & {});
17942 export type Perspective<TLength = (string & {}) | 0> = Globals | TLength | "none";
17943 export type PerspectiveOrigin<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength>;
17944 export type PlaceContent = Globals | DataType.ContentDistribution | DataType.ContentPosition | "baseline" | "normal" | (string & {});
17945 export type PlaceItems = Globals | DataType.SelfPosition | "baseline" | "normal" | "stretch" | (string & {});
17946 export type PlaceSelf = Globals | DataType.SelfPosition | "auto" | "baseline" | "normal" | "stretch" | (string & {});
17947 export type PointerEvents = Globals | "all" | "auto" | "fill" | "inherit" | "none" | "painted" | "stroke" | "visible" | "visibleFill" | "visiblePainted" | "visibleStroke";
17948 export type Position = Globals | "-webkit-sticky" | "absolute" | "fixed" | "relative" | "static" | "sticky";
17949 export type Quotes = Globals | "auto" | "none" | (string & {});
17950 export type Resize = Globals | "block" | "both" | "horizontal" | "inline" | "none" | "vertical";
17951 export type Right<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17952 export type Rotate = Globals | "none" | (string & {});
17953 export type RowGap<TLength = (string & {}) | 0> = Globals | TLength | "normal" | (string & {});
17954 export type RubyAlign = Globals | "center" | "space-around" | "space-between" | "start";
17955 export type RubyMerge = Globals | "auto" | "collapse" | "separate";
17956 export type RubyPosition = Globals | "alternate" | "inter-character" | "over" | "under" | (string & {});
17957 export type Scale = Globals | "none" | (string & {}) | (number & {});
17958 export type ScrollBehavior = Globals | "auto" | "smooth";
17959 export type ScrollMargin<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17960 export type ScrollMarginBlock<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17961 export type ScrollMarginBlockEnd<TLength = (string & {}) | 0> = Globals | TLength;
17962 export type ScrollMarginBlockStart<TLength = (string & {}) | 0> = Globals | TLength;
17963 export type ScrollMarginBottom<TLength = (string & {}) | 0> = Globals | TLength;
17964 export type ScrollMarginInline<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17965 export type ScrollMarginInlineEnd<TLength = (string & {}) | 0> = Globals | TLength;
17966 export type ScrollMarginInlineStart<TLength = (string & {}) | 0> = Globals | TLength;
17967 export type ScrollMarginLeft<TLength = (string & {}) | 0> = Globals | TLength;
17968 export type ScrollMarginRight<TLength = (string & {}) | 0> = Globals | TLength;
17969 export type ScrollMarginTop<TLength = (string & {}) | 0> = Globals | TLength;
17970 export type ScrollPadding<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17971 export type ScrollPaddingBlock<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17972 export type ScrollPaddingBlockEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17973 export type ScrollPaddingBlockStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17974 export type ScrollPaddingBottom<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17975 export type ScrollPaddingInline<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17976 export type ScrollPaddingInlineEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17977 export type ScrollPaddingInlineStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17978 export type ScrollPaddingLeft<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17979 export type ScrollPaddingRight<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17980 export type ScrollPaddingTop<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
17981 export type ScrollSnapAlign = Globals | "center" | "end" | "none" | "start" | (string & {});
17982 export type ScrollSnapCoordinate<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | "none" | (string & {});
17983 export type ScrollSnapDestination<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength>;
17984 export type ScrollSnapPointsX = Globals | "none" | (string & {});
17985 export type ScrollSnapPointsY = Globals | "none" | (string & {});
17986 export type ScrollSnapStop = Globals | "always" | "normal";
17987 export type ScrollSnapType = Globals | "block" | "both" | "inline" | "none" | "x" | "y" | (string & {});
17988 export type ScrollSnapTypeX = Globals | "mandatory" | "none" | "proximity";
17989 export type ScrollSnapTypeY = Globals | "mandatory" | "none" | "proximity";
17990 export type ScrollbarColor = Globals | "auto" | (string & {});
17991 export type ScrollbarGutter = Globals | "auto" | "stable" | (string & {});
17992 export type MsScrollbarTrackColor = Globals | DataType.Color;
17993 export type ScrollbarWidth = Globals | "auto" | "none" | "thin";
17994 export type ShapeImageThreshold = Globals | (string & {}) | (number & {});
17995 export type ShapeMargin<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
17996 export type ShapeOutside = Globals | DataType.Box | "margin-box" | "none" | (string & {});
17997 export type TabSize<TLength = (string & {}) | 0> = Globals | TLength | (number & {}) | (string & {});
17998 export type TableLayout = Globals | "auto" | "fixed";
17999 export type TextAlign = Globals | "center" | "end" | "justify" | "left" | "match-parent" | "right" | "start";
18000 export type TextAlignLast = Globals | "auto" | "center" | "end" | "justify" | "left" | "right" | "start";
18001 export type TextCombineUpright = Globals | "all" | "none" | (string & {});
18002 export type TextDecoration<TLength = (string & {}) | 0> = Globals | DataType.Color | TLength | "auto" | "blink" | "dashed" | "dotted" | "double" | "from-font" | "grammar-error" | "line-through" | "none" | "overline" | "solid" | "spelling-error" | "underline" | "wavy" | (string & {});
18003 export type TextDecorationColor = Globals | DataType.Color;
18004 export type TextDecorationLine = Globals | "blink" | "grammar-error" | "line-through" | "none" | "overline" | "spelling-error" | "underline" | (string & {});
18005 export type TextDecorationSkip = Globals | "box-decoration" | "edges" | "leading-spaces" | "none" | "objects" | "spaces" | "trailing-spaces" | (string & {});
18006 export type TextDecorationSkipInk = Globals | "all" | "auto" | "none";
18007 export type TextDecorationStyle = Globals | "dashed" | "dotted" | "double" | "solid" | "wavy";
18008 export type TextDecorationThickness<TLength = (string & {}) | 0> = Globals | TLength | "auto" | "from-font" | (string & {});
18009 export type TextEmphasis = Globals | DataType.Color | "circle" | "dot" | "double-circle" | "filled" | "none" | "open" | "sesame" | "triangle" | (string & {});
18010 export type TextEmphasisColor = Globals | DataType.Color;
18011 export type TextEmphasisPosition = Globals | (string & {});
18012 export type TextEmphasisStyle = Globals | "circle" | "dot" | "double-circle" | "filled" | "none" | "open" | "sesame" | "triangle" | (string & {});
18013 export type TextIndent<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
18014 export type TextJustify = Globals | "auto" | "inter-character" | "inter-word" | "none";
18015 export type TextOrientation = Globals | "mixed" | "sideways" | "upright";
18016 export type TextOverflow = Globals | "clip" | "ellipsis" | (string & {});
18017 export type TextRendering = Globals | "auto" | "geometricPrecision" | "optimizeLegibility" | "optimizeSpeed";
18018 export type TextShadow = Globals | "none" | (string & {});
18019 export type TextSizeAdjust = Globals | "auto" | "none" | (string & {});
18020 export type TextTransform = Globals | "capitalize" | "full-size-kana" | "full-width" | "lowercase" | "none" | "uppercase";
18021 export type TextUnderlineOffset<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
18022 export type TextUnderlinePosition = Globals | "auto" | "from-font" | "left" | "right" | "under" | (string & {});
18023 export type Top<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
18024 export type TouchAction = Globals | "-ms-manipulation" | "-ms-none" | "-ms-pinch-zoom" | "auto" | "manipulation" | "none" | "pan-down" | "pan-left" | "pan-right" | "pan-up" | "pan-x" | "pan-y" | "pinch-zoom" | (string & {});
18025 export type Transform = Globals | "none" | (string & {});
18026 export type TransformBox = Globals | "border-box" | "content-box" | "fill-box" | "stroke-box" | "view-box";
18027 export type TransformOrigin<TLength = (string & {}) | 0> = Globals | TLength | "bottom" | "center" | "left" | "right" | "top" | (string & {});
18028 export type TransformStyle = Globals | "flat" | "preserve-3d";
18029 export type Transition<TTime = string & {}> = Globals | DataType.SingleTransition<TTime> | (string & {});
18030 export type TransitionDelay<TTime = string & {}> = Globals | TTime | (string & {});
18031 export type TransitionDuration<TTime = string & {}> = Globals | TTime | (string & {});
18032 export type TransitionProperty = Globals | "all" | "none" | (string & {});
18033 export type TransitionTimingFunction = Globals | DataType.EasingFunction | (string & {});
18034 export type Translate<TLength = (string & {}) | 0> = Globals | TLength | "none" | (string & {});
18035 export type UnicodeBidi = Globals | "-moz-isolate" | "-moz-isolate-override" | "-moz-plaintext" | "-webkit-isolate" | "-webkit-isolate-override" | "-webkit-plaintext" | "bidi-override" | "embed" | "isolate" | "isolate-override" | "normal" | "plaintext";
18036 export type UserSelect = Globals | "-moz-none" | "all" | "auto" | "contain" | "element" | "none" | "text";
18037 export type VerticalAlign<TLength = (string & {}) | 0> = Globals | TLength | "baseline" | "bottom" | "middle" | "sub" | "super" | "text-bottom" | "text-top" | "top" | (string & {});
18038 export type Visibility = Globals | "collapse" | "hidden" | "visible";
18039 export type WhiteSpace = Globals | "-moz-pre-wrap" | "break-spaces" | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap";
18040 export type Widows = Globals | (number & {}) | (string & {});
18041 export type Width<TLength = (string & {}) | 0> = Globals | TLength | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "-webkit-fit-content" | "-webkit-max-content" | "auto" | "fit-content" | "intrinsic" | "max-content" | "min-content" | "min-intrinsic" | (string & {});
18042 export type WillChange = Globals | DataType.AnimateableFeature | "auto" | (string & {});
18043 export type WordBreak = Globals | "break-all" | "break-word" | "keep-all" | "normal";
18044 export type WordSpacing<TLength = (string & {}) | 0> = Globals | TLength | "normal";
18045 export type WordWrap = Globals | "break-word" | "normal";
18046 export type WritingMode = Globals | "horizontal-tb" | "sideways-lr" | "sideways-rl" | "vertical-lr" | "vertical-rl";
18047 export type ZIndex = Globals | "auto" | (number & {}) | (string & {});
18048 export type Zoom = Globals | "normal" | "reset" | (string & {}) | (number & {});
18049 export type MozAppearance = Globals | "-moz-mac-unified-toolbar" | "-moz-win-borderless-glass" | "-moz-win-browsertabbar-toolbox" | "-moz-win-communications-toolbox" | "-moz-win-communicationstext" | "-moz-win-exclude-glass" | "-moz-win-glass" | "-moz-win-media-toolbox" | "-moz-win-mediatext" | "-moz-window-button-box" | "-moz-window-button-box-maximized" | "-moz-window-button-close" | "-moz-window-button-maximize" | "-moz-window-button-minimize" | "-moz-window-button-restore" | "-moz-window-frame-bottom" | "-moz-window-frame-left" | "-moz-window-frame-right" | "-moz-window-titlebar" | "-moz-window-titlebar-maximized" | "button" | "button-arrow-down" | "button-arrow-next" | "button-arrow-previous" | "button-arrow-up" | "button-bevel" | "button-focus" | "caret" | "checkbox" | "checkbox-container" | "checkbox-label" | "checkmenuitem" | "dualbutton" | "groupbox" | "listbox" | "listitem" | "menuarrow" | "menubar" | "menucheckbox" | "menuimage" | "menuitem" | "menuitemtext" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "menupopup" | "menuradio" | "menuseparator" | "meterbar" | "meterchunk" | "none" | "progressbar" | "progressbar-vertical" | "progresschunk" | "progresschunk-vertical" | "radio" | "radio-container" | "radio-label" | "radiomenuitem" | "range" | "range-thumb" | "resizer" | "resizerpanel" | "scale-horizontal" | "scale-vertical" | "scalethumb-horizontal" | "scalethumb-vertical" | "scalethumbend" | "scalethumbstart" | "scalethumbtick" | "scrollbarbutton-down" | "scrollbarbutton-left" | "scrollbarbutton-right" | "scrollbarbutton-up" | "scrollbarthumb-horizontal" | "scrollbarthumb-vertical" | "scrollbartrack-horizontal" | "scrollbartrack-vertical" | "searchfield" | "separator" | "sheet" | "spinner" | "spinner-downbutton" | "spinner-textfield" | "spinner-upbutton" | "splitter" | "statusbar" | "statusbarpanel" | "tab" | "tab-scroll-arrow-back" | "tab-scroll-arrow-forward" | "tabpanel" | "tabpanels" | "textfield" | "textfield-multiline" | "toolbar" | "toolbarbutton" | "toolbarbutton-dropdown" | "toolbargripper" | "toolbox" | "tooltip" | "treeheader" | "treeheadercell" | "treeheadersortarrow" | "treeitem" | "treeline" | "treetwisty" | "treetwistyopen" | "treeview";
18050 export type MozBinding = Globals | "none" | (string & {});
18051 export type MozBorderBottomColors = Globals | DataType.Color | "none" | (string & {});
18052 export type MozBorderLeftColors = Globals | DataType.Color | "none" | (string & {});
18053 export type MozBorderRightColors = Globals | DataType.Color | "none" | (string & {});
18054 export type MozBorderTopColors = Globals | DataType.Color | "none" | (string & {});
18055 export type MozContextProperties = Globals | "fill" | "fill-opacity" | "none" | "stroke" | "stroke-opacity" | (string & {});
18056 export type MozFloatEdge = Globals | "border-box" | "content-box" | "margin-box" | "padding-box";
18057 export type MozForceBrokenImageIcon = Globals | 0 | (string & {}) | 1;
18058 export type MozImageRegion = Globals | "auto" | (string & {});
18059 export type MozOrient = Globals | "block" | "horizontal" | "inline" | "vertical";
18060 export type MozOutlineRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
18061 export type MozOutlineRadiusBottomleft<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
18062 export type MozOutlineRadiusBottomright<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
18063 export type MozOutlineRadiusTopleft<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
18064 export type MozOutlineRadiusTopright<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
18065 export type MozStackSizing = Globals | "ignore" | "stretch-to-fit";
18066 export type MozTextBlink = Globals | "blink" | "none";
18067 export type MozUserFocus = Globals | "ignore" | "none" | "normal" | "select-after" | "select-all" | "select-before" | "select-menu" | "select-same";
18068 export type MozUserInput = Globals | "auto" | "disabled" | "enabled" | "none";
18069 export type MozUserModify = Globals | "read-only" | "read-write" | "write-only";
18070 export type MozWindowDragging = Globals | "drag" | "no-drag";
18071 export type MozWindowShadow = Globals | "default" | "menu" | "none" | "sheet" | "tooltip";
18072 export type MsAccelerator = Globals | "false" | "true";
18073 export type MsBlockProgression = Globals | "bt" | "lr" | "rl" | "tb";
18074 export type MsContentZoomChaining = Globals | "chained" | "none";
18075 export type MsContentZoomLimit = Globals | (string & {});
18076 export type MsContentZoomLimitMax = Globals | (string & {});
18077 export type MsContentZoomLimitMin = Globals | (string & {});
18078 export type MsContentZoomSnap = Globals | "mandatory" | "none" | "proximity" | (string & {});
18079 export type MsContentZoomSnapPoints = Globals | (string & {});
18080 export type MsContentZoomSnapType = Globals | "mandatory" | "none" | "proximity";
18081 export type MsContentZooming = Globals | "none" | "zoom";
18082 export type MsFilter = Globals | (string & {});
18083 export type MsFlowFrom = Globals | "none" | (string & {});
18084 export type MsFlowInto = Globals | "none" | (string & {});
18085 export type MsGridColumns<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | "none" | (string & {});
18086 export type MsGridRows<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | "none" | (string & {});
18087 export type MsHighContrastAdjust = Globals | "auto" | "none";
18088 export type MsHyphenateLimitChars = Globals | "auto" | (string & {}) | (number & {});
18089 export type MsHyphenateLimitLines = Globals | "no-limit" | (number & {}) | (string & {});
18090 export type MsHyphenateLimitZone<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
18091 export type MsImeAlign = Globals | "after" | "auto";
18092 export type MsOverflowStyle = Globals | "-ms-autohiding-scrollbar" | "auto" | "none" | "scrollbar";
18093 export type MsScrollChaining = Globals | "chained" | "none";
18094 export type MsScrollLimit = Globals | (string & {});
18095 export type MsScrollLimitXMax<TLength = (string & {}) | 0> = Globals | TLength | "auto";
18096 export type MsScrollLimitXMin<TLength = (string & {}) | 0> = Globals | TLength;
18097 export type MsScrollLimitYMax<TLength = (string & {}) | 0> = Globals | TLength | "auto";
18098 export type MsScrollLimitYMin<TLength = (string & {}) | 0> = Globals | TLength;
18099 export type MsScrollRails = Globals | "none" | "railed";
18100 export type MsScrollSnapPointsX = Globals | (string & {});
18101 export type MsScrollSnapPointsY = Globals | (string & {});
18102 export type MsScrollSnapType = Globals | "mandatory" | "none" | "proximity";
18103 export type MsScrollSnapX = Globals | (string & {});
18104 export type MsScrollSnapY = Globals | (string & {});
18105 export type MsScrollTranslation = Globals | "none" | "vertical-to-horizontal";
18106 export type MsScrollbar3dlightColor = Globals | DataType.Color;
18107 export type MsScrollbarArrowColor = Globals | DataType.Color;
18108 export type MsScrollbarBaseColor = Globals | DataType.Color;
18109 export type MsScrollbarDarkshadowColor = Globals | DataType.Color;
18110 export type MsScrollbarFaceColor = Globals | DataType.Color;
18111 export type MsScrollbarHighlightColor = Globals | DataType.Color;
18112 export type MsScrollbarShadowColor = Globals | DataType.Color;
18113 export type MsTextAutospace = Globals | "ideograph-alpha" | "ideograph-numeric" | "ideograph-parenthesis" | "ideograph-space" | "none";
18114 export type MsTouchSelect = Globals | "grippers" | "none";
18115 export type MsUserSelect = Globals | "element" | "none" | "text";
18116 export type MsWrapFlow = Globals | "auto" | "both" | "clear" | "end" | "maximum" | "start";
18117 export type MsWrapMargin<TLength = (string & {}) | 0> = Globals | TLength;
18118 export type MsWrapThrough = Globals | "none" | "wrap";
18119 export type WebkitAppearance = Globals | "-apple-pay-button" | "button" | "button-bevel" | "caret" | "checkbox" | "default-button" | "inner-spin-button" | "listbox" | "listitem" | "media-controls-background" | "media-controls-fullscreen-background" | "media-current-time-display" | "media-enter-fullscreen-button" | "media-exit-fullscreen-button" | "media-fullscreen-button" | "media-mute-button" | "media-overlay-play-button" | "media-play-button" | "media-seek-back-button" | "media-seek-forward-button" | "media-slider" | "media-sliderthumb" | "media-time-remaining-display" | "media-toggle-closed-captions-button" | "media-volume-slider" | "media-volume-slider-container" | "media-volume-sliderthumb" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "meter" | "none" | "progress-bar" | "progress-bar-value" | "push-button" | "radio" | "searchfield" | "searchfield-cancel-button" | "searchfield-decoration" | "searchfield-results-button" | "searchfield-results-decoration" | "slider-horizontal" | "slider-vertical" | "sliderthumb-horizontal" | "sliderthumb-vertical" | "square-button" | "textarea" | "textfield";
18120 export type WebkitBorderBefore<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
18121 export type WebkitBorderBeforeColor = Globals | DataType.Color;
18122 export type WebkitBorderBeforeStyle = Globals | DataType.LineStyle | (string & {});
18123 export type WebkitBorderBeforeWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | (string & {});
18124 export type WebkitBoxReflect<TLength = (string & {}) | 0> = Globals | TLength | "above" | "below" | "left" | "right" | (string & {});
18125 export type WebkitLineClamp = Globals | "none" | (number & {}) | (string & {});
18126 export type WebkitMask<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | DataType.RepeatStyle | DataType.Box | "border" | "content" | "none" | "padding" | "text" | (string & {});
18127 export type WebkitMaskAttachment = Globals | DataType.Attachment | (string & {});
18128 export type WebkitMaskClip = Globals | DataType.Box | "border" | "content" | "padding" | "text" | (string & {});
18129 export type WebkitMaskComposite = Globals | DataType.CompositeStyle | (string & {});
18130 export type WebkitMaskImage = Globals | "none" | (string & {});
18131 export type WebkitMaskOrigin = Globals | DataType.Box | "border" | "content" | "padding" | (string & {});
18132 export type WebkitMaskPosition<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | (string & {});
18133 export type WebkitMaskPositionX<TLength = (string & {}) | 0> = Globals | TLength | "center" | "left" | "right" | (string & {});
18134 export type WebkitMaskPositionY<TLength = (string & {}) | 0> = Globals | TLength | "bottom" | "center" | "top" | (string & {});
18135 export type WebkitMaskRepeat = Globals | DataType.RepeatStyle | (string & {});
18136 export type WebkitMaskRepeatX = Globals | "no-repeat" | "repeat" | "round" | "space";
18137 export type WebkitMaskRepeatY = Globals | "no-repeat" | "repeat" | "round" | "space";
18138 export type WebkitMaskSize<TLength = (string & {}) | 0> = Globals | DataType.BgSize<TLength> | (string & {});
18139 export type WebkitOverflowScrolling = Globals | "auto" | "touch";
18140 export type WebkitTapHighlightColor = Globals | DataType.Color;
18141 export type WebkitTextFillColor = Globals | DataType.Color;
18142 export type WebkitTextStroke<TLength = (string & {}) | 0> = Globals | DataType.Color | TLength | (string & {});
18143 export type WebkitTextStrokeColor = Globals | DataType.Color;
18144 export type WebkitTextStrokeWidth<TLength = (string & {}) | 0> = Globals | TLength;
18145 export type WebkitTouchCallout = Globals | "default" | "none";
18146 export type WebkitUserModify = Globals | "read-only" | "read-write" | "read-write-plaintext-only";
18147 export type AlignmentBaseline = Globals | "after-edge" | "alphabetic" | "auto" | "baseline" | "before-edge" | "central" | "hanging" | "ideographic" | "mathematical" | "middle" | "text-after-edge" | "text-before-edge";
18148 export type BaselineShift<TLength = (string & {}) | 0> = Globals | TLength | "baseline" | "sub" | "super" | (string & {});
18149 export type ClipRule = Globals | "evenodd" | "nonzero";
18150 export type ColorInterpolation = Globals | "auto" | "linearRGB" | "sRGB";
18151 export type ColorRendering = Globals | "auto" | "optimizeQuality" | "optimizeSpeed";
18152 export type DominantBaseline = Globals | "alphabetic" | "auto" | "central" | "hanging" | "ideographic" | "mathematical" | "middle" | "no-change" | "reset-size" | "text-after-edge" | "text-before-edge" | "use-script";
18153 export type Fill = Globals | DataType.Paint;
18154 export type FillOpacity = Globals | (number & {}) | (string & {});
18155 export type FillRule = Globals | "evenodd" | "nonzero";
18156 export type FloodColor = Globals | DataType.Color | "currentColor";
18157 export type FloodOpacity = Globals | (number & {}) | (string & {});
18158 export type GlyphOrientationVertical = Globals | "auto" | (string & {}) | (number & {});
18159 export type LightingColor = Globals | DataType.Color | "currentColor";
18160 export type Marker = Globals | "none" | (string & {});
18161 export type MarkerEnd = Globals | "none" | (string & {});
18162 export type MarkerMid = Globals | "none" | (string & {});
18163 export type MarkerStart = Globals | "none" | (string & {});
18164 export type ShapeRendering = Globals | "auto" | "crispEdges" | "geometricPrecision" | "optimizeSpeed";
18165 export type StopColor = Globals | DataType.Color | "currentColor";
18166 export type StopOpacity = Globals | (number & {}) | (string & {});
18167 export type Stroke = Globals | DataType.Paint;
18168 export type StrokeDasharray<TLength = (string & {}) | 0> = Globals | DataType.Dasharray<TLength> | "none";
18169 export type StrokeDashoffset<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
18170 export type StrokeLinecap = Globals | "butt" | "round" | "square";
18171 export type StrokeLinejoin = Globals | "bevel" | "miter" | "round";
18172 export type StrokeMiterlimit = Globals | (number & {}) | (string & {});
18173 export type StrokeOpacity = Globals | (number & {}) | (string & {});
18174 export type StrokeWidth<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
18175 export type TextAnchor = Globals | "end" | "middle" | "start";
18176 export type VectorEffect = Globals | "non-scaling-stroke" | "none";
18177}
18178export namespace AtRule {
18179 export interface CounterStyle<TLength = (string & {}) | 0, TTime = string & {}> {
18180 additiveSymbols?: string | undefined;
18181 fallback?: string | undefined;
18182 negative?: string | undefined;
18183 pad?: string | undefined;
18184 prefix?: string | undefined;
18185 range?: Range | undefined;
18186 speakAs?: SpeakAs | undefined;
18187 suffix?: string | undefined;
18188 symbols?: string | undefined;
18189 system?: System | undefined;
18190 }
18191 export interface CounterStyleHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
18192 "additive-symbols"?: string | undefined;
18193 fallback?: string | undefined;
18194 negative?: string | undefined;
18195 pad?: string | undefined;
18196 prefix?: string | undefined;
18197 range?: Range | undefined;
18198 "speak-as"?: SpeakAs | undefined;
18199 suffix?: string | undefined;
18200 symbols?: string | undefined;
18201 system?: System | undefined;
18202 }
18203 export type CounterStyleFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<CounterStyle<TLength, TTime>>;
18204 export type CounterStyleHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<CounterStyleHyphen<TLength, TTime>>;
18205 export interface FontFace<TLength = (string & {}) | 0, TTime = string & {}> {
18206 MozFontFeatureSettings?: FontFeatureSettings | undefined;
18207 ascentOverride?: AscentOverride | undefined;
18208 descentOverride?: DescentOverride | undefined;
18209 fontDisplay?: FontDisplay | undefined;
18210 fontFamily?: string | undefined;
18211 fontFeatureSettings?: FontFeatureSettings | undefined;
18212 fontStretch?: FontStretch | undefined;
18213 fontStyle?: FontStyle | undefined;
18214 fontVariant?: FontVariant | undefined;
18215 fontVariationSettings?: FontVariationSettings | undefined;
18216 fontWeight?: FontWeight | undefined;
18217 lineGapOverride?: LineGapOverride | undefined;
18218 sizeAdjust?: string | undefined;
18219 src?: string | undefined;
18220 unicodeRange?: string | undefined;
18221 }
18222 export interface FontFaceHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
18223 "-moz-font-feature-settings"?: FontFeatureSettings | undefined;
18224 "ascent-override"?: AscentOverride | undefined;
18225 "descent-override"?: DescentOverride | undefined;
18226 "font-display"?: FontDisplay | undefined;
18227 "font-family"?: string | undefined;
18228 "font-feature-settings"?: FontFeatureSettings | undefined;
18229 "font-stretch"?: FontStretch | undefined;
18230 "font-style"?: FontStyle | undefined;
18231 "font-variant"?: FontVariant | undefined;
18232 "font-variation-settings"?: FontVariationSettings | undefined;
18233 "font-weight"?: FontWeight | undefined;
18234 "line-gap-override"?: LineGapOverride | undefined;
18235 "size-adjust"?: string | undefined;
18236 src?: string | undefined;
18237 "unicode-range"?: string | undefined;
18238 }
18239 export type FontFaceFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<FontFace<TLength, TTime>>;
18240 export type FontFaceHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<FontFaceHyphen<TLength, TTime>>;
18241 export interface Page<TLength = (string & {}) | 0, TTime = string & {}> {
18242 bleed?: Bleed<TLength> | undefined;
18243 marks?: Marks | undefined;
18244 size?: Size<TLength> | undefined;
18245 }
18246 export interface PageHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
18247 bleed?: Bleed<TLength> | undefined;
18248 marks?: Marks | undefined;
18249 size?: Size<TLength> | undefined;
18250 }
18251 export type PageFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<Page<TLength, TTime>>;
18252 export type PageHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<PageHyphen<TLength, TTime>>;
18253 export interface Property<TLength = (string & {}) | 0, TTime = string & {}> {
18254 inherits?: Inherits | undefined;
18255 initialValue?: string | undefined;
18256 syntax?: string | undefined;
18257 }
18258 export interface PropertyHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
18259 inherits?: Inherits | undefined;
18260 "initial-value"?: string | undefined;
18261 syntax?: string | undefined;
18262 }
18263 export type PropertyFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<Property<TLength, TTime>>;
18264 export type PropertyHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<PropertyHyphen<TLength, TTime>>;
18265 export interface Viewport<TLength = (string & {}) | 0, TTime = string & {}> {
18266 height?: Height<TLength> | undefined;
18267 maxHeight?: MaxHeight<TLength> | undefined;
18268 maxWidth?: MaxWidth<TLength> | undefined;
18269 maxZoom?: MaxZoom | undefined;
18270 minHeight?: MinHeight<TLength> | undefined;
18271 minWidth?: MinWidth<TLength> | undefined;
18272 minZoom?: MinZoom | undefined;
18273 orientation?: Orientation | undefined;
18274 userZoom?: UserZoom | undefined;
18275 viewportFit?: ViewportFit | undefined;
18276 width?: Width<TLength> | undefined;
18277 zoom?: Zoom | undefined;
18278 }
18279 export interface ViewportHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
18280 height?: Height<TLength> | undefined;
18281 "max-height"?: MaxHeight<TLength> | undefined;
18282 "max-width"?: MaxWidth<TLength> | undefined;
18283 "max-zoom"?: MaxZoom | undefined;
18284 "min-height"?: MinHeight<TLength> | undefined;
18285 "min-width"?: MinWidth<TLength> | undefined;
18286 "min-zoom"?: MinZoom | undefined;
18287 orientation?: Orientation | undefined;
18288 "user-zoom"?: UserZoom | undefined;
18289 "viewport-fit"?: ViewportFit | undefined;
18290 width?: Width<TLength> | undefined;
18291 zoom?: Zoom | undefined;
18292 }
18293 export type ViewportFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<Viewport<TLength, TTime>>;
18294 export type ViewportHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<ViewportHyphen<TLength, TTime>>;
18295 type Range = "auto" | (string & {});
18296 type SpeakAs = "auto" | "bullets" | "numbers" | "spell-out" | "words" | (string & {});
18297 type System = "additive" | "alphabetic" | "cyclic" | "fixed" | "numeric" | "symbolic" | (string & {});
18298 type FontFeatureSettings = "normal" | (string & {});
18299 type AscentOverride = "normal" | (string & {});
18300 type DescentOverride = "normal" | (string & {});
18301 type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
18302 type FontStretch = DataType.FontStretchAbsolute | (string & {});
18303 type FontStyle = "italic" | "normal" | "oblique" | (string & {});
18304 type FontVariant = DataType.EastAsianVariantValues | "all-petite-caps" | "all-small-caps" | "common-ligatures" | "contextual" | "diagonal-fractions" | "discretionary-ligatures" | "full-width" | "historical-forms" | "historical-ligatures" | "lining-nums" | "no-common-ligatures" | "no-contextual" | "no-discretionary-ligatures" | "no-historical-ligatures" | "none" | "normal" | "oldstyle-nums" | "ordinal" | "petite-caps" | "proportional-nums" | "proportional-width" | "ruby" | "slashed-zero" | "small-caps" | "stacked-fractions" | "tabular-nums" | "titling-caps" | "unicase" | (string & {});
18305 type FontVariationSettings = "normal" | (string & {});
18306 type FontWeight = DataType.FontWeightAbsolute | (string & {});
18307 type LineGapOverride = "normal" | (string & {});
18308 type Bleed<TLength> = TLength | "auto";
18309 type Marks = "crop" | "cross" | "none" | (string & {});
18310 type Size<TLength> = DataType.PageSize | TLength | "auto" | "landscape" | "portrait" | (string & {});
18311 type Inherits = "false" | "true";
18312 type Height<TLength> = DataType.ViewportLength<TLength> | (string & {});
18313 type MaxHeight<TLength> = DataType.ViewportLength<TLength>;
18314 type MaxWidth<TLength> = DataType.ViewportLength<TLength>;
18315 type MaxZoom = "auto" | (string & {}) | (number & {});
18316 type MinHeight<TLength> = DataType.ViewportLength<TLength>;
18317 type MinWidth<TLength> = DataType.ViewportLength<TLength>;
18318 type MinZoom = "auto" | (string & {}) | (number & {});
18319 type Orientation = "auto" | "landscape" | "portrait";
18320 type UserZoom = "fixed" | "zoom";
18321 type ViewportFit = "auto" | "contain" | "cover";
18322 type Width<TLength> = DataType.ViewportLength<TLength> | (string & {});
18323 type Zoom = "auto" | (string & {}) | (number & {});
18324}
18325declare namespace DataType {
18326 type AbsoluteSize = "large" | "medium" | "small" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large";
18327 type AnimateableFeature = "contents" | "scroll-position" | (string & {});
18328 type Attachment = "fixed" | "local" | "scroll";
18329 type BgPosition<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top" | (string & {});
18330 type BgSize<TLength> = TLength | "auto" | "contain" | "cover" | (string & {});
18331 type BlendMode = "color" | "color-burn" | "color-dodge" | "darken" | "difference" | "exclusion" | "hard-light" | "hue" | "lighten" | "luminosity" | "multiply" | "normal" | "overlay" | "saturation" | "screen" | "soft-light";
18332 type Box = "border-box" | "content-box" | "padding-box";
18333 type Color = NamedColor | DeprecatedSystemColor | "currentcolor" | (string & {});
18334 type CompatAuto = "button" | "checkbox" | "listbox" | "menulist" | "meter" | "progress-bar" | "push-button" | "radio" | "searchfield" | "slider-horizontal" | "square-button" | "textarea";
18335 type CompositeStyle = "clear" | "copy" | "destination-atop" | "destination-in" | "destination-out" | "destination-over" | "source-atop" | "source-in" | "source-out" | "source-over" | "xor";
18336 type CompositingOperator = "add" | "exclude" | "intersect" | "subtract";
18337 type ContentDistribution = "space-around" | "space-between" | "space-evenly" | "stretch";
18338 type ContentList = Quote | "contents" | (string & {});
18339 type ContentPosition = "center" | "end" | "flex-end" | "flex-start" | "start";
18340 type CubicBezierTimingFunction = "ease" | "ease-in" | "ease-in-out" | "ease-out" | (string & {});
18341 type Dasharray<TLength> = TLength | (string & {}) | (number & {});
18342 type DeprecatedSystemColor = "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText";
18343 type DisplayInside = "-ms-flexbox" | "-ms-grid" | "-webkit-flex" | "flex" | "flow" | "flow-root" | "grid" | "ruby" | "table";
18344 type DisplayInternal = "ruby-base" | "ruby-base-container" | "ruby-text" | "ruby-text-container" | "table-caption" | "table-cell" | "table-column" | "table-column-group" | "table-footer-group" | "table-header-group" | "table-row" | "table-row-group";
18345 type DisplayLegacy = "-ms-inline-flexbox" | "-ms-inline-grid" | "-webkit-inline-flex" | "inline-block" | "inline-flex" | "inline-grid" | "inline-list-item" | "inline-table";
18346 type DisplayOutside = "block" | "inline" | "run-in";
18347 type EasingFunction = CubicBezierTimingFunction | StepTimingFunction | "linear";
18348 type EastAsianVariantValues = "jis04" | "jis78" | "jis83" | "jis90" | "simplified" | "traditional";
18349 type FinalBgLayer<TLength> = Color | BgPosition<TLength> | RepeatStyle | Attachment | Box | "none" | (string & {});
18350 type FontStretchAbsolute = "condensed" | "expanded" | "extra-condensed" | "extra-expanded" | "normal" | "semi-condensed" | "semi-expanded" | "ultra-condensed" | "ultra-expanded" | (string & {});
18351 type FontWeightAbsolute = "bold" | "normal" | (number & {}) | (string & {});
18352 type GenericFamily = "cursive" | "fantasy" | "monospace" | "sans-serif" | "serif";
18353 type GeometryBox = Box | "fill-box" | "margin-box" | "stroke-box" | "view-box";
18354 type GridLine = "auto" | (string & {}) | (number & {});
18355 type LineStyle = "dashed" | "dotted" | "double" | "groove" | "hidden" | "inset" | "none" | "outset" | "ridge" | "solid";
18356 type LineWidth<TLength> = TLength | "medium" | "thick" | "thin";
18357 type MaskLayer<TLength> = Position<TLength> | RepeatStyle | GeometryBox | CompositingOperator | MaskingMode | "no-clip" | "none" | (string & {});
18358 type MaskingMode = "alpha" | "luminance" | "match-source";
18359 type NamedColor = "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen";
18360 type PageSize = "A3" | "A4" | "A5" | "B4" | "B5" | "JIS-B4" | "JIS-B5" | "ledger" | "legal" | "letter";
18361 type Paint = Color | "child" | "context-fill" | "context-stroke" | "none" | (string & {});
18362 type Position<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top" | (string & {});
18363 type Quote = "close-quote" | "no-close-quote" | "no-open-quote" | "open-quote";
18364 type RepeatStyle = "no-repeat" | "repeat" | "repeat-x" | "repeat-y" | "round" | "space" | (string & {});
18365 type SelfPosition = "center" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "start";
18366 type SingleAnimation<TTime> = EasingFunction | SingleAnimationDirection | SingleAnimationFillMode | TTime | "infinite" | "none" | "paused" | "running" | (string & {}) | (number & {});
18367 type SingleAnimationDirection = "alternate" | "alternate-reverse" | "normal" | "reverse";
18368 type SingleAnimationFillMode = "backwards" | "both" | "forwards" | "none";
18369 type SingleTransition<TTime> = EasingFunction | TTime | "all" | "none" | (string & {});
18370 type StepTimingFunction = "step-end" | "step-start" | (string & {});
18371 type TrackBreadth<TLength> = TLength | "auto" | "max-content" | "min-content" | (string & {});
18372 type ViewportLength<TLength> = TLength | "auto" | (string & {});
18373 type VisualBox = "border-box" | "content-box" | "padding-box";
18374}
\No newline at end of file