UNPKG

484 kBTypeScriptView Raw
1// Definitions by: Junyoung Clare Jang <https://github.com/Ailrun>
2// TypeScript Version: 2.2
3
4interface RegisteredCache {
5 [key: string]: string
6}
7
8interface StyleSheet {
9 container: HTMLElement
10 nonce?: string
11 key: string
12 insert(rule: string): void
13 flush(): void
14 tags: Array<HTMLStyleElement>
15}
16
17interface EmotionCache {
18 inserted: {
19 [key: string]: string | true
20 }
21 registered: RegisteredCache
22 sheet: StyleSheet
23 key: string
24 compat?: true
25 nonce?: string
26 insert(
27 selector: string,
28 serialized: SerializedStyles,
29 sheet: StyleSheet,
30 shouldCache: boolean
31 ): string | void
32}
33
34interface SerializedStyles {
35 name: string
36 styles: string
37 map?: string
38 next?: SerializedStyles
39}
40
41type Fallback<T> = { [P in keyof T]: T[P] | readonly NonNullable<T[P]>[] };
42
43interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime = string & {}> {
44 /**
45 * The **`accent-color`** CSS property sets the accent color for user-interface controls generated by some elements.
46 *
47 * **Syntax**: `auto | <color>`
48 *
49 * **Initial value**: `auto`
50 *
51 * | Chrome | Firefox | Safari | Edge | IE |
52 * | :----: | :-----: | :------: | :--: | :-: |
53 * | **93** | **92** | **15.4** | n/a | No |
54 *
55 * @see https://developer.mozilla.org/docs/Web/CSS/accent-color
56 */
57 accentColor?: Property.AccentColor | undefined;
58 /**
59 * 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.
60 *
61 * **Syntax**: `normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>`
62 *
63 * **Initial value**: `normal`
64 *
65 * | Chrome | Firefox | Safari | Edge | IE |
66 * | :------: | :-----: | :-----: | :----: | :----: |
67 * | **29** | **28** | **9** | **12** | **11** |
68 * | 21 _-x-_ | | 7 _-x-_ | | |
69 *
70 * @see https://developer.mozilla.org/docs/Web/CSS/align-content
71 */
72 alignContent?: Property.AlignContent | undefined;
73 /**
74 * 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.
75 *
76 * **Syntax**: `normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]`
77 *
78 * **Initial value**: `normal`
79 *
80 * | Chrome | Firefox | Safari | Edge | IE |
81 * | :------: | :-----: | :-----: | :----: | :----: |
82 * | **29** | **20** | **9** | **12** | **11** |
83 * | 21 _-x-_ | | 7 _-x-_ | | |
84 *
85 * @see https://developer.mozilla.org/docs/Web/CSS/align-items
86 */
87 alignItems?: Property.AlignItems | undefined;
88 /**
89 * 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.
90 *
91 * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`
92 *
93 * **Initial value**: `auto`
94 *
95 * | Chrome | Firefox | Safari | Edge | IE |
96 * | :------: | :-----: | :-----: | :----: | :----: |
97 * | **29** | **20** | **9** | **12** | **10** |
98 * | 21 _-x-_ | | 7 _-x-_ | | |
99 *
100 * @see https://developer.mozilla.org/docs/Web/CSS/align-self
101 */
102 alignSelf?: Property.AlignSelf | undefined;
103 /**
104 * The **`align-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their block axis.
105 *
106 * **Syntax**: `[ normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position> ]#`
107 *
108 * **Initial value**: `normal`
109 *
110 * | Chrome | Firefox | Safari | Edge | IE |
111 * | :----: | :-----: | :----: | :--: | :-: |
112 * | No | n/a | No | n/a | No |
113 *
114 * @see https://developer.mozilla.org/docs/Web/CSS/align-tracks
115 */
116 alignTracks?: Property.AlignTracks | undefined;
117 /**
118 * The **`animation-composition`** CSS property specifies the composite operation to use when multiple animations affect the same property simultaneously.
119 *
120 * **Syntax**: `<single-animation-composition>#`
121 *
122 * **Initial value**: `replace`
123 *
124 * | Chrome | Firefox | Safari | Edge | IE |
125 * | :-----: | :-----: | :----: | :--: | :-: |
126 * | **112** | **115** | **16** | n/a | No |
127 *
128 * @see https://developer.mozilla.org/docs/Web/CSS/animation-composition
129 */
130 animationComposition?: Property.AnimationComposition | undefined;
131 /**
132 * 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.
133 *
134 * **Syntax**: `<time>#`
135 *
136 * **Initial value**: `0s`
137 *
138 * | Chrome | Firefox | Safari | Edge | IE |
139 * | :-----: | :-----: | :-----: | :----: | :----: |
140 * | **43** | **16** | **9** | **12** | **10** |
141 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
142 *
143 * @see https://developer.mozilla.org/docs/Web/CSS/animation-delay
144 */
145 animationDelay?: Property.AnimationDelay<TTime> | undefined;
146 /**
147 * 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.
148 *
149 * **Syntax**: `<single-animation-direction>#`
150 *
151 * **Initial value**: `normal`
152 *
153 * | Chrome | Firefox | Safari | Edge | IE |
154 * | :-----: | :-----: | :-----: | :----: | :----: |
155 * | **43** | **16** | **9** | **12** | **10** |
156 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
157 *
158 * @see https://developer.mozilla.org/docs/Web/CSS/animation-direction
159 */
160 animationDirection?: Property.AnimationDirection | undefined;
161 /**
162 * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
163 *
164 * **Syntax**: `<time>#`
165 *
166 * **Initial value**: `0s`
167 *
168 * | Chrome | Firefox | Safari | Edge | IE |
169 * | :-----: | :-----: | :-----: | :----: | :----: |
170 * | **43** | **16** | **9** | **12** | **10** |
171 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
172 *
173 * @see https://developer.mozilla.org/docs/Web/CSS/animation-duration
174 */
175 animationDuration?: Property.AnimationDuration<TTime> | undefined;
176 /**
177 * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
178 *
179 * **Syntax**: `<single-animation-fill-mode>#`
180 *
181 * **Initial value**: `none`
182 *
183 * | Chrome | Firefox | Safari | Edge | IE |
184 * | :-----: | :-----: | :-----: | :----: | :----: |
185 * | **43** | **16** | **9** | **12** | **10** |
186 * | 3 _-x-_ | 5 _-x-_ | 5 _-x-_ | | |
187 *
188 * @see https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode
189 */
190 animationFillMode?: Property.AnimationFillMode | undefined;
191 /**
192 * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
193 *
194 * **Syntax**: `<single-animation-iteration-count>#`
195 *
196 * **Initial value**: `1`
197 *
198 * | Chrome | Firefox | Safari | Edge | IE |
199 * | :-----: | :-----: | :-----: | :----: | :----: |
200 * | **43** | **16** | **9** | **12** | **10** |
201 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
202 *
203 * @see https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count
204 */
205 animationIterationCount?: Property.AnimationIterationCount | undefined;
206 /**
207 * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules that describe the animation to apply to an element. Multiple `@keyframe` at-rules are specified as a comma-separated list of names. If the specified name does not match any `@keyframe` at-rule, no properties are animated.
208 *
209 * **Syntax**: `[ none | <keyframes-name> ]#`
210 *
211 * **Initial value**: `none`
212 *
213 * | Chrome | Firefox | Safari | Edge | IE |
214 * | :-----: | :-----: | :-----: | :----: | :----: |
215 * | **43** | **16** | **9** | **12** | **10** |
216 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
217 *
218 * @see https://developer.mozilla.org/docs/Web/CSS/animation-name
219 */
220 animationName?: Property.AnimationName | undefined;
221 /**
222 * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
223 *
224 * **Syntax**: `<single-animation-play-state>#`
225 *
226 * **Initial value**: `running`
227 *
228 * | Chrome | Firefox | Safari | Edge | IE |
229 * | :-----: | :-----: | :-----: | :----: | :----: |
230 * | **43** | **16** | **9** | **12** | **10** |
231 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
232 *
233 * @see https://developer.mozilla.org/docs/Web/CSS/animation-play-state
234 */
235 animationPlayState?: Property.AnimationPlayState | undefined;
236 /**
237 * The **`animation-range-end`** CSS property is used to set the end of an animation's attachment range along its timeline, i.e. where along the timeline an animation will end.
238 *
239 * **Syntax**: `[ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]#`
240 *
241 * **Initial value**: `normal`
242 *
243 * | Chrome | Firefox | Safari | Edge | IE |
244 * | :-----: | :-----: | :----: | :--: | :-: |
245 * | **115** | No | No | n/a | No |
246 *
247 * @see https://developer.mozilla.org/docs/Web/CSS/animation-range-end
248 */
249 animationRangeEnd?: Property.AnimationRangeEnd<TLength> | undefined;
250 /**
251 * The **`animation-range-start`** CSS property is used to set the start of an animation's attachment range along its timeline, i.e. where along the timeline an animation will start.
252 *
253 * **Syntax**: `[ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]#`
254 *
255 * **Initial value**: `normal`
256 *
257 * | Chrome | Firefox | Safari | Edge | IE |
258 * | :-----: | :-----: | :----: | :--: | :-: |
259 * | **115** | No | No | n/a | No |
260 *
261 * @see https://developer.mozilla.org/docs/Web/CSS/animation-range-start
262 */
263 animationRangeStart?: Property.AnimationRangeStart<TLength> | undefined;
264 /**
265 * The **`animation-timeline`** CSS property specifies the timeline that is used to control the progress of an animation.
266 *
267 * **Syntax**: `<single-animation-timeline>#`
268 *
269 * **Initial value**: `auto`
270 *
271 * | Chrome | Firefox | Safari | Edge | IE |
272 * | :-----: | :-----: | :----: | :--: | :-: |
273 * | **115** | n/a | No | n/a | No |
274 *
275 * @see https://developer.mozilla.org/docs/Web/CSS/animation-timeline
276 */
277 animationTimeline?: Property.AnimationTimeline | undefined;
278 /**
279 * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
280 *
281 * **Syntax**: `<easing-function>#`
282 *
283 * **Initial value**: `ease`
284 *
285 * | Chrome | Firefox | Safari | Edge | IE |
286 * | :-----: | :-----: | :-----: | :----: | :----: |
287 * | **43** | **16** | **9** | **12** | **10** |
288 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
289 *
290 * @see https://developer.mozilla.org/docs/Web/CSS/animation-timing-function
291 */
292 animationTimingFunction?: Property.AnimationTimingFunction | undefined;
293 /**
294 * The **`appearance`** CSS property is used to control native appearance of UI controls, that are based on operating system's theme.
295 *
296 * **Syntax**: `none | auto | textfield | menulist-button | <compat-auto>`
297 *
298 * **Initial value**: `none`
299 *
300 * | Chrome | Firefox | Safari | Edge | IE |
301 * | :-----: | :-----: | :------: | :------: | :-: |
302 * | **84** | **80** | **15.4** | **84** | No |
303 * | 1 _-x-_ | 1 _-x-_ | 3 _-x-_ | 12 _-x-_ | |
304 *
305 * @see https://developer.mozilla.org/docs/Web/CSS/appearance
306 */
307 appearance?: Property.Appearance | undefined;
308 /**
309 * 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.
310 *
311 * **Syntax**: `auto | <ratio>`
312 *
313 * **Initial value**: `auto`
314 *
315 * | Chrome | Firefox | Safari | Edge | IE |
316 * | :----: | :-----: | :----: | :--: | :-: |
317 * | **88** | **89** | **15** | n/a | No |
318 *
319 * @see https://developer.mozilla.org/docs/Web/CSS/aspect-ratio
320 */
321 aspectRatio?: Property.AspectRatio | undefined;
322 /**
323 * 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.
324 *
325 * **Syntax**: `none | <filter-function-list>`
326 *
327 * **Initial value**: `none`
328 *
329 * | Chrome | Firefox | Safari | Edge | IE |
330 * | :----: | :-----: | :---------: | :----: | :-: |
331 * | **76** | **103** | **9** _-x-_ | **17** | No |
332 *
333 * @see https://developer.mozilla.org/docs/Web/CSS/backdrop-filter
334 */
335 backdropFilter?: Property.BackdropFilter | undefined;
336 /**
337 * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
338 *
339 * **Syntax**: `visible | hidden`
340 *
341 * **Initial value**: `visible`
342 *
343 * | Chrome | Firefox | Safari | Edge | IE |
344 * | :------: | :-----: | :-------: | :----: | :----: |
345 * | **36** | **16** | **15.4** | **12** | **10** |
346 * | 12 _-x-_ | | 5.1 _-x-_ | | |
347 *
348 * @see https://developer.mozilla.org/docs/Web/CSS/backface-visibility
349 */
350 backfaceVisibility?: Property.BackfaceVisibility | undefined;
351 /**
352 * The **`background-attachment`** CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block.
353 *
354 * **Syntax**: `<attachment>#`
355 *
356 * **Initial value**: `scroll`
357 *
358 * | Chrome | Firefox | Safari | Edge | IE |
359 * | :----: | :-----: | :----: | :----: | :---: |
360 * | **1** | **1** | **1** | **12** | **4** |
361 *
362 * @see https://developer.mozilla.org/docs/Web/CSS/background-attachment
363 */
364 backgroundAttachment?: Property.BackgroundAttachment | undefined;
365 /**
366 * 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.
367 *
368 * **Syntax**: `<blend-mode>#`
369 *
370 * **Initial value**: `normal`
371 *
372 * | Chrome | Firefox | Safari | Edge | IE |
373 * | :----: | :-----: | :----: | :--: | :-: |
374 * | **35** | **30** | **8** | n/a | No |
375 *
376 * @see https://developer.mozilla.org/docs/Web/CSS/background-blend-mode
377 */
378 backgroundBlendMode?: Property.BackgroundBlendMode | undefined;
379 /**
380 * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
381 *
382 * **Syntax**: `<box>#`
383 *
384 * **Initial value**: `border-box`
385 *
386 * | Chrome | Firefox | Safari | Edge | IE |
387 * | :----: | :-----: | :-----: | :----: | :---: |
388 * | **1** | **4** | **5** | **12** | **9** |
389 * | | | 3 _-x-_ | | |
390 *
391 * @see https://developer.mozilla.org/docs/Web/CSS/background-clip
392 */
393 backgroundClip?: Property.BackgroundClip | undefined;
394 /**
395 * The **`background-color`** CSS property sets the background color of an element.
396 *
397 * **Syntax**: `<color>`
398 *
399 * **Initial value**: `transparent`
400 *
401 * | Chrome | Firefox | Safari | Edge | IE |
402 * | :----: | :-----: | :----: | :----: | :---: |
403 * | **1** | **1** | **1** | **12** | **4** |
404 *
405 * @see https://developer.mozilla.org/docs/Web/CSS/background-color
406 */
407 backgroundColor?: Property.BackgroundColor | undefined;
408 /**
409 * The **`background-image`** CSS property sets one or more background images on an element.
410 *
411 * **Syntax**: `<bg-image>#`
412 *
413 * **Initial value**: `none`
414 *
415 * | Chrome | Firefox | Safari | Edge | IE |
416 * | :----: | :-----: | :----: | :----: | :---: |
417 * | **1** | **1** | **1** | **12** | **4** |
418 *
419 * @see https://developer.mozilla.org/docs/Web/CSS/background-image
420 */
421 backgroundImage?: Property.BackgroundImage | undefined;
422 /**
423 * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
424 *
425 * **Syntax**: `<box>#`
426 *
427 * **Initial value**: `padding-box`
428 *
429 * | Chrome | Firefox | Safari | Edge | IE |
430 * | :----: | :-----: | :----: | :----: | :---: |
431 * | **1** | **4** | **3** | **12** | **9** |
432 *
433 * @see https://developer.mozilla.org/docs/Web/CSS/background-origin
434 */
435 backgroundOrigin?: Property.BackgroundOrigin | undefined;
436 /**
437 * 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`.
438 *
439 * **Syntax**: `[ center | [ [ left | right | x-start | x-end ]? <length-percentage>? ]! ]#`
440 *
441 * **Initial value**: `0%`
442 *
443 * | Chrome | Firefox | Safari | Edge | IE |
444 * | :----: | :-----: | :----: | :----: | :---: |
445 * | **1** | **49** | **1** | **12** | **6** |
446 *
447 * @see https://developer.mozilla.org/docs/Web/CSS/background-position-x
448 */
449 backgroundPositionX?: Property.BackgroundPositionX<TLength> | undefined;
450 /**
451 * 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`.
452 *
453 * **Syntax**: `[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#`
454 *
455 * **Initial value**: `0%`
456 *
457 * | Chrome | Firefox | Safari | Edge | IE |
458 * | :----: | :-----: | :----: | :----: | :---: |
459 * | **1** | **49** | **1** | **12** | **6** |
460 *
461 * @see https://developer.mozilla.org/docs/Web/CSS/background-position-y
462 */
463 backgroundPositionY?: Property.BackgroundPositionY<TLength> | undefined;
464 /**
465 * 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.
466 *
467 * **Syntax**: `<repeat-style>#`
468 *
469 * **Initial value**: `repeat`
470 *
471 * | Chrome | Firefox | Safari | Edge | IE |
472 * | :----: | :-----: | :----: | :----: | :---: |
473 * | **1** | **1** | **1** | **12** | **4** |
474 *
475 * @see https://developer.mozilla.org/docs/Web/CSS/background-repeat
476 */
477 backgroundRepeat?: Property.BackgroundRepeat | undefined;
478 /**
479 * 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.
480 *
481 * **Syntax**: `<bg-size>#`
482 *
483 * **Initial value**: `auto auto`
484 *
485 * | Chrome | Firefox | Safari | Edge | IE |
486 * | :-----: | :-----: | :-----: | :----: | :---: |
487 * | **3** | **4** | **5** | **12** | **9** |
488 * | 1 _-x-_ | | 3 _-x-_ | | |
489 *
490 * @see https://developer.mozilla.org/docs/Web/CSS/background-size
491 */
492 backgroundSize?: Property.BackgroundSize<TLength> | undefined;
493 /**
494 * **Syntax**: `clip | ellipsis | <string>`
495 *
496 * **Initial value**: `clip`
497 */
498 blockOverflow?: Property.BlockOverflow | undefined;
499 /**
500 * 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`.
501 *
502 * **Syntax**: `<'width'>`
503 *
504 * **Initial value**: `auto`
505 *
506 * | Chrome | Firefox | Safari | Edge | IE |
507 * | :----: | :-----: | :------: | :--: | :-: |
508 * | **57** | **41** | **12.1** | n/a | No |
509 *
510 * @see https://developer.mozilla.org/docs/Web/CSS/block-size
511 */
512 blockSize?: Property.BlockSize<TLength> | undefined;
513 /**
514 * 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`.
515 *
516 * **Syntax**: `<'border-top-color'>{1,2}`
517 *
518 * **Initial value**: `currentcolor`
519 *
520 * | Chrome | Firefox | Safari | Edge | IE |
521 * | :----: | :-----: | :------: | :--: | :-: |
522 * | **87** | **66** | **14.1** | n/a | No |
523 *
524 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-color
525 */
526 borderBlockColor?: Property.BorderBlockColor | undefined;
527 /**
528 * 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`.
529 *
530 * **Syntax**: `<'border-top-color'>`
531 *
532 * **Initial value**: `currentcolor`
533 *
534 * | Chrome | Firefox | Safari | Edge | IE |
535 * | :----: | :-----: | :------: | :--: | :-: |
536 * | **69** | **41** | **12.1** | n/a | No |
537 *
538 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-color
539 */
540 borderBlockEndColor?: Property.BorderBlockEndColor | undefined;
541 /**
542 * 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`.
543 *
544 * **Syntax**: `<'border-top-style'>`
545 *
546 * **Initial value**: `none`
547 *
548 * | Chrome | Firefox | Safari | Edge | IE |
549 * | :----: | :-----: | :------: | :--: | :-: |
550 * | **69** | **41** | **12.1** | n/a | No |
551 *
552 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-style
553 */
554 borderBlockEndStyle?: Property.BorderBlockEndStyle | undefined;
555 /**
556 * 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`.
557 *
558 * **Syntax**: `<'border-top-width'>`
559 *
560 * **Initial value**: `medium`
561 *
562 * | Chrome | Firefox | Safari | Edge | IE |
563 * | :----: | :-----: | :------: | :--: | :-: |
564 * | **69** | **41** | **12.1** | n/a | No |
565 *
566 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-width
567 */
568 borderBlockEndWidth?: Property.BorderBlockEndWidth<TLength> | undefined;
569 /**
570 * 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`.
571 *
572 * **Syntax**: `<'border-top-color'>`
573 *
574 * **Initial value**: `currentcolor`
575 *
576 * | Chrome | Firefox | Safari | Edge | IE |
577 * | :----: | :-----: | :------: | :--: | :-: |
578 * | **69** | **41** | **12.1** | n/a | No |
579 *
580 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-color
581 */
582 borderBlockStartColor?: Property.BorderBlockStartColor | undefined;
583 /**
584 * 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`.
585 *
586 * **Syntax**: `<'border-top-style'>`
587 *
588 * **Initial value**: `none`
589 *
590 * | Chrome | Firefox | Safari | Edge | IE |
591 * | :----: | :-----: | :------: | :--: | :-: |
592 * | **69** | **41** | **12.1** | n/a | No |
593 *
594 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-style
595 */
596 borderBlockStartStyle?: Property.BorderBlockStartStyle | undefined;
597 /**
598 * 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`.
599 *
600 * **Syntax**: `<'border-top-width'>`
601 *
602 * **Initial value**: `medium`
603 *
604 * | Chrome | Firefox | Safari | Edge | IE |
605 * | :----: | :-----: | :------: | :--: | :-: |
606 * | **69** | **41** | **12.1** | n/a | No |
607 *
608 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-width
609 */
610 borderBlockStartWidth?: Property.BorderBlockStartWidth<TLength> | undefined;
611 /**
612 * 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`.
613 *
614 * **Syntax**: `<'border-top-style'>`
615 *
616 * **Initial value**: `none`
617 *
618 * | Chrome | Firefox | Safari | Edge | IE |
619 * | :----: | :-----: | :------: | :--: | :-: |
620 * | **87** | **66** | **14.1** | n/a | No |
621 *
622 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-style
623 */
624 borderBlockStyle?: Property.BorderBlockStyle | undefined;
625 /**
626 * 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`.
627 *
628 * **Syntax**: `<'border-top-width'>`
629 *
630 * **Initial value**: `medium`
631 *
632 * | Chrome | Firefox | Safari | Edge | IE |
633 * | :----: | :-----: | :------: | :--: | :-: |
634 * | **87** | **66** | **14.1** | n/a | No |
635 *
636 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-width
637 */
638 borderBlockWidth?: Property.BorderBlockWidth<TLength> | undefined;
639 /**
640 * 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`.
641 *
642 * **Syntax**: `<'border-top-color'>`
643 *
644 * **Initial value**: `currentcolor`
645 *
646 * | Chrome | Firefox | Safari | Edge | IE |
647 * | :----: | :-----: | :----: | :----: | :---: |
648 * | **1** | **1** | **1** | **12** | **4** |
649 *
650 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-color
651 */
652 borderBottomColor?: Property.BorderBottomColor | undefined;
653 /**
654 * 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.
655 *
656 * **Syntax**: `<length-percentage>{1,2}`
657 *
658 * **Initial value**: `0`
659 *
660 * | Chrome | Firefox | Safari | Edge | IE |
661 * | :-----: | :-----: | :-----: | :----: | :---: |
662 * | **4** | **4** | **5** | **12** | **9** |
663 * | 1 _-x-_ | | 3 _-x-_ | | |
664 *
665 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius
666 */
667 borderBottomLeftRadius?: Property.BorderBottomLeftRadius<TLength> | undefined;
668 /**
669 * 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.
670 *
671 * **Syntax**: `<length-percentage>{1,2}`
672 *
673 * **Initial value**: `0`
674 *
675 * | Chrome | Firefox | Safari | Edge | IE |
676 * | :-----: | :-----: | :-----: | :----: | :---: |
677 * | **4** | **4** | **5** | **12** | **9** |
678 * | 1 _-x-_ | | 3 _-x-_ | | |
679 *
680 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius
681 */
682 borderBottomRightRadius?: Property.BorderBottomRightRadius<TLength> | undefined;
683 /**
684 * The **`border-bottom-style`** CSS property sets the line style of an element's bottom `border`.
685 *
686 * **Syntax**: `<line-style>`
687 *
688 * **Initial value**: `none`
689 *
690 * | Chrome | Firefox | Safari | Edge | IE |
691 * | :----: | :-----: | :----: | :----: | :-----: |
692 * | **1** | **1** | **1** | **12** | **5.5** |
693 *
694 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-style
695 */
696 borderBottomStyle?: Property.BorderBottomStyle | undefined;
697 /**
698 * The **`border-bottom-width`** CSS property sets the width of the bottom border of an element.
699 *
700 * **Syntax**: `<line-width>`
701 *
702 * **Initial value**: `medium`
703 *
704 * | Chrome | Firefox | Safari | Edge | IE |
705 * | :----: | :-----: | :----: | :----: | :---: |
706 * | **1** | **1** | **1** | **12** | **4** |
707 *
708 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-width
709 */
710 borderBottomWidth?: Property.BorderBottomWidth<TLength> | undefined;
711 /**
712 * The **`border-collapse`** CSS property sets whether cells inside a `<table>` have shared or separate borders.
713 *
714 * **Syntax**: `collapse | separate`
715 *
716 * **Initial value**: `separate`
717 *
718 * | Chrome | Firefox | Safari | Edge | IE |
719 * | :----: | :-----: | :-----: | :----: | :---: |
720 * | **1** | **1** | **1.2** | **12** | **5** |
721 *
722 * @see https://developer.mozilla.org/docs/Web/CSS/border-collapse
723 */
724 borderCollapse?: Property.BorderCollapse | undefined;
725 /**
726 * 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.
727 *
728 * **Syntax**: `<length-percentage>{1,2}`
729 *
730 * **Initial value**: `0`
731 *
732 * | Chrome | Firefox | Safari | Edge | IE |
733 * | :----: | :-----: | :----: | :--: | :-: |
734 * | **89** | **66** | **15** | n/a | No |
735 *
736 * @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius
737 */
738 borderEndEndRadius?: Property.BorderEndEndRadius<TLength> | undefined;
739 /**
740 * 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.
741 *
742 * **Syntax**: `<length-percentage>{1,2}`
743 *
744 * **Initial value**: `0`
745 *
746 * | Chrome | Firefox | Safari | Edge | IE |
747 * | :----: | :-----: | :----: | :--: | :-: |
748 * | **89** | **66** | **15** | n/a | No |
749 *
750 * @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius
751 */
752 borderEndStartRadius?: Property.BorderEndStartRadius<TLength> | undefined;
753 /**
754 * The **`border-image-outset`** CSS property sets the distance by which an element's border image is set out from its border box.
755 *
756 * **Syntax**: `[ <length> | <number> ]{1,4}`
757 *
758 * **Initial value**: `0`
759 *
760 * | Chrome | Firefox | Safari | Edge | IE |
761 * | :----: | :-----: | :----: | :----: | :----: |
762 * | **15** | **15** | **6** | **12** | **11** |
763 *
764 * @see https://developer.mozilla.org/docs/Web/CSS/border-image-outset
765 */
766 borderImageOutset?: Property.BorderImageOutset<TLength> | undefined;
767 /**
768 * The **`border-image-repeat`** CSS property defines how the edge regions and middle region of a source image are adjusted to fit the dimensions of an element's border image. The middle region can be displayed by using the keyword "fill" in the border-image-slice property.
769 *
770 * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`
771 *
772 * **Initial value**: `stretch`
773 *
774 * | Chrome | Firefox | Safari | Edge | IE |
775 * | :----: | :-----: | :----: | :----: | :----: |
776 * | **15** | **15** | **6** | **12** | **11** |
777 *
778 * @see https://developer.mozilla.org/docs/Web/CSS/border-image-repeat
779 */
780 borderImageRepeat?: Property.BorderImageRepeat | undefined;
781 /**
782 * 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.
783 *
784 * **Syntax**: `<number-percentage>{1,4} && fill?`
785 *
786 * **Initial value**: `100%`
787 *
788 * | Chrome | Firefox | Safari | Edge | IE |
789 * | :----: | :-----: | :----: | :----: | :----: |
790 * | **15** | **15** | **6** | **12** | **11** |
791 *
792 * @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice
793 */
794 borderImageSlice?: Property.BorderImageSlice | undefined;
795 /**
796 * The **`border-image-source`** CSS property sets the source image used to create an element's border image.
797 *
798 * **Syntax**: `none | <image>`
799 *
800 * **Initial value**: `none`
801 *
802 * | Chrome | Firefox | Safari | Edge | IE |
803 * | :----: | :-----: | :----: | :----: | :----: |
804 * | **15** | **15** | **6** | **12** | **11** |
805 *
806 * @see https://developer.mozilla.org/docs/Web/CSS/border-image-source
807 */
808 borderImageSource?: Property.BorderImageSource | undefined;
809 /**
810 * The **`border-image-width`** CSS property sets the width of an element's border image.
811 *
812 * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`
813 *
814 * **Initial value**: `1`
815 *
816 * | Chrome | Firefox | Safari | Edge | IE |
817 * | :----: | :-----: | :----: | :----: | :----: |
818 * | **15** | **13** | **6** | **12** | **11** |
819 *
820 * @see https://developer.mozilla.org/docs/Web/CSS/border-image-width
821 */
822 borderImageWidth?: Property.BorderImageWidth<TLength> | undefined;
823 /**
824 * 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`.
825 *
826 * **Syntax**: `<'border-top-color'>{1,2}`
827 *
828 * **Initial value**: `currentcolor`
829 *
830 * | Chrome | Firefox | Safari | Edge | IE |
831 * | :----: | :-----: | :------: | :--: | :-: |
832 * | **87** | **66** | **14.1** | n/a | No |
833 *
834 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color
835 */
836 borderInlineColor?: Property.BorderInlineColor | undefined;
837 /**
838 * 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`.
839 *
840 * **Syntax**: `<'border-top-color'>`
841 *
842 * **Initial value**: `currentcolor`
843 *
844 * | Chrome | Firefox | Safari | Edge | IE |
845 * | :----: | :-------------------------: | :------: | :--: | :-: |
846 * | **69** | **41** | **12.1** | n/a | No |
847 * | | 3 _(-moz-border-end-color)_ | | | |
848 *
849 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color
850 */
851 borderInlineEndColor?: Property.BorderInlineEndColor | undefined;
852 /**
853 * 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`.
854 *
855 * **Syntax**: `<'border-top-style'>`
856 *
857 * **Initial value**: `none`
858 *
859 * | Chrome | Firefox | Safari | Edge | IE |
860 * | :----: | :-------------------------: | :------: | :--: | :-: |
861 * | **69** | **41** | **12.1** | n/a | No |
862 * | | 3 _(-moz-border-end-style)_ | | | |
863 *
864 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style
865 */
866 borderInlineEndStyle?: Property.BorderInlineEndStyle | undefined;
867 /**
868 * 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`.
869 *
870 * **Syntax**: `<'border-top-width'>`
871 *
872 * **Initial value**: `medium`
873 *
874 * | Chrome | Firefox | Safari | Edge | IE |
875 * | :----: | :-------------------------: | :------: | :--: | :-: |
876 * | **69** | **41** | **12.1** | n/a | No |
877 * | | 3 _(-moz-border-end-width)_ | | | |
878 *
879 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width
880 */
881 borderInlineEndWidth?: Property.BorderInlineEndWidth<TLength> | undefined;
882 /**
883 * 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`.
884 *
885 * **Syntax**: `<'border-top-color'>`
886 *
887 * **Initial value**: `currentcolor`
888 *
889 * | Chrome | Firefox | Safari | Edge | IE |
890 * | :----: | :---------------------------: | :------: | :--: | :-: |
891 * | **69** | **41** | **12.1** | n/a | No |
892 * | | 3 _(-moz-border-start-color)_ | | | |
893 *
894 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color
895 */
896 borderInlineStartColor?: Property.BorderInlineStartColor | undefined;
897 /**
898 * 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`.
899 *
900 * **Syntax**: `<'border-top-style'>`
901 *
902 * **Initial value**: `none`
903 *
904 * | Chrome | Firefox | Safari | Edge | IE |
905 * | :----: | :---------------------------: | :------: | :--: | :-: |
906 * | **69** | **41** | **12.1** | n/a | No |
907 * | | 3 _(-moz-border-start-style)_ | | | |
908 *
909 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style
910 */
911 borderInlineStartStyle?: Property.BorderInlineStartStyle | undefined;
912 /**
913 * 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`.
914 *
915 * **Syntax**: `<'border-top-width'>`
916 *
917 * **Initial value**: `medium`
918 *
919 * | Chrome | Firefox | Safari | Edge | IE |
920 * | :----: | :-----: | :------: | :--: | :-: |
921 * | **69** | **41** | **12.1** | n/a | No |
922 *
923 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width
924 */
925 borderInlineStartWidth?: Property.BorderInlineStartWidth<TLength> | undefined;
926 /**
927 * 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`.
928 *
929 * **Syntax**: `<'border-top-style'>`
930 *
931 * **Initial value**: `none`
932 *
933 * | Chrome | Firefox | Safari | Edge | IE |
934 * | :----: | :-----: | :------: | :--: | :-: |
935 * | **87** | **66** | **14.1** | n/a | No |
936 *
937 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style
938 */
939 borderInlineStyle?: Property.BorderInlineStyle | undefined;
940 /**
941 * 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`.
942 *
943 * **Syntax**: `<'border-top-width'>`
944 *
945 * **Initial value**: `medium`
946 *
947 * | Chrome | Firefox | Safari | Edge | IE |
948 * | :----: | :-----: | :------: | :--: | :-: |
949 * | **87** | **66** | **14.1** | n/a | No |
950 *
951 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width
952 */
953 borderInlineWidth?: Property.BorderInlineWidth<TLength> | undefined;
954 /**
955 * 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`.
956 *
957 * **Syntax**: `<color>`
958 *
959 * **Initial value**: `currentcolor`
960 *
961 * | Chrome | Firefox | Safari | Edge | IE |
962 * | :----: | :-----: | :----: | :----: | :---: |
963 * | **1** | **1** | **1** | **12** | **4** |
964 *
965 * @see https://developer.mozilla.org/docs/Web/CSS/border-left-color
966 */
967 borderLeftColor?: Property.BorderLeftColor | undefined;
968 /**
969 * The **`border-left-style`** CSS property sets the line style of an element's left `border`.
970 *
971 * **Syntax**: `<line-style>`
972 *
973 * **Initial value**: `none`
974 *
975 * | Chrome | Firefox | Safari | Edge | IE |
976 * | :----: | :-----: | :----: | :----: | :-----: |
977 * | **1** | **1** | **1** | **12** | **5.5** |
978 *
979 * @see https://developer.mozilla.org/docs/Web/CSS/border-left-style
980 */
981 borderLeftStyle?: Property.BorderLeftStyle | undefined;
982 /**
983 * The **`border-left-width`** CSS property sets the width of the left border of an element.
984 *
985 * **Syntax**: `<line-width>`
986 *
987 * **Initial value**: `medium`
988 *
989 * | Chrome | Firefox | Safari | Edge | IE |
990 * | :----: | :-----: | :----: | :----: | :---: |
991 * | **1** | **1** | **1** | **12** | **4** |
992 *
993 * @see https://developer.mozilla.org/docs/Web/CSS/border-left-width
994 */
995 borderLeftWidth?: Property.BorderLeftWidth<TLength> | undefined;
996 /**
997 * 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`.
998 *
999 * **Syntax**: `<color>`
1000 *
1001 * **Initial value**: `currentcolor`
1002 *
1003 * | Chrome | Firefox | Safari | Edge | IE |
1004 * | :----: | :-----: | :----: | :----: | :---: |
1005 * | **1** | **1** | **1** | **12** | **4** |
1006 *
1007 * @see https://developer.mozilla.org/docs/Web/CSS/border-right-color
1008 */
1009 borderRightColor?: Property.BorderRightColor | undefined;
1010 /**
1011 * The **`border-right-style`** CSS property sets the line style of an element's right `border`.
1012 *
1013 * **Syntax**: `<line-style>`
1014 *
1015 * **Initial value**: `none`
1016 *
1017 * | Chrome | Firefox | Safari | Edge | IE |
1018 * | :----: | :-----: | :----: | :----: | :-----: |
1019 * | **1** | **1** | **1** | **12** | **5.5** |
1020 *
1021 * @see https://developer.mozilla.org/docs/Web/CSS/border-right-style
1022 */
1023 borderRightStyle?: Property.BorderRightStyle | undefined;
1024 /**
1025 * The **`border-right-width`** CSS property sets the width of the right border of an element.
1026 *
1027 * **Syntax**: `<line-width>`
1028 *
1029 * **Initial value**: `medium`
1030 *
1031 * | Chrome | Firefox | Safari | Edge | IE |
1032 * | :----: | :-----: | :----: | :----: | :---: |
1033 * | **1** | **1** | **1** | **12** | **4** |
1034 *
1035 * @see https://developer.mozilla.org/docs/Web/CSS/border-right-width
1036 */
1037 borderRightWidth?: Property.BorderRightWidth<TLength> | undefined;
1038 /**
1039 * The **`border-spacing`** CSS property sets the distance between the borders of adjacent cells in a `<table>`. This property applies only when `border-collapse` is `separate`.
1040 *
1041 * **Syntax**: `<length> <length>?`
1042 *
1043 * **Initial value**: `0`
1044 *
1045 * | Chrome | Firefox | Safari | Edge | IE |
1046 * | :----: | :-----: | :----: | :----: | :---: |
1047 * | **1** | **1** | **1** | **12** | **8** |
1048 *
1049 * @see https://developer.mozilla.org/docs/Web/CSS/border-spacing
1050 */
1051 borderSpacing?: Property.BorderSpacing<TLength> | undefined;
1052 /**
1053 * 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.
1054 *
1055 * **Syntax**: `<length-percentage>{1,2}`
1056 *
1057 * **Initial value**: `0`
1058 *
1059 * | Chrome | Firefox | Safari | Edge | IE |
1060 * | :----: | :-----: | :----: | :--: | :-: |
1061 * | **89** | **66** | **15** | n/a | No |
1062 *
1063 * @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius
1064 */
1065 borderStartEndRadius?: Property.BorderStartEndRadius<TLength> | undefined;
1066 /**
1067 * 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.
1068 *
1069 * **Syntax**: `<length-percentage>{1,2}`
1070 *
1071 * **Initial value**: `0`
1072 *
1073 * | Chrome | Firefox | Safari | Edge | IE |
1074 * | :----: | :-----: | :----: | :--: | :-: |
1075 * | **89** | **66** | **15** | n/a | No |
1076 *
1077 * @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius
1078 */
1079 borderStartStartRadius?: Property.BorderStartStartRadius<TLength> | undefined;
1080 /**
1081 * 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`.
1082 *
1083 * **Syntax**: `<color>`
1084 *
1085 * **Initial value**: `currentcolor`
1086 *
1087 * | Chrome | Firefox | Safari | Edge | IE |
1088 * | :----: | :-----: | :----: | :----: | :---: |
1089 * | **1** | **1** | **1** | **12** | **4** |
1090 *
1091 * @see https://developer.mozilla.org/docs/Web/CSS/border-top-color
1092 */
1093 borderTopColor?: Property.BorderTopColor | undefined;
1094 /**
1095 * 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.
1096 *
1097 * **Syntax**: `<length-percentage>{1,2}`
1098 *
1099 * **Initial value**: `0`
1100 *
1101 * | Chrome | Firefox | Safari | Edge | IE |
1102 * | :-----: | :-----: | :-----: | :----: | :---: |
1103 * | **4** | **4** | **5** | **12** | **9** |
1104 * | 1 _-x-_ | | 3 _-x-_ | | |
1105 *
1106 * @see https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius
1107 */
1108 borderTopLeftRadius?: Property.BorderTopLeftRadius<TLength> | undefined;
1109 /**
1110 * 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.
1111 *
1112 * **Syntax**: `<length-percentage>{1,2}`
1113 *
1114 * **Initial value**: `0`
1115 *
1116 * | Chrome | Firefox | Safari | Edge | IE |
1117 * | :-----: | :-----: | :-----: | :----: | :---: |
1118 * | **4** | **4** | **5** | **12** | **9** |
1119 * | 1 _-x-_ | | 3 _-x-_ | | |
1120 *
1121 * @see https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius
1122 */
1123 borderTopRightRadius?: Property.BorderTopRightRadius<TLength> | undefined;
1124 /**
1125 * The **`border-top-style`** CSS property sets the line style of an element's top `border`.
1126 *
1127 * **Syntax**: `<line-style>`
1128 *
1129 * **Initial value**: `none`
1130 *
1131 * | Chrome | Firefox | Safari | Edge | IE |
1132 * | :----: | :-----: | :----: | :----: | :-----: |
1133 * | **1** | **1** | **1** | **12** | **5.5** |
1134 *
1135 * @see https://developer.mozilla.org/docs/Web/CSS/border-top-style
1136 */
1137 borderTopStyle?: Property.BorderTopStyle | undefined;
1138 /**
1139 * The **`border-top-width`** CSS property sets the width of the top border of an element.
1140 *
1141 * **Syntax**: `<line-width>`
1142 *
1143 * **Initial value**: `medium`
1144 *
1145 * | Chrome | Firefox | Safari | Edge | IE |
1146 * | :----: | :-----: | :----: | :----: | :---: |
1147 * | **1** | **1** | **1** | **12** | **4** |
1148 *
1149 * @see https://developer.mozilla.org/docs/Web/CSS/border-top-width
1150 */
1151 borderTopWidth?: Property.BorderTopWidth<TLength> | undefined;
1152 /**
1153 * The **`bottom`** CSS property participates in setting the vertical position of a positioned element. It has no effect on non-positioned elements.
1154 *
1155 * **Syntax**: `<length> | <percentage> | auto`
1156 *
1157 * **Initial value**: `auto`
1158 *
1159 * | Chrome | Firefox | Safari | Edge | IE |
1160 * | :----: | :-----: | :----: | :----: | :---: |
1161 * | **1** | **1** | **1** | **12** | **5** |
1162 *
1163 * @see https://developer.mozilla.org/docs/Web/CSS/bottom
1164 */
1165 bottom?: Property.Bottom<TLength> | undefined;
1166 /**
1167 * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
1168 *
1169 * **Syntax**: `slice | clone`
1170 *
1171 * **Initial value**: `slice`
1172 *
1173 * | Chrome | Firefox | Safari | Edge | IE |
1174 * | :----------: | :-----: | :---------: | :--: | :-: |
1175 * | **22** _-x-_ | **32** | **7** _-x-_ | n/a | No |
1176 *
1177 * @see https://developer.mozilla.org/docs/Web/CSS/box-decoration-break
1178 */
1179 boxDecorationBreak?: Property.BoxDecorationBreak | undefined;
1180 /**
1181 * 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.
1182 *
1183 * **Syntax**: `none | <shadow>#`
1184 *
1185 * **Initial value**: `none`
1186 *
1187 * | Chrome | Firefox | Safari | Edge | IE |
1188 * | :-----: | :-----: | :-----: | :----: | :---: |
1189 * | **10** | **4** | **5.1** | **12** | **9** |
1190 * | 1 _-x-_ | | 3 _-x-_ | | |
1191 *
1192 * @see https://developer.mozilla.org/docs/Web/CSS/box-shadow
1193 */
1194 boxShadow?: Property.BoxShadow | undefined;
1195 /**
1196 * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
1197 *
1198 * **Syntax**: `content-box | border-box`
1199 *
1200 * **Initial value**: `content-box`
1201 *
1202 * | Chrome | Firefox | Safari | Edge | IE |
1203 * | :-----: | :-----: | :-----: | :----: | :---: |
1204 * | **10** | **29** | **5.1** | **12** | **8** |
1205 * | 1 _-x-_ | 1 _-x-_ | 3 _-x-_ | | |
1206 *
1207 * @see https://developer.mozilla.org/docs/Web/CSS/box-sizing
1208 */
1209 boxSizing?: Property.BoxSizing | undefined;
1210 /**
1211 * 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.
1212 *
1213 * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`
1214 *
1215 * **Initial value**: `auto`
1216 *
1217 * | Chrome | Firefox | Safari | Edge | IE |
1218 * | :----: | :-----: | :----: | :----: | :----: |
1219 * | **50** | **65** | **10** | **12** | **10** |
1220 *
1221 * @see https://developer.mozilla.org/docs/Web/CSS/break-after
1222 */
1223 breakAfter?: Property.BreakAfter | undefined;
1224 /**
1225 * 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.
1226 *
1227 * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region`
1228 *
1229 * **Initial value**: `auto`
1230 *
1231 * | Chrome | Firefox | Safari | Edge | IE |
1232 * | :----: | :-----: | :----: | :----: | :----: |
1233 * | **50** | **65** | **10** | **12** | **10** |
1234 *
1235 * @see https://developer.mozilla.org/docs/Web/CSS/break-before
1236 */
1237 breakBefore?: Property.BreakBefore | undefined;
1238 /**
1239 * 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.
1240 *
1241 * **Syntax**: `auto | avoid | avoid-page | avoid-column | avoid-region`
1242 *
1243 * **Initial value**: `auto`
1244 *
1245 * | Chrome | Firefox | Safari | Edge | IE |
1246 * | :----: | :-----: | :----: | :----: | :----: |
1247 * | **50** | **65** | **10** | **12** | **10** |
1248 *
1249 * @see https://developer.mozilla.org/docs/Web/CSS/break-inside
1250 */
1251 breakInside?: Property.BreakInside | undefined;
1252 /**
1253 * 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.
1254 *
1255 * **Syntax**: `top | bottom | block-start | block-end | inline-start | inline-end`
1256 *
1257 * **Initial value**: `top`
1258 *
1259 * | Chrome | Firefox | Safari | Edge | IE |
1260 * | :----: | :-----: | :----: | :----: | :---: |
1261 * | **1** | **1** | **1** | **12** | **8** |
1262 *
1263 * @see https://developer.mozilla.org/docs/Web/CSS/caption-side
1264 */
1265 captionSide?: Property.CaptionSide | undefined;
1266 /**
1267 * 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.
1268 *
1269 * **Syntax**: `auto | <color>`
1270 *
1271 * **Initial value**: `auto`
1272 *
1273 * | Chrome | Firefox | Safari | Edge | IE |
1274 * | :----: | :-----: | :------: | :--: | :-: |
1275 * | **57** | **53** | **11.1** | n/a | No |
1276 *
1277 * @see https://developer.mozilla.org/docs/Web/CSS/caret-color
1278 */
1279 caretColor?: Property.CaretColor | undefined;
1280 /**
1281 * **Syntax**: `auto | bar | block | underscore`
1282 *
1283 * **Initial value**: `auto`
1284 */
1285 caretShape?: Property.CaretShape | undefined;
1286 /**
1287 * 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.
1288 *
1289 * **Syntax**: `none | left | right | both | inline-start | inline-end`
1290 *
1291 * **Initial value**: `none`
1292 *
1293 * | Chrome | Firefox | Safari | Edge | IE |
1294 * | :----: | :-----: | :----: | :----: | :---: |
1295 * | **1** | **1** | **1** | **12** | **4** |
1296 *
1297 * @see https://developer.mozilla.org/docs/Web/CSS/clear
1298 */
1299 clear?: Property.Clear | undefined;
1300 /**
1301 * 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.
1302 *
1303 * **Syntax**: `<clip-source> | [ <basic-shape> || <geometry-box> ] | none`
1304 *
1305 * **Initial value**: `none`
1306 *
1307 * | Chrome | Firefox | Safari | Edge | IE |
1308 * | :------: | :-----: | :-----: | :----: | :----: |
1309 * | **55** | **3.5** | **9.1** | **79** | **10** |
1310 * | 23 _-x-_ | | 7 _-x-_ | | |
1311 *
1312 * @see https://developer.mozilla.org/docs/Web/CSS/clip-path
1313 */
1314 clipPath?: Property.ClipPath | undefined;
1315 /**
1316 * 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`.
1317 *
1318 * **Syntax**: `<color>`
1319 *
1320 * **Initial value**: `canvastext`
1321 *
1322 * | Chrome | Firefox | Safari | Edge | IE |
1323 * | :----: | :-----: | :----: | :----: | :---: |
1324 * | **1** | **1** | **1** | **12** | **3** |
1325 *
1326 * @see https://developer.mozilla.org/docs/Web/CSS/color
1327 */
1328 color?: Property.Color | undefined;
1329 /**
1330 * The **`print-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.
1331 *
1332 * **Syntax**: `economy | exact`
1333 *
1334 * **Initial value**: `economy`
1335 *
1336 * | Chrome | Firefox | Safari | Edge | IE |
1337 * | :----------: | :-----------------: | :------: | :----------: | :-: |
1338 * | **17** _-x-_ | **97** | **15.4** | **79** _-x-_ | No |
1339 * | | 48 _(color-adjust)_ | 6 _-x-_ | | |
1340 *
1341 * @see https://developer.mozilla.org/docs/Web/CSS/print-color-adjust
1342 */
1343 colorAdjust?: Property.PrintColorAdjust | undefined;
1344 /**
1345 * The **`color-scheme`** CSS property allows an element to indicate which color schemes it can comfortably be rendered in.
1346 *
1347 * **Syntax**: `normal | [ light | dark | <custom-ident> ]+ && only?`
1348 *
1349 * **Initial value**: `normal`
1350 *
1351 * | Chrome | Firefox | Safari | Edge | IE |
1352 * | :----: | :-----: | :----: | :--: | :-: |
1353 * | **81** | **96** | **13** | n/a | No |
1354 *
1355 * @see https://developer.mozilla.org/docs/Web/CSS/color-scheme
1356 */
1357 colorScheme?: Property.ColorScheme | undefined;
1358 /**
1359 * The **`column-count`** CSS property breaks an element's content into the specified number of columns.
1360 *
1361 * **Syntax**: `<integer> | auto`
1362 *
1363 * **Initial value**: `auto`
1364 *
1365 * | Chrome | Firefox | Safari | Edge | IE |
1366 * | :-----: | :-----: | :-----: | :----: | :----: |
1367 * | **50** | **52** | **9** | **12** | **10** |
1368 * | 1 _-x-_ | | 3 _-x-_ | | |
1369 *
1370 * @see https://developer.mozilla.org/docs/Web/CSS/column-count
1371 */
1372 columnCount?: Property.ColumnCount | undefined;
1373 /**
1374 * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.
1375 *
1376 * **Syntax**: `auto | balance | balance-all`
1377 *
1378 * **Initial value**: `balance`
1379 *
1380 * | Chrome | Firefox | Safari | Edge | IE |
1381 * | :----: | :-----: | :-----: | :----: | :----: |
1382 * | **50** | **52** | **9** | **12** | **10** |
1383 * | | | 8 _-x-_ | | |
1384 *
1385 * @see https://developer.mozilla.org/docs/Web/CSS/column-fill
1386 */
1387 columnFill?: Property.ColumnFill | undefined;
1388 /**
1389 * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
1390 *
1391 * **Syntax**: `normal | <length-percentage>`
1392 *
1393 * **Initial value**: `normal`
1394 *
1395 * | Chrome | Firefox | Safari | Edge | IE |
1396 * | :----: | :-----: | :----: | :----: | :----: |
1397 * | **1** | **1.5** | **3** | **12** | **10** |
1398 *
1399 * @see https://developer.mozilla.org/docs/Web/CSS/column-gap
1400 */
1401 columnGap?: Property.ColumnGap<TLength> | undefined;
1402 /**
1403 * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.
1404 *
1405 * **Syntax**: `<color>`
1406 *
1407 * **Initial value**: `currentcolor`
1408 *
1409 * | Chrome | Firefox | Safari | Edge | IE |
1410 * | :-----: | :-----: | :-----: | :----: | :----: |
1411 * | **50** | **52** | **9** | **12** | **10** |
1412 * | 1 _-x-_ | | 3 _-x-_ | | |
1413 *
1414 * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-color
1415 */
1416 columnRuleColor?: Property.ColumnRuleColor | undefined;
1417 /**
1418 * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.
1419 *
1420 * **Syntax**: `<'border-style'>`
1421 *
1422 * **Initial value**: `none`
1423 *
1424 * | Chrome | Firefox | Safari | Edge | IE |
1425 * | :-----: | :-----: | :-----: | :----: | :----: |
1426 * | **50** | **52** | **9** | **12** | **10** |
1427 * | 1 _-x-_ | | 3 _-x-_ | | |
1428 *
1429 * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-style
1430 */
1431 columnRuleStyle?: Property.ColumnRuleStyle | undefined;
1432 /**
1433 * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
1434 *
1435 * **Syntax**: `<'border-width'>`
1436 *
1437 * **Initial value**: `medium`
1438 *
1439 * | Chrome | Firefox | Safari | Edge | IE |
1440 * | :-----: | :-----: | :-----: | :----: | :----: |
1441 * | **50** | **52** | **9** | **12** | **10** |
1442 * | 1 _-x-_ | | 3 _-x-_ | | |
1443 *
1444 * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-width
1445 */
1446 columnRuleWidth?: Property.ColumnRuleWidth<TLength> | undefined;
1447 /**
1448 * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`.
1449 *
1450 * **Syntax**: `none | all`
1451 *
1452 * **Initial value**: `none`
1453 *
1454 * | Chrome | Firefox | Safari | Edge | IE |
1455 * | :-----: | :-----: | :-------: | :----: | :----: |
1456 * | **50** | **71** | **9** | **12** | **10** |
1457 * | 6 _-x-_ | | 5.1 _-x-_ | | |
1458 *
1459 * @see https://developer.mozilla.org/docs/Web/CSS/column-span
1460 */
1461 columnSpan?: Property.ColumnSpan | undefined;
1462 /**
1463 * 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.
1464 *
1465 * **Syntax**: `<length> | auto`
1466 *
1467 * **Initial value**: `auto`
1468 *
1469 * | Chrome | Firefox | Safari | Edge | IE |
1470 * | :-----: | :-----: | :-----: | :----: | :----: |
1471 * | **50** | **50** | **9** | **12** | **10** |
1472 * | 1 _-x-_ | | 3 _-x-_ | | |
1473 *
1474 * @see https://developer.mozilla.org/docs/Web/CSS/column-width
1475 */
1476 columnWidth?: Property.ColumnWidth<TLength> | undefined;
1477 /**
1478 * The **`contain`** CSS property indicates that an element and its contents are, as much as possible, independent from the rest of the document tree. Containment enables isolating a subsection of the DOM, providing performance benefits by limiting calculations of layout, style, paint, size, or any combination to a DOM subtree rather than the entire page. Containment can also be used to scope CSS counters and quotes.
1479 *
1480 * **Syntax**: `none | strict | content | [ [ size || inline-size ] || layout || style || paint ]`
1481 *
1482 * **Initial value**: `none`
1483 *
1484 * | Chrome | Firefox | Safari | Edge | IE |
1485 * | :----: | :-----: | :------: | :--: | :-: |
1486 * | **52** | **69** | **15.4** | n/a | No |
1487 *
1488 * @see https://developer.mozilla.org/docs/Web/CSS/contain
1489 */
1490 contain?: Property.Contain | undefined;
1491 /**
1492 * The **`contain-intrinsic-block-size`** CSS logical property defines the block size of an element that a browser can use for layout when the element is subject to size containment.
1493 *
1494 * **Syntax**: `auto? [ none | <length> ]`
1495 *
1496 * **Initial value**: `none`
1497 *
1498 * | Chrome | Firefox | Safari | Edge | IE |
1499 * | :----: | :-----: | :----: | :--: | :-: |
1500 * | **95** | **107** | **17** | n/a | No |
1501 *
1502 * @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-block-size
1503 */
1504 containIntrinsicBlockSize?: Property.ContainIntrinsicBlockSize<TLength> | undefined;
1505 /**
1506 * The **`contain-intrinsic-length`** CSS property sets the height of an element that a browser can use for layout when the element is subject to size containment.
1507 *
1508 * **Syntax**: `auto? [ none | <length> ]`
1509 *
1510 * **Initial value**: `none`
1511 *
1512 * | Chrome | Firefox | Safari | Edge | IE |
1513 * | :----: | :-----: | :----: | :--: | :-: |
1514 * | **95** | **107** | **17** | n/a | No |
1515 *
1516 * @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-height
1517 */
1518 containIntrinsicHeight?: Property.ContainIntrinsicHeight<TLength> | undefined;
1519 /**
1520 * The **`contain-intrinsic-inline-size`** CSS logical property defines the inline-size of an element that a browser can use for layout when the element is subject to size containment.
1521 *
1522 * **Syntax**: `auto? [ none | <length> ]`
1523 *
1524 * **Initial value**: `none`
1525 *
1526 * | Chrome | Firefox | Safari | Edge | IE |
1527 * | :----: | :-----: | :----: | :--: | :-: |
1528 * | **95** | **107** | **17** | n/a | No |
1529 *
1530 * @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-inline-size
1531 */
1532 containIntrinsicInlineSize?: Property.ContainIntrinsicInlineSize<TLength> | undefined;
1533 /**
1534 * The **`contain-intrinsic-width`** CSS property sets the width of an element that a browser will use for layout when the element is subject to size containment.
1535 *
1536 * **Syntax**: `auto? [ none | <length> ]`
1537 *
1538 * **Initial value**: `none`
1539 *
1540 * | Chrome | Firefox | Safari | Edge | IE |
1541 * | :----: | :-----: | :----: | :--: | :-: |
1542 * | **95** | **107** | **17** | n/a | No |
1543 *
1544 * @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-width
1545 */
1546 containIntrinsicWidth?: Property.ContainIntrinsicWidth<TLength> | undefined;
1547 /**
1548 * The **container-name** CSS property specifies a list of query container names used by the @container at-rule in a container query. A container query will apply styles to elements based on the size of the nearest ancestor with a containment context. When a containment context is given a name, it can be specifically targeted using the `@container` at-rule instead of the nearest ancestor with containment.
1549 *
1550 * **Syntax**: `none | <custom-ident>+`
1551 *
1552 * **Initial value**: `none`
1553 *
1554 * | Chrome | Firefox | Safari | Edge | IE |
1555 * | :-----: | :-----: | :----: | :--: | :-: |
1556 * | **105** | **110** | **16** | n/a | No |
1557 *
1558 * @see https://developer.mozilla.org/docs/Web/CSS/container-name
1559 */
1560 containerName?: Property.ContainerName | undefined;
1561 /**
1562 * The **container-type** CSS property is used to define the type of containment used in a container query.
1563 *
1564 * **Syntax**: `normal | size | inline-size`
1565 *
1566 * **Initial value**: `normal`
1567 *
1568 * | Chrome | Firefox | Safari | Edge | IE |
1569 * | :-----: | :-----: | :----: | :--: | :-: |
1570 * | **105** | **110** | **16** | n/a | No |
1571 *
1572 * @see https://developer.mozilla.org/docs/Web/CSS/container-type
1573 */
1574 containerType?: Property.ContainerType | undefined;
1575 /**
1576 * The **`content`** CSS property replaces an element with a generated value. Objects inserted using the `content` property are **anonymous replaced elements**.
1577 *
1578 * **Syntax**: `normal | none | [ <content-replacement> | <content-list> ] [/ [ <string> | <counter> ]+ ]?`
1579 *
1580 * **Initial value**: `normal`
1581 *
1582 * | Chrome | Firefox | Safari | Edge | IE |
1583 * | :----: | :-----: | :----: | :----: | :---: |
1584 * | **1** | **1** | **1** | **12** | **8** |
1585 *
1586 * @see https://developer.mozilla.org/docs/Web/CSS/content
1587 */
1588 content?: Property.Content | undefined;
1589 /**
1590 * 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. It enables the user agent to skip an element's rendering work (including layout and painting) until it is needed — which makes the initial page load much faster.
1591 *
1592 * **Syntax**: `visible | auto | hidden`
1593 *
1594 * **Initial value**: `visible`
1595 *
1596 * | Chrome | Firefox | Safari | Edge | IE |
1597 * | :----: | :---------: | :----: | :--: | :-: |
1598 * | **85** | **preview** | No | n/a | No |
1599 *
1600 * @see https://developer.mozilla.org/docs/Web/CSS/content-visibility
1601 */
1602 contentVisibility?: Property.ContentVisibility | undefined;
1603 /**
1604 * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value.
1605 *
1606 * **Syntax**: `[ <counter-name> <integer>? ]+ | none`
1607 *
1608 * **Initial value**: `none`
1609 *
1610 * | Chrome | Firefox | Safari | Edge | IE |
1611 * | :----: | :-----: | :----: | :----: | :---: |
1612 * | **2** | **1** | **3** | **12** | **8** |
1613 *
1614 * @see https://developer.mozilla.org/docs/Web/CSS/counter-increment
1615 */
1616 counterIncrement?: Property.CounterIncrement | undefined;
1617 /**
1618 * The **`counter-reset`** CSS property resets a CSS counter to a given value. This property will create a new counter or reversed counter with the given name on the specified element.
1619 *
1620 * **Syntax**: `[ <counter-name> <integer>? | <reversed-counter-name> <integer>? ]+ | none`
1621 *
1622 * **Initial value**: `none`
1623 *
1624 * | Chrome | Firefox | Safari | Edge | IE |
1625 * | :----: | :-----: | :----: | :----: | :---: |
1626 * | **2** | **1** | **3** | **12** | **8** |
1627 *
1628 * @see https://developer.mozilla.org/docs/Web/CSS/counter-reset
1629 */
1630 counterReset?: Property.CounterReset | undefined;
1631 /**
1632 * 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.
1633 *
1634 * **Syntax**: `[ <counter-name> <integer>? ]+ | none`
1635 *
1636 * **Initial value**: `none`
1637 *
1638 * | Chrome | Firefox | Safari | Edge | IE |
1639 * | :----: | :-----: | :------: | :--: | :-: |
1640 * | **85** | **68** | **17.2** | n/a | No |
1641 *
1642 * @see https://developer.mozilla.org/docs/Web/CSS/counter-set
1643 */
1644 counterSet?: Property.CounterSet | undefined;
1645 /**
1646 * The **`cursor`** CSS property sets the mouse cursor, if any, to show when the mouse pointer is over an element.
1647 *
1648 * **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 ] ]`
1649 *
1650 * **Initial value**: `auto`
1651 *
1652 * | Chrome | Firefox | Safari | Edge | IE |
1653 * | :----: | :-----: | :-----: | :----: | :---: |
1654 * | **1** | **1** | **1.2** | **12** | **4** |
1655 *
1656 * @see https://developer.mozilla.org/docs/Web/CSS/cursor
1657 */
1658 cursor?: Property.Cursor | undefined;
1659 /**
1660 * 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).
1661 *
1662 * **Syntax**: `ltr | rtl`
1663 *
1664 * **Initial value**: `ltr`
1665 *
1666 * | Chrome | Firefox | Safari | Edge | IE |
1667 * | :----: | :-----: | :----: | :----: | :-----: |
1668 * | **2** | **1** | **1** | **12** | **5.5** |
1669 *
1670 * @see https://developer.mozilla.org/docs/Web/CSS/direction
1671 */
1672 direction?: Property.Direction | undefined;
1673 /**
1674 * 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.
1675 *
1676 * **Syntax**: `[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy>`
1677 *
1678 * **Initial value**: `inline`
1679 *
1680 * | Chrome | Firefox | Safari | Edge | IE |
1681 * | :----: | :-----: | :----: | :----: | :---: |
1682 * | **1** | **1** | **1** | **12** | **4** |
1683 *
1684 * @see https://developer.mozilla.org/docs/Web/CSS/display
1685 */
1686 display?: Property.Display | undefined;
1687 /**
1688 * The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `<table>` cells that have no visible content.
1689 *
1690 * **Syntax**: `show | hide`
1691 *
1692 * **Initial value**: `show`
1693 *
1694 * | Chrome | Firefox | Safari | Edge | IE |
1695 * | :----: | :-----: | :-----: | :----: | :---: |
1696 * | **1** | **1** | **1.2** | **12** | **8** |
1697 *
1698 * @see https://developer.mozilla.org/docs/Web/CSS/empty-cells
1699 */
1700 emptyCells?: Property.EmptyCells | undefined;
1701 /**
1702 * 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.
1703 *
1704 * **Syntax**: `none | <filter-function-list>`
1705 *
1706 * **Initial value**: `none`
1707 *
1708 * | Chrome | Firefox | Safari | Edge | IE |
1709 * | :------: | :-----: | :-----: | :----: | :-: |
1710 * | **53** | **35** | **9.1** | **12** | No |
1711 * | 18 _-x-_ | | 6 _-x-_ | | |
1712 *
1713 * @see https://developer.mozilla.org/docs/Web/CSS/filter
1714 */
1715 filter?: Property.Filter | undefined;
1716 /**
1717 * 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`.
1718 *
1719 * **Syntax**: `content | <'width'>`
1720 *
1721 * **Initial value**: `auto`
1722 *
1723 * | Chrome | Firefox | Safari | Edge | IE |
1724 * | :------: | :-----: | :-----: | :----: | :----: |
1725 * | **29** | **22** | **9** | **12** | **11** |
1726 * | 22 _-x-_ | | 7 _-x-_ | | |
1727 *
1728 * @see https://developer.mozilla.org/docs/Web/CSS/flex-basis
1729 */
1730 flexBasis?: Property.FlexBasis<TLength> | undefined;
1731 /**
1732 * 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).
1733 *
1734 * **Syntax**: `row | row-reverse | column | column-reverse`
1735 *
1736 * **Initial value**: `row`
1737 *
1738 * | Chrome | Firefox | Safari | Edge | IE |
1739 * | :------: | :------: | :-----: | :----: | :------: |
1740 * | **29** | **81** | **9** | **12** | **11** |
1741 * | 21 _-x-_ | 49 _-x-_ | 7 _-x-_ | | 10 _-x-_ |
1742 *
1743 * @see https://developer.mozilla.org/docs/Web/CSS/flex-direction
1744 */
1745 flexDirection?: Property.FlexDirection | undefined;
1746 /**
1747 * The **`flex-grow`** CSS property sets the flex grow factor of a flex item's main size.
1748 *
1749 * **Syntax**: `<number>`
1750 *
1751 * **Initial value**: `0`
1752 *
1753 * | Chrome | Firefox | Safari | Edge | IE |
1754 * | :------: | :-----: | :-----: | :----: | :----------------------: |
1755 * | **29** | **20** | **9** | **12** | **11** |
1756 * | 22 _-x-_ | | 7 _-x-_ | | 10 _(-ms-flex-positive)_ |
1757 *
1758 * @see https://developer.mozilla.org/docs/Web/CSS/flex-grow
1759 */
1760 flexGrow?: Property.FlexGrow | undefined;
1761 /**
1762 * 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`.
1763 *
1764 * **Syntax**: `<number>`
1765 *
1766 * **Initial value**: `1`
1767 *
1768 * | Chrome | Firefox | Safari | Edge | IE |
1769 * | :------: | :-----: | :-----: | :----: | :----: |
1770 * | **29** | **20** | **9** | **12** | **10** |
1771 * | 22 _-x-_ | | 8 _-x-_ | | |
1772 *
1773 * @see https://developer.mozilla.org/docs/Web/CSS/flex-shrink
1774 */
1775 flexShrink?: Property.FlexShrink | undefined;
1776 /**
1777 * 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.
1778 *
1779 * **Syntax**: `nowrap | wrap | wrap-reverse`
1780 *
1781 * **Initial value**: `nowrap`
1782 *
1783 * | Chrome | Firefox | Safari | Edge | IE |
1784 * | :------: | :-----: | :-----: | :----: | :----: |
1785 * | **29** | **28** | **9** | **12** | **11** |
1786 * | 21 _-x-_ | | 7 _-x-_ | | |
1787 *
1788 * @see https://developer.mozilla.org/docs/Web/CSS/flex-wrap
1789 */
1790 flexWrap?: Property.FlexWrap | undefined;
1791 /**
1792 * 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).
1793 *
1794 * **Syntax**: `left | right | none | inline-start | inline-end`
1795 *
1796 * **Initial value**: `none`
1797 *
1798 * | Chrome | Firefox | Safari | Edge | IE |
1799 * | :----: | :-----: | :----: | :----: | :---: |
1800 * | **1** | **1** | **1** | **12** | **4** |
1801 *
1802 * @see https://developer.mozilla.org/docs/Web/CSS/float
1803 */
1804 float?: Property.Float | undefined;
1805 /**
1806 * 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.
1807 *
1808 * **Syntax**: `[ <family-name> | <generic-family> ]#`
1809 *
1810 * **Initial value**: depends on user agent
1811 *
1812 * | Chrome | Firefox | Safari | Edge | IE |
1813 * | :----: | :-----: | :----: | :----: | :---: |
1814 * | **1** | **1** | **1** | **12** | **3** |
1815 *
1816 * @see https://developer.mozilla.org/docs/Web/CSS/font-family
1817 */
1818 fontFamily?: Property.FontFamily | undefined;
1819 /**
1820 * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
1821 *
1822 * **Syntax**: `normal | <feature-tag-value>#`
1823 *
1824 * **Initial value**: `normal`
1825 *
1826 * | Chrome | Firefox | Safari | Edge | IE |
1827 * | :------: | :------: | :-----: | :----: | :----: |
1828 * | **48** | **34** | **9.1** | **15** | **10** |
1829 * | 16 _-x-_ | 15 _-x-_ | | | |
1830 *
1831 * @see https://developer.mozilla.org/docs/Web/CSS/font-feature-settings
1832 */
1833 fontFeatureSettings?: Property.FontFeatureSettings | undefined;
1834 /**
1835 * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font.
1836 *
1837 * **Syntax**: `auto | normal | none`
1838 *
1839 * **Initial value**: `auto`
1840 *
1841 * | Chrome | Firefox | Safari | Edge | IE |
1842 * | :----: | :-----: | :-----: | :--: | :-: |
1843 * | **33** | **32** | **9** | n/a | No |
1844 * | | | 6 _-x-_ | | |
1845 *
1846 * @see https://developer.mozilla.org/docs/Web/CSS/font-kerning
1847 */
1848 fontKerning?: Property.FontKerning | undefined;
1849 /**
1850 * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface.
1851 *
1852 * **Syntax**: `normal | <string>`
1853 *
1854 * **Initial value**: `normal`
1855 *
1856 * | Chrome | Firefox | Safari | Edge | IE |
1857 * | :----: | :-----: | :----: | :--: | :-: |
1858 * | No | **34** | No | n/a | No |
1859 * | | 4 _-x-_ | | | |
1860 *
1861 * @see https://developer.mozilla.org/docs/Web/CSS/font-language-override
1862 */
1863 fontLanguageOverride?: Property.FontLanguageOverride | undefined;
1864 /**
1865 * The **`font-optical-sizing`** CSS property sets whether text rendering is optimized for viewing at different sizes.
1866 *
1867 * **Syntax**: `auto | none`
1868 *
1869 * **Initial value**: `auto`
1870 *
1871 * | Chrome | Firefox | Safari | Edge | IE |
1872 * | :----: | :-----: | :----: | :----: | :-: |
1873 * | **79** | **62** | **11** | **17** | No |
1874 *
1875 * @see https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing
1876 */
1877 fontOpticalSizing?: Property.FontOpticalSizing | undefined;
1878 /**
1879 * **Syntax**: `normal | light | dark | <palette-identifier>`
1880 *
1881 * **Initial value**: `normal`
1882 *
1883 * | Chrome | Firefox | Safari | Edge | IE |
1884 * | :-----: | :-----: | :------: | :--: | :-: |
1885 * | **101** | **107** | **15.4** | n/a | No |
1886 *
1887 * @see https://developer.mozilla.org/docs/Web/CSS/font-palette
1888 */
1889 fontPalette?: Property.FontPalette | undefined;
1890 /**
1891 * 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.
1892 *
1893 * **Syntax**: `<absolute-size> | <relative-size> | <length-percentage>`
1894 *
1895 * **Initial value**: `medium`
1896 *
1897 * | Chrome | Firefox | Safari | Edge | IE |
1898 * | :----: | :-----: | :----: | :----: | :-----: |
1899 * | **1** | **1** | **1** | **12** | **5.5** |
1900 *
1901 * @see https://developer.mozilla.org/docs/Web/CSS/font-size
1902 */
1903 fontSize?: Property.FontSize<TLength> | undefined;
1904 /**
1905 * 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).
1906 *
1907 * **Syntax**: `none | [ ex-height | cap-height | ch-width | ic-width | ic-height ]? [ from-font | <number> ]`
1908 *
1909 * **Initial value**: `none`
1910 *
1911 * | Chrome | Firefox | Safari | Edge | IE |
1912 * | :----: | :-----: | :------: | :--: | :-: |
1913 * | No | **3** | **16.4** | n/a | No |
1914 *
1915 * @see https://developer.mozilla.org/docs/Web/CSS/font-size-adjust
1916 */
1917 fontSizeAdjust?: Property.FontSizeAdjust | undefined;
1918 /**
1919 * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.
1920 *
1921 * **Syntax**: `auto | never | always | <absolute-size> | <length>`
1922 *
1923 * **Initial value**: `auto`
1924 *
1925 * | Chrome | Firefox | Safari | Edge | IE |
1926 * | :------------------------------: | :--------------------------------: | :------------------------------: | :--: | :-: |
1927 * | **5** _(-webkit-font-smoothing)_ | **25** _(-moz-osx-font-smoothing)_ | **4** _(-webkit-font-smoothing)_ | n/a | No |
1928 *
1929 * @see https://developer.mozilla.org/docs/Web/CSS/font-smooth
1930 */
1931 fontSmooth?: Property.FontSmooth<TLength> | undefined;
1932 /**
1933 * The **`font-stretch`** CSS property selects a normal, condensed, or expanded face from a font.
1934 *
1935 * **Syntax**: `<font-stretch-absolute>`
1936 *
1937 * **Initial value**: `normal`
1938 *
1939 * | Chrome | Firefox | Safari | Edge | IE |
1940 * | :----: | :-----: | :----: | :----: | :---: |
1941 * | **60** | **9** | **11** | **12** | **9** |
1942 *
1943 * @see https://developer.mozilla.org/docs/Web/CSS/font-stretch
1944 */
1945 fontStretch?: Property.FontStretch | undefined;
1946 /**
1947 * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`.
1948 *
1949 * **Syntax**: `normal | italic | oblique <angle>?`
1950 *
1951 * **Initial value**: `normal`
1952 *
1953 * | Chrome | Firefox | Safari | Edge | IE |
1954 * | :----: | :-----: | :----: | :----: | :---: |
1955 * | **1** | **1** | **1** | **12** | **4** |
1956 *
1957 * @see https://developer.mozilla.org/docs/Web/CSS/font-style
1958 */
1959 fontStyle?: Property.FontStyle | undefined;
1960 /**
1961 * The **`font-synthesis`** CSS property controls which missing typefaces, bold, italic, or small-caps, may be synthesized by the browser.
1962 *
1963 * **Syntax**: `none | [ weight || style || small-caps || position]`
1964 *
1965 * **Initial value**: `weight style small-caps position `
1966 *
1967 * | Chrome | Firefox | Safari | Edge | IE |
1968 * | :----: | :-----: | :----: | :--: | :-: |
1969 * | **97** | **34** | **9** | n/a | No |
1970 *
1971 * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis
1972 */
1973 fontSynthesis?: Property.FontSynthesis | undefined;
1974 /**
1975 * The **`font-synthesis-position`** CSS property lets you specify whether or not a browser may synthesize the subscript and superscript "position" typefaces when they are missing in a font family, while using `font-variant-position` to set the positions.
1976 *
1977 * **Syntax**: `auto | none`
1978 *
1979 * **Initial value**: `none`
1980 *
1981 * | Chrome | Firefox | Safari | Edge | IE |
1982 * | :----: | :-----: | :----: | :--: | :-: |
1983 * | No | **118** | No | n/a | No |
1984 *
1985 * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis-position
1986 */
1987 fontSynthesisPosition?: Property.FontSynthesisPosition | undefined;
1988 /**
1989 * The **`font-synthesis-small-caps`** CSS property lets you specify whether or not the browser may synthesize small-caps typeface when it is missing in a font family. Small-caps glyphs typically use the form of uppercase letters but are reduced to the size of lowercase letters.
1990 *
1991 * **Syntax**: `auto | none`
1992 *
1993 * **Initial value**: `auto`
1994 *
1995 * | Chrome | Firefox | Safari | Edge | IE |
1996 * | :----: | :-----: | :------: | :--: | :-: |
1997 * | **97** | **111** | **16.4** | n/a | No |
1998 *
1999 * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis-small-caps
2000 */
2001 fontSynthesisSmallCaps?: Property.FontSynthesisSmallCaps | undefined;
2002 /**
2003 * The **`font-synthesis-style`** CSS property lets you specify whether or not the browser may synthesize the oblique typeface when it is missing in a font family.
2004 *
2005 * **Syntax**: `auto | none`
2006 *
2007 * **Initial value**: `auto`
2008 *
2009 * | Chrome | Firefox | Safari | Edge | IE |
2010 * | :----: | :-----: | :------: | :--: | :-: |
2011 * | **97** | **111** | **16.4** | n/a | No |
2012 *
2013 * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis-style
2014 */
2015 fontSynthesisStyle?: Property.FontSynthesisStyle | undefined;
2016 /**
2017 * The **`font-synthesis-weight`** CSS property lets you specify whether or not the browser may synthesize the bold typeface when it is missing in a font family.
2018 *
2019 * **Syntax**: `auto | none`
2020 *
2021 * **Initial value**: `auto`
2022 *
2023 * | Chrome | Firefox | Safari | Edge | IE |
2024 * | :----: | :-----: | :------: | :--: | :-: |
2025 * | **97** | **111** | **16.4** | n/a | No |
2026 *
2027 * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis-weight
2028 */
2029 fontSynthesisWeight?: Property.FontSynthesisWeight | undefined;
2030 /**
2031 * The **`font-variant`** CSS shorthand property allows you to set all the font variants for a font.
2032 *
2033 * **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 ]`
2034 *
2035 * **Initial value**: `normal`
2036 *
2037 * | Chrome | Firefox | Safari | Edge | IE |
2038 * | :----: | :-----: | :----: | :----: | :---: |
2039 * | **1** | **1** | **1** | **12** | **4** |
2040 *
2041 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant
2042 */
2043 fontVariant?: Property.FontVariant | undefined;
2044 /**
2045 * 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`.
2046 *
2047 * **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> ) ]`
2048 *
2049 * **Initial value**: `normal`
2050 *
2051 * | Chrome | Firefox | Safari | Edge | IE |
2052 * | :-----: | :-----: | :-----: | :--: | :-: |
2053 * | **111** | **34** | **9.1** | n/a | No |
2054 *
2055 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-alternates
2056 */
2057 fontVariantAlternates?: Property.FontVariantAlternates | undefined;
2058 /**
2059 * The **`font-variant-caps`** CSS property controls the use of alternate glyphs for capital letters.
2060 *
2061 * **Syntax**: `normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps`
2062 *
2063 * **Initial value**: `normal`
2064 *
2065 * | Chrome | Firefox | Safari | Edge | IE |
2066 * | :----: | :-----: | :-----: | :--: | :-: |
2067 * | **52** | **34** | **9.1** | n/a | No |
2068 *
2069 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-caps
2070 */
2071 fontVariantCaps?: Property.FontVariantCaps | undefined;
2072 /**
2073 * The **`font-variant-east-asian`** CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese.
2074 *
2075 * **Syntax**: `normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]`
2076 *
2077 * **Initial value**: `normal`
2078 *
2079 * | Chrome | Firefox | Safari | Edge | IE |
2080 * | :----: | :-----: | :-----: | :--: | :-: |
2081 * | **63** | **34** | **9.1** | n/a | No |
2082 *
2083 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian
2084 */
2085 fontVariantEastAsian?: Property.FontVariantEastAsian | undefined;
2086 /**
2087 * **Syntax**: `normal | text | emoji | unicode`
2088 *
2089 * **Initial value**: `normal`
2090 *
2091 * | Chrome | Firefox | Safari | Edge | IE |
2092 * | :----: | :-----: | :----: | :--: | :-: |
2093 * | No | n/a | No | n/a | No |
2094 *
2095 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-emoji
2096 */
2097 fontVariantEmoji?: Property.FontVariantEmoji | undefined;
2098 /**
2099 * 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.
2100 *
2101 * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]`
2102 *
2103 * **Initial value**: `normal`
2104 *
2105 * | Chrome | Firefox | Safari | Edge | IE |
2106 * | :------: | :-----: | :-----: | :--: | :-: |
2107 * | **34** | **34** | **9.1** | n/a | No |
2108 * | 31 _-x-_ | | 7 _-x-_ | | |
2109 *
2110 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures
2111 */
2112 fontVariantLigatures?: Property.FontVariantLigatures | undefined;
2113 /**
2114 * The **`font-variant-numeric`** CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers.
2115 *
2116 * **Syntax**: `normal | [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ]`
2117 *
2118 * **Initial value**: `normal`
2119 *
2120 * | Chrome | Firefox | Safari | Edge | IE |
2121 * | :----: | :-----: | :-----: | :--: | :-: |
2122 * | **52** | **34** | **9.1** | n/a | No |
2123 *
2124 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric
2125 */
2126 fontVariantNumeric?: Property.FontVariantNumeric | undefined;
2127 /**
2128 * The **`font-variant-position`** CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript.
2129 *
2130 * **Syntax**: `normal | sub | super`
2131 *
2132 * **Initial value**: `normal`
2133 *
2134 * | Chrome | Firefox | Safari | Edge | IE |
2135 * | :-----: | :-----: | :-----: | :--: | :-: |
2136 * | **117** | **34** | **9.1** | n/a | No |
2137 *
2138 * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position
2139 */
2140 fontVariantPosition?: Property.FontVariantPosition | undefined;
2141 /**
2142 * 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.
2143 *
2144 * **Syntax**: `normal | [ <string> <number> ]#`
2145 *
2146 * **Initial value**: `normal`
2147 *
2148 * | Chrome | Firefox | Safari | Edge | IE |
2149 * | :----: | :-----: | :----: | :----: | :-: |
2150 * | **62** | **62** | **11** | **17** | No |
2151 *
2152 * @see https://developer.mozilla.org/docs/Web/CSS/font-variation-settings
2153 */
2154 fontVariationSettings?: Property.FontVariationSettings | undefined;
2155 /**
2156 * 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.
2157 *
2158 * **Syntax**: `<font-weight-absolute> | bolder | lighter`
2159 *
2160 * **Initial value**: `normal`
2161 *
2162 * | Chrome | Firefox | Safari | Edge | IE |
2163 * | :----: | :-----: | :----: | :----: | :---: |
2164 * | **2** | **1** | **1** | **12** | **3** |
2165 *
2166 * @see https://developer.mozilla.org/docs/Web/CSS/font-weight
2167 */
2168 fontWeight?: Property.FontWeight | undefined;
2169 /**
2170 * 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.
2171 *
2172 * **Syntax**: `auto | none`
2173 *
2174 * **Initial value**: `auto`
2175 *
2176 * | Chrome | Firefox | Safari | Edge | IE |
2177 * | :----: | :-----: | :----: | :-----------------------------: | :---------------------------------: |
2178 * | **89** | **113** | No | **79** | **10** _(-ms-high-contrast-adjust)_ |
2179 * | | | | 12 _(-ms-high-contrast-adjust)_ | |
2180 *
2181 * @see https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust
2182 */
2183 forcedColorAdjust?: Property.ForcedColorAdjust | undefined;
2184 /**
2185 * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track or pattern of tracks.
2186 *
2187 * **Syntax**: `<track-size>+`
2188 *
2189 * **Initial value**: `auto`
2190 *
2191 * | Chrome | Firefox | Safari | Edge | IE |
2192 * | :----: | :-----: | :------: | :----: | :-------------------------: |
2193 * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-columns)_ |
2194 *
2195 * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns
2196 */
2197 gridAutoColumns?: Property.GridAutoColumns<TLength> | undefined;
2198 /**
2199 * The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid.
2200 *
2201 * **Syntax**: `[ row | column ] || dense`
2202 *
2203 * **Initial value**: `row`
2204 *
2205 * | Chrome | Firefox | Safari | Edge | IE |
2206 * | :----: | :-----: | :------: | :----: | :-: |
2207 * | **57** | **52** | **10.1** | **16** | No |
2208 *
2209 * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow
2210 */
2211 gridAutoFlow?: Property.GridAutoFlow | undefined;
2212 /**
2213 * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track or pattern of tracks.
2214 *
2215 * **Syntax**: `<track-size>+`
2216 *
2217 * **Initial value**: `auto`
2218 *
2219 * | Chrome | Firefox | Safari | Edge | IE |
2220 * | :----: | :-----: | :------: | :----: | :----------------------: |
2221 * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-rows)_ |
2222 *
2223 * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows
2224 */
2225 gridAutoRows?: Property.GridAutoRows<TLength> | undefined;
2226 /**
2227 * 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.
2228 *
2229 * **Syntax**: `<grid-line>`
2230 *
2231 * **Initial value**: `auto`
2232 *
2233 * | Chrome | Firefox | Safari | Edge | IE |
2234 * | :----: | :-----: | :------: | :----: | :-: |
2235 * | **57** | **52** | **10.1** | **16** | No |
2236 *
2237 * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-end
2238 */
2239 gridColumnEnd?: Property.GridColumnEnd | undefined;
2240 /**
2241 * 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.
2242 *
2243 * **Syntax**: `<grid-line>`
2244 *
2245 * **Initial value**: `auto`
2246 *
2247 * | Chrome | Firefox | Safari | Edge | IE |
2248 * | :----: | :-----: | :------: | :----: | :-: |
2249 * | **57** | **52** | **10.1** | **16** | No |
2250 *
2251 * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-start
2252 */
2253 gridColumnStart?: Property.GridColumnStart | undefined;
2254 /**
2255 * 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.
2256 *
2257 * **Syntax**: `<grid-line>`
2258 *
2259 * **Initial value**: `auto`
2260 *
2261 * | Chrome | Firefox | Safari | Edge | IE |
2262 * | :----: | :-----: | :------: | :----: | :-: |
2263 * | **57** | **52** | **10.1** | **16** | No |
2264 *
2265 * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-end
2266 */
2267 gridRowEnd?: Property.GridRowEnd | undefined;
2268 /**
2269 * 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.
2270 *
2271 * **Syntax**: `<grid-line>`
2272 *
2273 * **Initial value**: `auto`
2274 *
2275 * | Chrome | Firefox | Safari | Edge | IE |
2276 * | :----: | :-----: | :------: | :----: | :-: |
2277 * | **57** | **52** | **10.1** | **16** | No |
2278 *
2279 * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-start
2280 */
2281 gridRowStart?: Property.GridRowStart | undefined;
2282 /**
2283 * The **`grid-template-areas`** CSS property specifies named grid areas, establishing the cells in the grid and assigning them names.
2284 *
2285 * **Syntax**: `none | <string>+`
2286 *
2287 * **Initial value**: `none`
2288 *
2289 * | Chrome | Firefox | Safari | Edge | IE |
2290 * | :----: | :-----: | :------: | :----: | :-: |
2291 * | **57** | **52** | **10.1** | **16** | No |
2292 *
2293 * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-areas
2294 */
2295 gridTemplateAreas?: Property.GridTemplateAreas | undefined;
2296 /**
2297 * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.
2298 *
2299 * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`
2300 *
2301 * **Initial value**: `none`
2302 *
2303 * | Chrome | Firefox | Safari | Edge | IE |
2304 * | :----: | :-----: | :------: | :----: | :-------------------------: |
2305 * | **57** | **52** | **10.1** | **16** | **10** _(-ms-grid-columns)_ |
2306 *
2307 * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-columns
2308 */
2309 gridTemplateColumns?: Property.GridTemplateColumns<TLength> | undefined;
2310 /**
2311 * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.
2312 *
2313 * **Syntax**: `none | <track-list> | <auto-track-list> | subgrid <line-name-list>?`
2314 *
2315 * **Initial value**: `none`
2316 *
2317 * | Chrome | Firefox | Safari | Edge | IE |
2318 * | :----: | :-----: | :------: | :----: | :----------------------: |
2319 * | **57** | **52** | **10.1** | **16** | **10** _(-ms-grid-rows)_ |
2320 *
2321 * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-rows
2322 */
2323 gridTemplateRows?: Property.GridTemplateRows<TLength> | undefined;
2324 /**
2325 * 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.
2326 *
2327 * **Syntax**: `none | [ first || [ force-end | allow-end ] || last ]`
2328 *
2329 * **Initial value**: `none`
2330 *
2331 * | Chrome | Firefox | Safari | Edge | IE |
2332 * | :----: | :-----: | :----: | :--: | :-: |
2333 * | No | No | **10** | n/a | No |
2334 *
2335 * @see https://developer.mozilla.org/docs/Web/CSS/hanging-punctuation
2336 */
2337 hangingPunctuation?: Property.HangingPunctuation | undefined;
2338 /**
2339 * 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.
2340 *
2341 * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
2342 *
2343 * **Initial value**: `auto`
2344 *
2345 * | Chrome | Firefox | Safari | Edge | IE |
2346 * | :----: | :-----: | :----: | :----: | :---: |
2347 * | **1** | **1** | **1** | **12** | **4** |
2348 *
2349 * @see https://developer.mozilla.org/docs/Web/CSS/height
2350 */
2351 height?: Property.Height<TLength> | undefined;
2352 /**
2353 * The **`hyphenate-character`** CSS property sets the character (or string) used at the end of a line before a hyphenation break.
2354 *
2355 * **Syntax**: `auto | <string>`
2356 *
2357 * **Initial value**: `auto`
2358 *
2359 * | Chrome | Firefox | Safari | Edge | IE |
2360 * | :-----: | :-----: | :-------: | :--: | :-: |
2361 * | **106** | **98** | **17** | n/a | No |
2362 * | 6 _-x-_ | | 5.1 _-x-_ | | |
2363 *
2364 * @see https://developer.mozilla.org/docs/Web/CSS/hyphenate-character
2365 */
2366 hyphenateCharacter?: Property.HyphenateCharacter | undefined;
2367 /**
2368 * The **`hyphenate-limit-chars`** CSS property specifies the minimum word length to allow hyphenation of words as well as the the minimum number of characters before and after the hyphen.
2369 *
2370 * **Syntax**: `[ auto | <integer> ]{1,3}`
2371 *
2372 * **Initial value**: `auto`
2373 *
2374 * | Chrome | Firefox | Safari | Edge | IE |
2375 * | :-----: | :-----: | :----: | :--: | :-: |
2376 * | **109** | No | No | n/a | No |
2377 */
2378 hyphenateLimitChars?: Property.HyphenateLimitChars | undefined;
2379 /**
2380 * 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.
2381 *
2382 * **Syntax**: `none | manual | auto`
2383 *
2384 * **Initial value**: `manual`
2385 *
2386 * | Chrome | Firefox | Safari | Edge | IE |
2387 * | :------: | :-----: | :-------: | :----: | :----------: |
2388 * | **55** | **43** | **17** | **79** | **10** _-x-_ |
2389 * | 13 _-x-_ | 6 _-x-_ | 5.1 _-x-_ | | |
2390 *
2391 * @see https://developer.mozilla.org/docs/Web/CSS/hyphens
2392 */
2393 hyphens?: Property.Hyphens | undefined;
2394 /**
2395 * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image.
2396 *
2397 * **Syntax**: `from-image | <angle> | [ <angle>? flip ]`
2398 *
2399 * **Initial value**: `from-image`
2400 *
2401 * | Chrome | Firefox | Safari | Edge | IE |
2402 * | :----: | :-----: | :------: | :--: | :-: |
2403 * | **81** | **26** | **13.1** | n/a | No |
2404 *
2405 * @see https://developer.mozilla.org/docs/Web/CSS/image-orientation
2406 */
2407 imageOrientation?: Property.ImageOrientation | undefined;
2408 /**
2409 * 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.
2410 *
2411 * **Syntax**: `auto | crisp-edges | pixelated`
2412 *
2413 * **Initial value**: `auto`
2414 *
2415 * | Chrome | Firefox | Safari | Edge | IE |
2416 * | :----: | :-----: | :----: | :--: | :-: |
2417 * | **13** | **3.6** | **6** | n/a | No |
2418 *
2419 * @see https://developer.mozilla.org/docs/Web/CSS/image-rendering
2420 */
2421 imageRendering?: Property.ImageRendering | undefined;
2422 /**
2423 * **Syntax**: `[ from-image || <resolution> ] && snap?`
2424 *
2425 * **Initial value**: `1dppx`
2426 */
2427 imageResolution?: Property.ImageResolution | undefined;
2428 /**
2429 * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters.
2430 *
2431 * **Syntax**: `normal | [ <number> <integer>? ]`
2432 *
2433 * **Initial value**: `normal`
2434 *
2435 * | Chrome | Firefox | Safari | Edge | IE |
2436 * | :-----: | :-----: | :---------: | :--: | :-: |
2437 * | **110** | No | **9** _-x-_ | n/a | No |
2438 *
2439 * @see https://developer.mozilla.org/docs/Web/CSS/initial-letter
2440 */
2441 initialLetter?: Property.InitialLetter | undefined;
2442 /**
2443 * 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`.
2444 *
2445 * **Syntax**: `<'width'>`
2446 *
2447 * **Initial value**: `auto`
2448 *
2449 * | Chrome | Firefox | Safari | Edge | IE |
2450 * | :----: | :-----: | :------: | :--: | :-: |
2451 * | **57** | **41** | **12.1** | n/a | No |
2452 *
2453 * @see https://developer.mozilla.org/docs/Web/CSS/inline-size
2454 */
2455 inlineSize?: Property.InlineSize<TLength> | undefined;
2456 /**
2457 * **Syntax**: `auto | none`
2458 *
2459 * **Initial value**: `auto`
2460 */
2461 inputSecurity?: Property.InputSecurity | undefined;
2462 /**
2463 * 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`.
2464 *
2465 * **Syntax**: `<'top'>`
2466 *
2467 * **Initial value**: `auto`
2468 *
2469 * | Chrome | Firefox | Safari | Edge | IE |
2470 * | :----: | :-----: | :------: | :--: | :-: |
2471 * | **87** | **63** | **14.1** | n/a | No |
2472 *
2473 * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end
2474 */
2475 insetBlockEnd?: Property.InsetBlockEnd<TLength> | undefined;
2476 /**
2477 * 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`.
2478 *
2479 * **Syntax**: `<'top'>`
2480 *
2481 * **Initial value**: `auto`
2482 *
2483 * | Chrome | Firefox | Safari | Edge | IE |
2484 * | :----: | :-----: | :------: | :--: | :-: |
2485 * | **87** | **63** | **14.1** | n/a | No |
2486 *
2487 * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start
2488 */
2489 insetBlockStart?: Property.InsetBlockStart<TLength> | undefined;
2490 /**
2491 * 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`.
2492 *
2493 * **Syntax**: `<'top'>`
2494 *
2495 * **Initial value**: `auto`
2496 *
2497 * | Chrome | Firefox | Safari | Edge | IE |
2498 * | :----: | :-----: | :------: | :--: | :-: |
2499 * | **87** | **63** | **14.1** | n/a | No |
2500 *
2501 * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
2502 */
2503 insetInlineEnd?: Property.InsetInlineEnd<TLength> | undefined;
2504 /**
2505 * 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`.
2506 *
2507 * **Syntax**: `<'top'>`
2508 *
2509 * **Initial value**: `auto`
2510 *
2511 * | Chrome | Firefox | Safari | Edge | IE |
2512 * | :----: | :-----: | :------: | :--: | :-: |
2513 * | **87** | **63** | **14.1** | n/a | No |
2514 *
2515 * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
2516 */
2517 insetInlineStart?: Property.InsetInlineStart<TLength> | undefined;
2518 /**
2519 * The **`isolation`** CSS property determines whether an element must create a new stacking context.
2520 *
2521 * **Syntax**: `auto | isolate`
2522 *
2523 * **Initial value**: `auto`
2524 *
2525 * | Chrome | Firefox | Safari | Edge | IE |
2526 * | :----: | :-----: | :----: | :--: | :-: |
2527 * | **41** | **36** | **8** | n/a | No |
2528 *
2529 * @see https://developer.mozilla.org/docs/Web/CSS/isolation
2530 */
2531 isolation?: Property.Isolation | undefined;
2532 /**
2533 * 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.
2534 *
2535 * **Syntax**: `normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]`
2536 *
2537 * **Initial value**: `normal`
2538 *
2539 * | Chrome | Firefox | Safari | Edge | IE |
2540 * | :------: | :-----: | :-----: | :----: | :----: |
2541 * | **29** | **20** | **9** | **12** | **11** |
2542 * | 21 _-x-_ | | 7 _-x-_ | | |
2543 *
2544 * @see https://developer.mozilla.org/docs/Web/CSS/justify-content
2545 */
2546 justifyContent?: Property.JustifyContent | undefined;
2547 /**
2548 * 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.
2549 *
2550 * **Syntax**: `normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]`
2551 *
2552 * **Initial value**: `legacy`
2553 *
2554 * | Chrome | Firefox | Safari | Edge | IE |
2555 * | :----: | :-----: | :----: | :----: | :----: |
2556 * | **52** | **20** | **9** | **12** | **11** |
2557 *
2558 * @see https://developer.mozilla.org/docs/Web/CSS/justify-items
2559 */
2560 justifyItems?: Property.JustifyItems | undefined;
2561 /**
2562 * The CSS **`justify-self`** property sets the way a box is justified inside its alignment container along the appropriate axis.
2563 *
2564 * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]`
2565 *
2566 * **Initial value**: `auto`
2567 *
2568 * | Chrome | Firefox | Safari | Edge | IE |
2569 * | :----: | :-----: | :------: | :----: | :----: |
2570 * | **57** | **45** | **10.1** | **16** | **10** |
2571 *
2572 * @see https://developer.mozilla.org/docs/Web/CSS/justify-self
2573 */
2574 justifySelf?: Property.JustifySelf | undefined;
2575 /**
2576 * The **`justify-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their inline axis.
2577 *
2578 * **Syntax**: `[ normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] ]#`
2579 *
2580 * **Initial value**: `normal`
2581 *
2582 * | Chrome | Firefox | Safari | Edge | IE |
2583 * | :----: | :-----: | :----: | :--: | :-: |
2584 * | No | n/a | No | n/a | No |
2585 *
2586 * @see https://developer.mozilla.org/docs/Web/CSS/justify-tracks
2587 */
2588 justifyTracks?: Property.JustifyTracks | undefined;
2589 /**
2590 * The **`left`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.
2591 *
2592 * **Syntax**: `<length> | <percentage> | auto`
2593 *
2594 * **Initial value**: `auto`
2595 *
2596 * | Chrome | Firefox | Safari | Edge | IE |
2597 * | :----: | :-----: | :----: | :----: | :-----: |
2598 * | **1** | **1** | **1** | **12** | **5.5** |
2599 *
2600 * @see https://developer.mozilla.org/docs/Web/CSS/left
2601 */
2602 left?: Property.Left<TLength> | undefined;
2603 /**
2604 * 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.
2605 *
2606 * **Syntax**: `normal | <length>`
2607 *
2608 * **Initial value**: `normal`
2609 *
2610 * | Chrome | Firefox | Safari | Edge | IE |
2611 * | :----: | :-----: | :----: | :----: | :---: |
2612 * | **1** | **1** | **1** | **12** | **4** |
2613 *
2614 * @see https://developer.mozilla.org/docs/Web/CSS/letter-spacing
2615 */
2616 letterSpacing?: Property.LetterSpacing<TLength> | undefined;
2617 /**
2618 * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
2619 *
2620 * **Syntax**: `auto | loose | normal | strict | anywhere`
2621 *
2622 * **Initial value**: `auto`
2623 *
2624 * | Chrome | Firefox | Safari | Edge | IE |
2625 * | :-----: | :-----: | :-----: | :----: | :-----: |
2626 * | **58** | **69** | **11** | **14** | **5.5** |
2627 * | 1 _-x-_ | | 3 _-x-_ | | |
2628 *
2629 * @see https://developer.mozilla.org/docs/Web/CSS/line-break
2630 */
2631 lineBreak?: Property.LineBreak | undefined;
2632 /**
2633 * 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.
2634 *
2635 * **Syntax**: `normal | <number> | <length> | <percentage>`
2636 *
2637 * **Initial value**: `normal`
2638 *
2639 * | Chrome | Firefox | Safari | Edge | IE |
2640 * | :----: | :-----: | :----: | :----: | :---: |
2641 * | **1** | **1** | **1** | **12** | **4** |
2642 *
2643 * @see https://developer.mozilla.org/docs/Web/CSS/line-height
2644 */
2645 lineHeight?: Property.LineHeight<TLength> | undefined;
2646 /**
2647 * 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.
2648 *
2649 * **Syntax**: `<length>`
2650 *
2651 * **Initial value**: `0`
2652 *
2653 * | Chrome | Firefox | Safari | Edge | IE |
2654 * | :----: | :-----: | :----: | :--: | :-: |
2655 * | n/a | No | No | n/a | No |
2656 *
2657 * @see https://developer.mozilla.org/docs/Web/CSS/line-height-step
2658 */
2659 lineHeightStep?: Property.LineHeightStep<TLength> | undefined;
2660 /**
2661 * The **`list-style-image`** CSS property sets an image to be used as the list item marker.
2662 *
2663 * **Syntax**: `<image> | none`
2664 *
2665 * **Initial value**: `none`
2666 *
2667 * | Chrome | Firefox | Safari | Edge | IE |
2668 * | :----: | :-----: | :----: | :----: | :---: |
2669 * | **1** | **1** | **1** | **12** | **4** |
2670 *
2671 * @see https://developer.mozilla.org/docs/Web/CSS/list-style-image
2672 */
2673 listStyleImage?: Property.ListStyleImage | undefined;
2674 /**
2675 * The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item.
2676 *
2677 * **Syntax**: `inside | outside`
2678 *
2679 * **Initial value**: `outside`
2680 *
2681 * | Chrome | Firefox | Safari | Edge | IE |
2682 * | :----: | :-----: | :----: | :----: | :---: |
2683 * | **1** | **1** | **1** | **12** | **4** |
2684 *
2685 * @see https://developer.mozilla.org/docs/Web/CSS/list-style-position
2686 */
2687 listStylePosition?: Property.ListStylePosition | undefined;
2688 /**
2689 * The **`list-style-type`** CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element.
2690 *
2691 * **Syntax**: `<counter-style> | <string> | none`
2692 *
2693 * **Initial value**: `disc`
2694 *
2695 * | Chrome | Firefox | Safari | Edge | IE |
2696 * | :----: | :-----: | :----: | :----: | :---: |
2697 * | **1** | **1** | **1** | **12** | **4** |
2698 *
2699 * @see https://developer.mozilla.org/docs/Web/CSS/list-style-type
2700 */
2701 listStyleType?: Property.ListStyleType | undefined;
2702 /**
2703 * 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.
2704 *
2705 * **Syntax**: `<'margin-left'>`
2706 *
2707 * **Initial value**: `0`
2708 *
2709 * | Chrome | Firefox | Safari | Edge | IE |
2710 * | :----: | :-----: | :------: | :--: | :-: |
2711 * | **69** | **41** | **12.1** | n/a | No |
2712 *
2713 * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end
2714 */
2715 marginBlockEnd?: Property.MarginBlockEnd<TLength> | undefined;
2716 /**
2717 * 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.
2718 *
2719 * **Syntax**: `<'margin-left'>`
2720 *
2721 * **Initial value**: `0`
2722 *
2723 * | Chrome | Firefox | Safari | Edge | IE |
2724 * | :----: | :-----: | :------: | :--: | :-: |
2725 * | **69** | **41** | **12.1** | n/a | No |
2726 *
2727 * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start
2728 */
2729 marginBlockStart?: Property.MarginBlockStart<TLength> | undefined;
2730 /**
2731 * 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.
2732 *
2733 * **Syntax**: `<length> | <percentage> | auto`
2734 *
2735 * **Initial value**: `0`
2736 *
2737 * | Chrome | Firefox | Safari | Edge | IE |
2738 * | :----: | :-----: | :----: | :----: | :---: |
2739 * | **1** | **1** | **1** | **12** | **3** |
2740 *
2741 * @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom
2742 */
2743 marginBottom?: Property.MarginBottom<TLength> | undefined;
2744 /**
2745 * 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`.
2746 *
2747 * **Syntax**: `<'margin-left'>`
2748 *
2749 * **Initial value**: `0`
2750 *
2751 * | Chrome | Firefox | Safari | Edge | IE |
2752 * | :----------------------: | :-------------------: | :----------------------: | :--: | :-: |
2753 * | **69** | **41** | **12.1** | n/a | No |
2754 * | 2 _(-webkit-margin-end)_ | 3 _(-moz-margin-end)_ | 3 _(-webkit-margin-end)_ | | |
2755 *
2756 * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
2757 */
2758 marginInlineEnd?: Property.MarginInlineEnd<TLength> | undefined;
2759 /**
2760 * 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`.
2761 *
2762 * **Syntax**: `<'margin-left'>`
2763 *
2764 * **Initial value**: `0`
2765 *
2766 * | Chrome | Firefox | Safari | Edge | IE |
2767 * | :------------------------: | :---------------------: | :------------------------: | :--: | :-: |
2768 * | **69** | **41** | **12.1** | n/a | No |
2769 * | 2 _(-webkit-margin-start)_ | 3 _(-moz-margin-start)_ | 3 _(-webkit-margin-start)_ | | |
2770 *
2771 * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
2772 */
2773 marginInlineStart?: Property.MarginInlineStart<TLength> | undefined;
2774 /**
2775 * 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.
2776 *
2777 * **Syntax**: `<length> | <percentage> | auto`
2778 *
2779 * **Initial value**: `0`
2780 *
2781 * | Chrome | Firefox | Safari | Edge | IE |
2782 * | :----: | :-----: | :----: | :----: | :---: |
2783 * | **1** | **1** | **1** | **12** | **3** |
2784 *
2785 * @see https://developer.mozilla.org/docs/Web/CSS/margin-left
2786 */
2787 marginLeft?: Property.MarginLeft<TLength> | undefined;
2788 /**
2789 * 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.
2790 *
2791 * **Syntax**: `<length> | <percentage> | auto`
2792 *
2793 * **Initial value**: `0`
2794 *
2795 * | Chrome | Firefox | Safari | Edge | IE |
2796 * | :----: | :-----: | :----: | :----: | :---: |
2797 * | **1** | **1** | **1** | **12** | **3** |
2798 *
2799 * @see https://developer.mozilla.org/docs/Web/CSS/margin-right
2800 */
2801 marginRight?: Property.MarginRight<TLength> | undefined;
2802 /**
2803 * 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.
2804 *
2805 * **Syntax**: `<length> | <percentage> | auto`
2806 *
2807 * **Initial value**: `0`
2808 *
2809 * | Chrome | Firefox | Safari | Edge | IE |
2810 * | :----: | :-----: | :----: | :----: | :---: |
2811 * | **1** | **1** | **1** | **12** | **3** |
2812 *
2813 * @see https://developer.mozilla.org/docs/Web/CSS/margin-top
2814 */
2815 marginTop?: Property.MarginTop<TLength> | undefined;
2816 /**
2817 * The `margin-trim` property allows the container to trim the margins of its children where they adjoin the container's edges.
2818 *
2819 * **Syntax**: `none | in-flow | all`
2820 *
2821 * **Initial value**: `none`
2822 *
2823 * | Chrome | Firefox | Safari | Edge | IE |
2824 * | :----: | :-----: | :------: | :--: | :-: |
2825 * | No | No | **16.4** | n/a | No |
2826 *
2827 * @see https://developer.mozilla.org/docs/Web/CSS/margin-trim
2828 */
2829 marginTrim?: Property.MarginTrim | undefined;
2830 /**
2831 * The **`mask-border-mode`** CSS property specifies the blending mode used in a mask border.
2832 *
2833 * **Syntax**: `luminance | alpha`
2834 *
2835 * **Initial value**: `alpha`
2836 */
2837 maskBorderMode?: Property.MaskBorderMode | undefined;
2838 /**
2839 * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box.
2840 *
2841 * **Syntax**: `[ <length> | <number> ]{1,4}`
2842 *
2843 * **Initial value**: `0`
2844 *
2845 * | Chrome | Firefox | Safari | Edge | IE |
2846 * | :-------------------------------------: | :-----: | :-----------------------------------: | :--: | :-: |
2847 * | **1** _(-webkit-mask-box-image-outset)_ | No | **17.2** | n/a | No |
2848 * | | | 3.1 _(-webkit-mask-box-image-outset)_ | | |
2849 *
2850 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-outset
2851 */
2852 maskBorderOutset?: Property.MaskBorderOutset<TLength> | undefined;
2853 /**
2854 * 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.
2855 *
2856 * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`
2857 *
2858 * **Initial value**: `stretch`
2859 *
2860 * | Chrome | Firefox | Safari | Edge | IE |
2861 * | :-------------------------------------: | :-----: | :-----------------------------------: | :--: | :-: |
2862 * | **1** _(-webkit-mask-box-image-repeat)_ | No | **17.2** | n/a | No |
2863 * | | | 3.1 _(-webkit-mask-box-image-repeat)_ | | |
2864 *
2865 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-repeat
2866 */
2867 maskBorderRepeat?: Property.MaskBorderRepeat | undefined;
2868 /**
2869 * 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.
2870 *
2871 * **Syntax**: `<number-percentage>{1,4} fill?`
2872 *
2873 * **Initial value**: `0`
2874 *
2875 * | Chrome | Firefox | Safari | Edge | IE |
2876 * | :------------------------------------: | :-----: | :----------------------------------: | :--: | :-: |
2877 * | **1** _(-webkit-mask-box-image-slice)_ | No | **17.2** | n/a | No |
2878 * | | | 3.1 _(-webkit-mask-box-image-slice)_ | | |
2879 *
2880 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-slice
2881 */
2882 maskBorderSlice?: Property.MaskBorderSlice | undefined;
2883 /**
2884 * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border.
2885 *
2886 * **Syntax**: `none | <image>`
2887 *
2888 * **Initial value**: `none`
2889 *
2890 * | Chrome | Firefox | Safari | Edge | IE |
2891 * | :-------------------------------------: | :-----: | :-----------------------------------: | :--: | :-: |
2892 * | **1** _(-webkit-mask-box-image-source)_ | No | **17.2** | n/a | No |
2893 * | | | 3.1 _(-webkit-mask-box-image-source)_ | | |
2894 *
2895 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-source
2896 */
2897 maskBorderSource?: Property.MaskBorderSource | undefined;
2898 /**
2899 * The **`mask-border-width`** CSS property sets the width of an element's mask border.
2900 *
2901 * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`
2902 *
2903 * **Initial value**: `auto`
2904 *
2905 * | Chrome | Firefox | Safari | Edge | IE |
2906 * | :------------------------------------: | :-----: | :----------------------------------: | :--: | :-: |
2907 * | **1** _(-webkit-mask-box-image-width)_ | No | **17.2** | n/a | No |
2908 * | | | 3.1 _(-webkit-mask-box-image-width)_ | | |
2909 *
2910 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-width
2911 */
2912 maskBorderWidth?: Property.MaskBorderWidth<TLength> | undefined;
2913 /**
2914 * 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.
2915 *
2916 * **Syntax**: `[ <geometry-box> | no-clip ]#`
2917 *
2918 * **Initial value**: `border-box`
2919 *
2920 * | Chrome | Firefox | Safari | Edge | IE |
2921 * | :-----: | :-----: | :------: | :--: | :-: |
2922 * | **120** | **53** | **15.4** | n/a | No |
2923 * | 1 _-x-_ | | 4 _-x-_ | | |
2924 *
2925 * @see https://developer.mozilla.org/docs/Web/CSS/mask-clip
2926 */
2927 maskClip?: Property.MaskClip | undefined;
2928 /**
2929 * The **`mask-composite`** CSS property represents a compositing operation used on the current mask layer with the mask layers below it.
2930 *
2931 * **Syntax**: `<compositing-operator>#`
2932 *
2933 * **Initial value**: `add`
2934 *
2935 * | Chrome | Firefox | Safari | Edge | IE |
2936 * | :-----: | :-----: | :------: | :---: | :-: |
2937 * | **120** | **53** | **15.4** | 18-79 | No |
2938 *
2939 * @see https://developer.mozilla.org/docs/Web/CSS/mask-composite
2940 */
2941 maskComposite?: Property.MaskComposite | undefined;
2942 /**
2943 * The **`mask-image`** CSS property sets the image that is used as mask layer for an element. By default this means the alpha channel of the mask image will be multiplied with the alpha channel of the element. This can be controlled with the `mask-mode` property.
2944 *
2945 * **Syntax**: `<mask-reference>#`
2946 *
2947 * **Initial value**: `none`
2948 *
2949 * | Chrome | Firefox | Safari | Edge | IE |
2950 * | :-----: | :-----: | :------: | :---: | :-: |
2951 * | **120** | **53** | **15.4** | 16-79 | No |
2952 * | 1 _-x-_ | | 4 _-x-_ | | |
2953 *
2954 * @see https://developer.mozilla.org/docs/Web/CSS/mask-image
2955 */
2956 maskImage?: Property.MaskImage | undefined;
2957 /**
2958 * The **`mask-mode`** CSS property sets whether the mask reference defined by `mask-image` is treated as a luminance or alpha mask.
2959 *
2960 * **Syntax**: `<masking-mode>#`
2961 *
2962 * **Initial value**: `match-source`
2963 *
2964 * | Chrome | Firefox | Safari | Edge | IE |
2965 * | :-----: | :-----: | :------: | :--: | :-: |
2966 * | **120** | **53** | **15.4** | n/a | No |
2967 *
2968 * @see https://developer.mozilla.org/docs/Web/CSS/mask-mode
2969 */
2970 maskMode?: Property.MaskMode | undefined;
2971 /**
2972 * The **`mask-origin`** CSS property sets the origin of a mask.
2973 *
2974 * **Syntax**: `<geometry-box>#`
2975 *
2976 * **Initial value**: `border-box`
2977 *
2978 * | Chrome | Firefox | Safari | Edge | IE |
2979 * | :-----: | :-----: | :------: | :--: | :-: |
2980 * | **120** | **53** | **15.4** | n/a | No |
2981 * | 1 _-x-_ | | 4 _-x-_ | | |
2982 *
2983 * @see https://developer.mozilla.org/docs/Web/CSS/mask-origin
2984 */
2985 maskOrigin?: Property.MaskOrigin | undefined;
2986 /**
2987 * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image.
2988 *
2989 * **Syntax**: `<position>#`
2990 *
2991 * **Initial value**: `center`
2992 *
2993 * | Chrome | Firefox | Safari | Edge | IE |
2994 * | :-----: | :-----: | :-------: | :---: | :-: |
2995 * | **120** | **53** | **15.4** | 18-79 | No |
2996 * | 1 _-x-_ | | 3.1 _-x-_ | | |
2997 *
2998 * @see https://developer.mozilla.org/docs/Web/CSS/mask-position
2999 */
3000 maskPosition?: Property.MaskPosition<TLength> | undefined;
3001 /**
3002 * 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.
3003 *
3004 * **Syntax**: `<repeat-style>#`
3005 *
3006 * **Initial value**: `repeat`
3007 *
3008 * | Chrome | Firefox | Safari | Edge | IE |
3009 * | :-----: | :-----: | :-------: | :---: | :-: |
3010 * | **120** | **53** | **15.4** | 18-79 | No |
3011 * | 1 _-x-_ | | 3.1 _-x-_ | | |
3012 *
3013 * @see https://developer.mozilla.org/docs/Web/CSS/mask-repeat
3014 */
3015 maskRepeat?: Property.MaskRepeat | undefined;
3016 /**
3017 * 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.
3018 *
3019 * **Syntax**: `<bg-size>#`
3020 *
3021 * **Initial value**: `auto`
3022 *
3023 * | Chrome | Firefox | Safari | Edge | IE |
3024 * | :-----: | :-----: | :------: | :---: | :-: |
3025 * | **120** | **53** | **15.4** | 18-79 | No |
3026 * | 4 _-x-_ | | 4 _-x-_ | | |
3027 *
3028 * @see https://developer.mozilla.org/docs/Web/CSS/mask-size
3029 */
3030 maskSize?: Property.MaskSize<TLength> | undefined;
3031 /**
3032 * 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.
3033 *
3034 * **Syntax**: `luminance | alpha`
3035 *
3036 * **Initial value**: `luminance`
3037 *
3038 * | Chrome | Firefox | Safari | Edge | IE |
3039 * | :----: | :-----: | :----: | :--: | :-: |
3040 * | **24** | **35** | **7** | n/a | No |
3041 *
3042 * @see https://developer.mozilla.org/docs/Web/CSS/mask-type
3043 */
3044 maskType?: Property.MaskType | undefined;
3045 /**
3046 * This feature is not Baseline because it does not work in some of the most widely-used browsers.
3047 *
3048 * **Syntax**: `[ pack | next ] || [ definite-first | ordered ]`
3049 *
3050 * **Initial value**: `pack`
3051 *
3052 * | Chrome | Firefox | Safari | Edge | IE |
3053 * | :----: | :-----: | :---------: | :--: | :-: |
3054 * | No | No | **preview** | n/a | No |
3055 *
3056 * @see https://developer.mozilla.org/docs/Web/CSS/masonry-auto-flow
3057 */
3058 masonryAutoFlow?: Property.MasonryAutoFlow | undefined;
3059 /**
3060 * The **`math-depth`** property describes a notion of _depth_ for each element of a mathematical formula, with respect to the top-level container of that formula. Concretely, this is used to determine the computed value of the font-size property when its specified value is `math`.
3061 *
3062 * **Syntax**: `auto-add | add(<integer>) | <integer>`
3063 *
3064 * **Initial value**: `0`
3065 *
3066 * | Chrome | Firefox | Safari | Edge | IE |
3067 * | :-----: | :-----: | :----: | :--: | :-: |
3068 * | **109** | **117** | No | n/a | No |
3069 *
3070 * @see https://developer.mozilla.org/docs/Web/CSS/math-depth
3071 */
3072 mathDepth?: Property.MathDepth | undefined;
3073 /**
3074 * The `math-shift` property indicates whether superscripts inside MathML formulas should be raised by a normal or compact shift.
3075 *
3076 * **Syntax**: `normal | compact`
3077 *
3078 * **Initial value**: `normal`
3079 *
3080 * | Chrome | Firefox | Safari | Edge | IE |
3081 * | :-----: | :-----: | :----: | :--: | :-: |
3082 * | **109** | No | No | n/a | No |
3083 *
3084 * @see https://developer.mozilla.org/docs/Web/CSS/math-shift
3085 */
3086 mathShift?: Property.MathShift | undefined;
3087 /**
3088 * The `math-style` property indicates whether MathML equations should render with normal or compact height.
3089 *
3090 * **Syntax**: `normal | compact`
3091 *
3092 * **Initial value**: `normal`
3093 *
3094 * | Chrome | Firefox | Safari | Edge | IE |
3095 * | :-----: | :-----: | :------: | :--: | :-: |
3096 * | **109** | **117** | **14.1** | n/a | No |
3097 *
3098 * @see https://developer.mozilla.org/docs/Web/CSS/math-style
3099 */
3100 mathStyle?: Property.MathStyle | undefined;
3101 /**
3102 * 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`.
3103 *
3104 * **Syntax**: `<'max-width'>`
3105 *
3106 * **Initial value**: `none`
3107 *
3108 * | Chrome | Firefox | Safari | Edge | IE |
3109 * | :----: | :-----: | :------: | :--: | :-: |
3110 * | **57** | **41** | **12.1** | n/a | No |
3111 *
3112 * @see https://developer.mozilla.org/docs/Web/CSS/max-block-size
3113 */
3114 maxBlockSize?: Property.MaxBlockSize<TLength> | undefined;
3115 /**
3116 * 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`.
3117 *
3118 * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
3119 *
3120 * **Initial value**: `none`
3121 *
3122 * | Chrome | Firefox | Safari | Edge | IE |
3123 * | :----: | :-----: | :-----: | :----: | :---: |
3124 * | **18** | **1** | **1.3** | **12** | **7** |
3125 *
3126 * @see https://developer.mozilla.org/docs/Web/CSS/max-height
3127 */
3128 maxHeight?: Property.MaxHeight<TLength> | undefined;
3129 /**
3130 * 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`.
3131 *
3132 * **Syntax**: `<'max-width'>`
3133 *
3134 * **Initial value**: `none`
3135 *
3136 * | Chrome | Firefox | Safari | Edge | IE |
3137 * | :----: | :-----: | :--------: | :--: | :-: |
3138 * | **57** | **41** | **12.1** | n/a | No |
3139 * | | | 10.1 _-x-_ | | |
3140 *
3141 * @see https://developer.mozilla.org/docs/Web/CSS/max-inline-size
3142 */
3143 maxInlineSize?: Property.MaxInlineSize<TLength> | undefined;
3144 /**
3145 * **Syntax**: `none | <integer>`
3146 *
3147 * **Initial value**: `none`
3148 */
3149 maxLines?: Property.MaxLines | undefined;
3150 /**
3151 * 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`.
3152 *
3153 * **Syntax**: `none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
3154 *
3155 * **Initial value**: `none`
3156 *
3157 * | Chrome | Firefox | Safari | Edge | IE |
3158 * | :----: | :-----: | :----: | :----: | :---: |
3159 * | **1** | **1** | **1** | **12** | **7** |
3160 *
3161 * @see https://developer.mozilla.org/docs/Web/CSS/max-width
3162 */
3163 maxWidth?: Property.MaxWidth<TLength> | undefined;
3164 /**
3165 * 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`.
3166 *
3167 * **Syntax**: `<'min-width'>`
3168 *
3169 * **Initial value**: `0`
3170 *
3171 * | Chrome | Firefox | Safari | Edge | IE |
3172 * | :----: | :-----: | :------: | :--: | :-: |
3173 * | **57** | **41** | **12.1** | n/a | No |
3174 *
3175 * @see https://developer.mozilla.org/docs/Web/CSS/min-block-size
3176 */
3177 minBlockSize?: Property.MinBlockSize<TLength> | undefined;
3178 /**
3179 * 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`.
3180 *
3181 * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
3182 *
3183 * **Initial value**: `auto`
3184 *
3185 * | Chrome | Firefox | Safari | Edge | IE |
3186 * | :----: | :-----: | :-----: | :----: | :---: |
3187 * | **1** | **3** | **1.3** | **12** | **7** |
3188 *
3189 * @see https://developer.mozilla.org/docs/Web/CSS/min-height
3190 */
3191 minHeight?: Property.MinHeight<TLength> | undefined;
3192 /**
3193 * 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`.
3194 *
3195 * **Syntax**: `<'min-width'>`
3196 *
3197 * **Initial value**: `0`
3198 *
3199 * | Chrome | Firefox | Safari | Edge | IE |
3200 * | :----: | :-----: | :------: | :--: | :-: |
3201 * | **57** | **41** | **12.1** | n/a | No |
3202 *
3203 * @see https://developer.mozilla.org/docs/Web/CSS/min-inline-size
3204 */
3205 minInlineSize?: Property.MinInlineSize<TLength> | undefined;
3206 /**
3207 * 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`.
3208 *
3209 * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
3210 *
3211 * **Initial value**: `auto`
3212 *
3213 * | Chrome | Firefox | Safari | Edge | IE |
3214 * | :----: | :-----: | :----: | :----: | :---: |
3215 * | **1** | **1** | **1** | **12** | **7** |
3216 *
3217 * @see https://developer.mozilla.org/docs/Web/CSS/min-width
3218 */
3219 minWidth?: Property.MinWidth<TLength> | undefined;
3220 /**
3221 * 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.
3222 *
3223 * **Syntax**: `<blend-mode> | plus-lighter`
3224 *
3225 * **Initial value**: `normal`
3226 *
3227 * | Chrome | Firefox | Safari | Edge | IE |
3228 * | :----: | :-----: | :----: | :--: | :-: |
3229 * | **41** | **32** | **8** | n/a | No |
3230 *
3231 * @see https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode
3232 */
3233 mixBlendMode?: Property.MixBlendMode | undefined;
3234 /**
3235 * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.
3236 *
3237 * **Syntax**: `<length-percentage>`
3238 *
3239 * **Initial value**: `0`
3240 *
3241 * | Chrome | Firefox | Safari | Edge | IE |
3242 * | :--------------------: | :-----: | :----: | :--: | :-: |
3243 * | **55** | **72** | **16** | n/a | No |
3244 * | 46 _(motion-distance)_ | | | | |
3245 *
3246 * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance
3247 */
3248 motionDistance?: Property.OffsetDistance<TLength> | undefined;
3249 /**
3250 * 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.
3251 *
3252 * **Syntax**: `none | <offset-path> || <coord-box>`
3253 *
3254 * **Initial value**: `none`
3255 *
3256 * | Chrome | Firefox | Safari | Edge | IE |
3257 * | :----------------: | :-----: | :------: | :--: | :-: |
3258 * | **55** | **72** | **15.4** | n/a | No |
3259 * | 46 _(motion-path)_ | | | | |
3260 *
3261 * @see https://developer.mozilla.org/docs/Web/CSS/offset-path
3262 */
3263 motionPath?: Property.OffsetPath | undefined;
3264 /**
3265 * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.
3266 *
3267 * **Syntax**: `[ auto | reverse ] || <angle>`
3268 *
3269 * **Initial value**: `auto`
3270 *
3271 * | Chrome | Firefox | Safari | Edge | IE |
3272 * | :--------------------: | :-----: | :----: | :--: | :-: |
3273 * | **56** | **72** | **16** | n/a | No |
3274 * | 46 _(motion-rotation)_ | | | | |
3275 *
3276 * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
3277 */
3278 motionRotation?: Property.OffsetRotate | undefined;
3279 /**
3280 * 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.
3281 *
3282 * **Syntax**: `fill | contain | cover | none | scale-down`
3283 *
3284 * **Initial value**: `fill`
3285 *
3286 * | Chrome | Firefox | Safari | Edge | IE |
3287 * | :----: | :-----: | :----: | :----: | :-: |
3288 * | **32** | **36** | **10** | **79** | No |
3289 *
3290 * @see https://developer.mozilla.org/docs/Web/CSS/object-fit
3291 */
3292 objectFit?: Property.ObjectFit | undefined;
3293 /**
3294 * 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.
3295 *
3296 * **Syntax**: `<position>`
3297 *
3298 * **Initial value**: `50% 50%`
3299 *
3300 * | Chrome | Firefox | Safari | Edge | IE |
3301 * | :----: | :-----: | :----: | :----: | :-: |
3302 * | **32** | **36** | **10** | **79** | No |
3303 *
3304 * @see https://developer.mozilla.org/docs/Web/CSS/object-position
3305 */
3306 objectPosition?: Property.ObjectPosition<TLength> | undefined;
3307 /**
3308 * **Syntax**: `auto | <position>`
3309 *
3310 * **Initial value**: `auto`
3311 *
3312 * | Chrome | Firefox | Safari | Edge | IE |
3313 * | :-----: | :-----: | :----: | :--: | :-: |
3314 * | **116** | **72** | **16** | n/a | No |
3315 *
3316 * @see https://developer.mozilla.org/docs/Web/CSS/offset-anchor
3317 */
3318 offsetAnchor?: Property.OffsetAnchor<TLength> | undefined;
3319 /**
3320 * The **`offset-distance`** CSS property specifies a position along an `offset-path` for an element to be placed.
3321 *
3322 * **Syntax**: `<length-percentage>`
3323 *
3324 * **Initial value**: `0`
3325 *
3326 * | Chrome | Firefox | Safari | Edge | IE |
3327 * | :--------------------: | :-----: | :----: | :--: | :-: |
3328 * | **55** | **72** | **16** | n/a | No |
3329 * | 46 _(motion-distance)_ | | | | |
3330 *
3331 * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance
3332 */
3333 offsetDistance?: Property.OffsetDistance<TLength> | undefined;
3334 /**
3335 * 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.
3336 *
3337 * **Syntax**: `none | <offset-path> || <coord-box>`
3338 *
3339 * **Initial value**: `none`
3340 *
3341 * | Chrome | Firefox | Safari | Edge | IE |
3342 * | :----------------: | :-----: | :------: | :--: | :-: |
3343 * | **55** | **72** | **15.4** | n/a | No |
3344 * | 46 _(motion-path)_ | | | | |
3345 *
3346 * @see https://developer.mozilla.org/docs/Web/CSS/offset-path
3347 */
3348 offsetPath?: Property.OffsetPath | undefined;
3349 /**
3350 * **Syntax**: `normal | auto | <position>`
3351 *
3352 * **Initial value**: `auto`
3353 *
3354 * | Chrome | Firefox | Safari | Edge | IE |
3355 * | :-----: | :-----: | :----: | :--: | :-: |
3356 * | **116** | n/a | **16** | n/a | No |
3357 *
3358 * @see https://developer.mozilla.org/docs/Web/CSS/offset-position
3359 */
3360 offsetPosition?: Property.OffsetPosition<TLength> | undefined;
3361 /**
3362 * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.
3363 *
3364 * **Syntax**: `[ auto | reverse ] || <angle>`
3365 *
3366 * **Initial value**: `auto`
3367 *
3368 * | Chrome | Firefox | Safari | Edge | IE |
3369 * | :--------------------: | :-----: | :----: | :--: | :-: |
3370 * | **56** | **72** | **16** | n/a | No |
3371 * | 46 _(motion-rotation)_ | | | | |
3372 *
3373 * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
3374 */
3375 offsetRotate?: Property.OffsetRotate | undefined;
3376 /**
3377 * The **`offset-rotate`** CSS property defines the orientation/direction of the element as it is positioned along the `offset-path`.
3378 *
3379 * **Syntax**: `[ auto | reverse ] || <angle>`
3380 *
3381 * **Initial value**: `auto`
3382 *
3383 * | Chrome | Firefox | Safari | Edge | IE |
3384 * | :--------------------: | :-----: | :----: | :--: | :-: |
3385 * | **56** | **72** | **16** | n/a | No |
3386 * | 46 _(motion-rotation)_ | | | | |
3387 *
3388 * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
3389 */
3390 offsetRotation?: Property.OffsetRotate | undefined;
3391 /**
3392 * 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.
3393 *
3394 * **Syntax**: `<alpha-value>`
3395 *
3396 * **Initial value**: `1`
3397 *
3398 * | Chrome | Firefox | Safari | Edge | IE |
3399 * | :----: | :-----: | :----: | :----: | :---: |
3400 * | **1** | **1** | **2** | **12** | **9** |
3401 *
3402 * @see https://developer.mozilla.org/docs/Web/CSS/opacity
3403 */
3404 opacity?: Property.Opacity | undefined;
3405 /**
3406 * 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.
3407 *
3408 * **Syntax**: `<integer>`
3409 *
3410 * **Initial value**: `0`
3411 *
3412 * | Chrome | Firefox | Safari | Edge | IE |
3413 * | :------: | :-----: | :-----: | :----: | :------: |
3414 * | **29** | **20** | **9** | **12** | **11** |
3415 * | 21 _-x-_ | | 7 _-x-_ | | 10 _-x-_ |
3416 *
3417 * @see https://developer.mozilla.org/docs/Web/CSS/order
3418 */
3419 order?: Property.Order | undefined;
3420 /**
3421 * 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.
3422 *
3423 * **Syntax**: `<integer>`
3424 *
3425 * **Initial value**: `2`
3426 *
3427 * | Chrome | Firefox | Safari | Edge | IE |
3428 * | :----: | :-----: | :-----: | :----: | :---: |
3429 * | **25** | No | **1.3** | **12** | **8** |
3430 *
3431 * @see https://developer.mozilla.org/docs/Web/CSS/orphans
3432 */
3433 orphans?: Property.Orphans | undefined;
3434 /**
3435 * The **`outline-color`** CSS property sets the color of an element's outline.
3436 *
3437 * **Syntax**: `<color> | invert`
3438 *
3439 * **Initial value**: `invert`, for browsers supporting it, `currentColor` for the other
3440 *
3441 * | Chrome | Firefox | Safari | Edge | IE |
3442 * | :----: | :-----: | :-----: | :----: | :---: |
3443 * | **1** | **1.5** | **1.2** | **12** | **8** |
3444 *
3445 * @see https://developer.mozilla.org/docs/Web/CSS/outline-color
3446 */
3447 outlineColor?: Property.OutlineColor | undefined;
3448 /**
3449 * The **`outline-offset`** CSS property sets the amount of space between an outline and the edge or border of an element.
3450 *
3451 * **Syntax**: `<length>`
3452 *
3453 * **Initial value**: `0`
3454 *
3455 * | Chrome | Firefox | Safari | Edge | IE |
3456 * | :----: | :-----: | :-----: | :----: | :-: |
3457 * | **1** | **1.5** | **1.2** | **15** | No |
3458 *
3459 * @see https://developer.mozilla.org/docs/Web/CSS/outline-offset
3460 */
3461 outlineOffset?: Property.OutlineOffset<TLength> | undefined;
3462 /**
3463 * 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`.
3464 *
3465 * **Syntax**: `auto | <'border-style'>`
3466 *
3467 * **Initial value**: `none`
3468 *
3469 * | Chrome | Firefox | Safari | Edge | IE |
3470 * | :----: | :-----: | :-----: | :----: | :---: |
3471 * | **1** | **1.5** | **1.2** | **12** | **8** |
3472 *
3473 * @see https://developer.mozilla.org/docs/Web/CSS/outline-style
3474 */
3475 outlineStyle?: Property.OutlineStyle | undefined;
3476 /**
3477 * 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`.
3478 *
3479 * **Syntax**: `<line-width>`
3480 *
3481 * **Initial value**: `medium`
3482 *
3483 * | Chrome | Firefox | Safari | Edge | IE |
3484 * | :----: | :-----: | :-----: | :----: | :---: |
3485 * | **1** | **1.5** | **1.2** | **12** | **8** |
3486 *
3487 * @see https://developer.mozilla.org/docs/Web/CSS/outline-width
3488 */
3489 outlineWidth?: Property.OutlineWidth<TLength> | undefined;
3490 /**
3491 * **Syntax**: `auto | none`
3492 *
3493 * **Initial value**: `auto`
3494 *
3495 * | Chrome | Firefox | Safari | Edge | IE |
3496 * | :----: | :-----: | :----: | :--: | :-: |
3497 * | **56** | **66** | No | n/a | No |
3498 *
3499 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-anchor
3500 */
3501 overflowAnchor?: Property.OverflowAnchor | undefined;
3502 /**
3503 * **Syntax**: `visible | hidden | clip | scroll | auto`
3504 *
3505 * **Initial value**: `auto`
3506 *
3507 * | Chrome | Firefox | Safari | Edge | IE |
3508 * | :----: | :-----: | :----: | :--: | :-: |
3509 * | No | **69** | No | n/a | No |
3510 *
3511 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-block
3512 */
3513 overflowBlock?: Property.OverflowBlock | undefined;
3514 /**
3515 * 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.
3516 *
3517 * **Syntax**: `padding-box | content-box`
3518 *
3519 * **Initial value**: `padding-box`
3520 */
3521 overflowClipBox?: Property.OverflowClipBox | undefined;
3522 /**
3523 * **Syntax**: `<visual-box> || <length [0,∞]>`
3524 *
3525 * **Initial value**: `0px`
3526 *
3527 * | Chrome | Firefox | Safari | Edge | IE |
3528 * | :----: | :-----: | :----: | :--: | :-: |
3529 * | **90** | **102** | No | n/a | No |
3530 *
3531 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-clip-margin
3532 */
3533 overflowClipMargin?: Property.OverflowClipMargin<TLength> | undefined;
3534 /**
3535 * **Syntax**: `visible | hidden | clip | scroll | auto`
3536 *
3537 * **Initial value**: `auto`
3538 *
3539 * | Chrome | Firefox | Safari | Edge | IE |
3540 * | :----: | :-----: | :----: | :--: | :-: |
3541 * | No | **69** | No | n/a | No |
3542 *
3543 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-inline
3544 */
3545 overflowInline?: Property.OverflowInline | undefined;
3546 /**
3547 * 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.
3548 *
3549 * **Syntax**: `normal | break-word | anywhere`
3550 *
3551 * **Initial value**: `normal`
3552 *
3553 * | Chrome | Firefox | Safari | Edge | IE |
3554 * | :-------------: | :---------------: | :-------------: | :--------------: | :-------------------: |
3555 * | **23** | **49** | **7** | **18** | **5.5** _(word-wrap)_ |
3556 * | 1 _(word-wrap)_ | 3.5 _(word-wrap)_ | 1 _(word-wrap)_ | 12 _(word-wrap)_ | |
3557 *
3558 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-wrap
3559 */
3560 overflowWrap?: Property.OverflowWrap | undefined;
3561 /**
3562 * 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.
3563 *
3564 * **Syntax**: `visible | hidden | clip | scroll | auto`
3565 *
3566 * **Initial value**: `visible`
3567 *
3568 * | Chrome | Firefox | Safari | Edge | IE |
3569 * | :----: | :-----: | :----: | :----: | :---: |
3570 * | **1** | **3.5** | **3** | **12** | **5** |
3571 *
3572 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-x
3573 */
3574 overflowX?: Property.OverflowX | undefined;
3575 /**
3576 * 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.
3577 *
3578 * **Syntax**: `visible | hidden | clip | scroll | auto`
3579 *
3580 * **Initial value**: `visible`
3581 *
3582 * | Chrome | Firefox | Safari | Edge | IE |
3583 * | :----: | :-----: | :----: | :----: | :---: |
3584 * | **1** | **3.5** | **3** | **12** | **5** |
3585 *
3586 * @see https://developer.mozilla.org/docs/Web/CSS/overflow-y
3587 */
3588 overflowY?: Property.OverflowY | undefined;
3589 /**
3590 * The **`overlay`** CSS property specifies whether an element appearing in the top layer (for example, a shown popover or modal `<dialog>` element) is actually rendered in the top layer. This property is only relevant within a list of `transition-property` values, and only if `allow-discrete` is set as the `transition-behavior`.
3591 *
3592 * **Syntax**: `none | auto`
3593 *
3594 * **Initial value**: `none`
3595 *
3596 * | Chrome | Firefox | Safari | Edge | IE |
3597 * | :-----: | :-----: | :----: | :--: | :-: |
3598 * | **117** | No | No | n/a | No |
3599 *
3600 * @see https://developer.mozilla.org/docs/Web/CSS/overlay
3601 */
3602 overlay?: Property.Overlay | undefined;
3603 /**
3604 * The **`overscroll-behavior-block`** CSS property sets the browser's behavior when the block direction boundary of a scrolling area is reached.
3605 *
3606 * **Syntax**: `contain | none | auto`
3607 *
3608 * **Initial value**: `auto`
3609 *
3610 * | Chrome | Firefox | Safari | Edge | IE |
3611 * | :----: | :-----: | :----: | :--: | :-: |
3612 * | **77** | **73** | **16** | n/a | No |
3613 *
3614 * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-block
3615 */
3616 overscrollBehaviorBlock?: Property.OverscrollBehaviorBlock | undefined;
3617 /**
3618 * The **`overscroll-behavior-inline`** CSS property sets the browser's behavior when the inline direction boundary of a scrolling area is reached.
3619 *
3620 * **Syntax**: `contain | none | auto`
3621 *
3622 * **Initial value**: `auto`
3623 *
3624 * | Chrome | Firefox | Safari | Edge | IE |
3625 * | :----: | :-----: | :----: | :--: | :-: |
3626 * | **77** | **73** | **16** | n/a | No |
3627 *
3628 * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-inline
3629 */
3630 overscrollBehaviorInline?: Property.OverscrollBehaviorInline | undefined;
3631 /**
3632 * The **`overscroll-behavior-x`** CSS property sets the browser's behavior when the horizontal boundary of a scrolling area is reached.
3633 *
3634 * **Syntax**: `contain | none | auto`
3635 *
3636 * **Initial value**: `auto`
3637 *
3638 * | Chrome | Firefox | Safari | Edge | IE |
3639 * | :----: | :-----: | :----: | :----: | :-: |
3640 * | **63** | **59** | **16** | **18** | No |
3641 *
3642 * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-x
3643 */
3644 overscrollBehaviorX?: Property.OverscrollBehaviorX | undefined;
3645 /**
3646 * The **`overscroll-behavior-y`** CSS property sets the browser's behavior when the vertical boundary of a scrolling area is reached.
3647 *
3648 * **Syntax**: `contain | none | auto`
3649 *
3650 * **Initial value**: `auto`
3651 *
3652 * | Chrome | Firefox | Safari | Edge | IE |
3653 * | :----: | :-----: | :----: | :----: | :-: |
3654 * | **63** | **59** | **16** | **18** | No |
3655 *
3656 * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-y
3657 */
3658 overscrollBehaviorY?: Property.OverscrollBehaviorY | undefined;
3659 /**
3660 * 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.
3661 *
3662 * **Syntax**: `<'padding-left'>`
3663 *
3664 * **Initial value**: `0`
3665 *
3666 * | Chrome | Firefox | Safari | Edge | IE |
3667 * | :----: | :-----: | :------: | :--: | :-: |
3668 * | **69** | **41** | **12.1** | n/a | No |
3669 *
3670 * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-end
3671 */
3672 paddingBlockEnd?: Property.PaddingBlockEnd<TLength> | undefined;
3673 /**
3674 * 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.
3675 *
3676 * **Syntax**: `<'padding-left'>`
3677 *
3678 * **Initial value**: `0`
3679 *
3680 * | Chrome | Firefox | Safari | Edge | IE |
3681 * | :----: | :-----: | :------: | :--: | :-: |
3682 * | **69** | **41** | **12.1** | n/a | No |
3683 *
3684 * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-start
3685 */
3686 paddingBlockStart?: Property.PaddingBlockStart<TLength> | undefined;
3687 /**
3688 * The **`padding-bottom`** CSS property sets the height of the padding area on the bottom of an element.
3689 *
3690 * **Syntax**: `<length> | <percentage>`
3691 *
3692 * **Initial value**: `0`
3693 *
3694 * | Chrome | Firefox | Safari | Edge | IE |
3695 * | :----: | :-----: | :----: | :----: | :---: |
3696 * | **1** | **1** | **1** | **12** | **4** |
3697 *
3698 * @see https://developer.mozilla.org/docs/Web/CSS/padding-bottom
3699 */
3700 paddingBottom?: Property.PaddingBottom<TLength> | undefined;
3701 /**
3702 * 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.
3703 *
3704 * **Syntax**: `<'padding-left'>`
3705 *
3706 * **Initial value**: `0`
3707 *
3708 * | Chrome | Firefox | Safari | Edge | IE |
3709 * | :-----------------------: | :--------------------: | :-----------------------: | :--: | :-: |
3710 * | **69** | **41** | **12.1** | n/a | No |
3711 * | 2 _(-webkit-padding-end)_ | 3 _(-moz-padding-end)_ | 3 _(-webkit-padding-end)_ | | |
3712 *
3713 * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
3714 */
3715 paddingInlineEnd?: Property.PaddingInlineEnd<TLength> | undefined;
3716 /**
3717 * 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.
3718 *
3719 * **Syntax**: `<'padding-left'>`
3720 *
3721 * **Initial value**: `0`
3722 *
3723 * | Chrome | Firefox | Safari | Edge | IE |
3724 * | :-------------------------: | :----------------------: | :-------------------------: | :--: | :-: |
3725 * | **69** | **41** | **12.1** | n/a | No |
3726 * | 2 _(-webkit-padding-start)_ | 3 _(-moz-padding-start)_ | 3 _(-webkit-padding-start)_ | | |
3727 *
3728 * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
3729 */
3730 paddingInlineStart?: Property.PaddingInlineStart<TLength> | undefined;
3731 /**
3732 * The **`padding-left`** CSS property sets the width of the padding area to the left of an element.
3733 *
3734 * **Syntax**: `<length> | <percentage>`
3735 *
3736 * **Initial value**: `0`
3737 *
3738 * | Chrome | Firefox | Safari | Edge | IE |
3739 * | :----: | :-----: | :----: | :----: | :---: |
3740 * | **1** | **1** | **1** | **12** | **4** |
3741 *
3742 * @see https://developer.mozilla.org/docs/Web/CSS/padding-left
3743 */
3744 paddingLeft?: Property.PaddingLeft<TLength> | undefined;
3745 /**
3746 * The **`padding-right`** CSS property sets the width of the padding area on the right of an element.
3747 *
3748 * **Syntax**: `<length> | <percentage>`
3749 *
3750 * **Initial value**: `0`
3751 *
3752 * | Chrome | Firefox | Safari | Edge | IE |
3753 * | :----: | :-----: | :----: | :----: | :---: |
3754 * | **1** | **1** | **1** | **12** | **4** |
3755 *
3756 * @see https://developer.mozilla.org/docs/Web/CSS/padding-right
3757 */
3758 paddingRight?: Property.PaddingRight<TLength> | undefined;
3759 /**
3760 * The **`padding-top`** CSS property sets the height of the padding area on the top of an element.
3761 *
3762 * **Syntax**: `<length> | <percentage>`
3763 *
3764 * **Initial value**: `0`
3765 *
3766 * | Chrome | Firefox | Safari | Edge | IE |
3767 * | :----: | :-----: | :----: | :----: | :---: |
3768 * | **1** | **1** | **1** | **12** | **4** |
3769 *
3770 * @see https://developer.mozilla.org/docs/Web/CSS/padding-top
3771 */
3772 paddingTop?: Property.PaddingTop<TLength> | undefined;
3773 /**
3774 * The **`page`** CSS property is used to specify the named page, a specific type of page defined by the `@page` at-rule.
3775 *
3776 * **Syntax**: `auto | <custom-ident>`
3777 *
3778 * **Initial value**: `auto`
3779 *
3780 * | Chrome | Firefox | Safari | Edge | IE |
3781 * | :----: | :-----: | :-------: | :--: | :-: |
3782 * | **85** | **110** | **≤13.1** | n/a | No |
3783 *
3784 * @see https://developer.mozilla.org/docs/Web/CSS/page
3785 */
3786 page?: Property.Page | undefined;
3787 /**
3788 * The **`page-break-after`** CSS property adjusts page breaks _after_ the current element.
3789 *
3790 * **Syntax**: `auto | always | avoid | left | right | recto | verso`
3791 *
3792 * **Initial value**: `auto`
3793 *
3794 * | Chrome | Firefox | Safari | Edge | IE |
3795 * | :----: | :-----: | :-----: | :----: | :---: |
3796 * | **1** | **1** | **1.2** | **12** | **4** |
3797 *
3798 * @see https://developer.mozilla.org/docs/Web/CSS/page-break-after
3799 */
3800 pageBreakAfter?: Property.PageBreakAfter | undefined;
3801 /**
3802 * The **`page-break-before`** CSS property adjusts page breaks _before_ the current element.
3803 *
3804 * **Syntax**: `auto | always | avoid | left | right | recto | verso`
3805 *
3806 * **Initial value**: `auto`
3807 *
3808 * | Chrome | Firefox | Safari | Edge | IE |
3809 * | :----: | :-----: | :-----: | :----: | :---: |
3810 * | **1** | **1** | **1.2** | **12** | **4** |
3811 *
3812 * @see https://developer.mozilla.org/docs/Web/CSS/page-break-before
3813 */
3814 pageBreakBefore?: Property.PageBreakBefore | undefined;
3815 /**
3816 * The **`page-break-inside`** CSS property adjusts page breaks _inside_ the current element.
3817 *
3818 * **Syntax**: `auto | avoid`
3819 *
3820 * **Initial value**: `auto`
3821 *
3822 * | Chrome | Firefox | Safari | Edge | IE |
3823 * | :----: | :-----: | :-----: | :----: | :---: |
3824 * | **1** | **19** | **1.3** | **12** | **8** |
3825 *
3826 * @see https://developer.mozilla.org/docs/Web/CSS/page-break-inside
3827 */
3828 pageBreakInside?: Property.PageBreakInside | undefined;
3829 /**
3830 * 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.
3831 *
3832 * **Syntax**: `normal | [ fill || stroke || markers ]`
3833 *
3834 * **Initial value**: `normal`
3835 *
3836 * | Chrome | Firefox | Safari | Edge | IE |
3837 * | :----: | :-----: | :----: | :----: | :-: |
3838 * | **35** | **60** | **8** | **17** | No |
3839 *
3840 * @see https://developer.mozilla.org/docs/Web/CSS/paint-order
3841 */
3842 paintOrder?: Property.PaintOrder | undefined;
3843 /**
3844 * 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.
3845 *
3846 * **Syntax**: `none | <length>`
3847 *
3848 * **Initial value**: `none`
3849 *
3850 * | Chrome | Firefox | Safari | Edge | IE |
3851 * | :------: | :-----: | :-----: | :----: | :----: |
3852 * | **36** | **16** | **9** | **12** | **10** |
3853 * | 12 _-x-_ | | 4 _-x-_ | | |
3854 *
3855 * @see https://developer.mozilla.org/docs/Web/CSS/perspective
3856 */
3857 perspective?: Property.Perspective<TLength> | undefined;
3858 /**
3859 * 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.
3860 *
3861 * **Syntax**: `<position>`
3862 *
3863 * **Initial value**: `50% 50%`
3864 *
3865 * | Chrome | Firefox | Safari | Edge | IE |
3866 * | :------: | :-----: | :-----: | :----: | :----: |
3867 * | **36** | **16** | **9** | **12** | **10** |
3868 * | 12 _-x-_ | | 4 _-x-_ | | |
3869 *
3870 * @see https://developer.mozilla.org/docs/Web/CSS/perspective-origin
3871 */
3872 perspectiveOrigin?: Property.PerspectiveOrigin<TLength> | undefined;
3873 /**
3874 * The **`pointer-events`** CSS property sets under what circumstances (if any) a particular graphic element can become the target of pointer events.
3875 *
3876 * **Syntax**: `auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit`
3877 *
3878 * **Initial value**: `auto`
3879 *
3880 * | Chrome | Firefox | Safari | Edge | IE |
3881 * | :----: | :-----: | :----: | :----: | :----: |
3882 * | **1** | **1.5** | **4** | **12** | **11** |
3883 *
3884 * @see https://developer.mozilla.org/docs/Web/CSS/pointer-events
3885 */
3886 pointerEvents?: Property.PointerEvents | undefined;
3887 /**
3888 * 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.
3889 *
3890 * **Syntax**: `static | relative | absolute | sticky | fixed`
3891 *
3892 * **Initial value**: `static`
3893 *
3894 * | Chrome | Firefox | Safari | Edge | IE |
3895 * | :----: | :-----: | :----: | :----: | :---: |
3896 * | **1** | **1** | **1** | **12** | **4** |
3897 *
3898 * @see https://developer.mozilla.org/docs/Web/CSS/position
3899 */
3900 position?: Property.Position | undefined;
3901 /**
3902 * The **`print-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.
3903 *
3904 * **Syntax**: `economy | exact`
3905 *
3906 * **Initial value**: `economy`
3907 *
3908 * | Chrome | Firefox | Safari | Edge | IE |
3909 * | :----------: | :-----------------: | :------: | :----------: | :-: |
3910 * | **17** _-x-_ | **97** | **15.4** | **79** _-x-_ | No |
3911 * | | 48 _(color-adjust)_ | 6 _-x-_ | | |
3912 *
3913 * @see https://developer.mozilla.org/docs/Web/CSS/print-color-adjust
3914 */
3915 printColorAdjust?: Property.PrintColorAdjust | undefined;
3916 /**
3917 * 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.
3918 *
3919 * **Syntax**: `none | auto | [ <string> <string> ]+`
3920 *
3921 * **Initial value**: depends on user agent
3922 *
3923 * | Chrome | Firefox | Safari | Edge | IE |
3924 * | :----: | :-----: | :----: | :----: | :---: |
3925 * | **11** | **1.5** | **9** | **12** | **8** |
3926 *
3927 * @see https://developer.mozilla.org/docs/Web/CSS/quotes
3928 */
3929 quotes?: Property.Quotes | undefined;
3930 /**
3931 * The **`resize`** CSS property sets whether an element is resizable, and if so, in which directions.
3932 *
3933 * **Syntax**: `none | both | horizontal | vertical | block | inline`
3934 *
3935 * **Initial value**: `none`
3936 *
3937 * | Chrome | Firefox | Safari | Edge | IE |
3938 * | :----: | :-----: | :----: | :--: | :-: |
3939 * | **1** | **4** | **3** | n/a | No |
3940 *
3941 * @see https://developer.mozilla.org/docs/Web/CSS/resize
3942 */
3943 resize?: Property.Resize | undefined;
3944 /**
3945 * The **`right`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.
3946 *
3947 * **Syntax**: `<length> | <percentage> | auto`
3948 *
3949 * **Initial value**: `auto`
3950 *
3951 * | Chrome | Firefox | Safari | Edge | IE |
3952 * | :----: | :-----: | :----: | :----: | :-----: |
3953 * | **1** | **1** | **1** | **12** | **5.5** |
3954 *
3955 * @see https://developer.mozilla.org/docs/Web/CSS/right
3956 */
3957 right?: Property.Right<TLength> | undefined;
3958 /**
3959 * 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.
3960 *
3961 * **Syntax**: `none | <angle> | [ x | y | z | <number>{3} ] && <angle>`
3962 *
3963 * **Initial value**: `none`
3964 *
3965 * | Chrome | Firefox | Safari | Edge | IE |
3966 * | :-----: | :-----: | :------: | :--: | :-: |
3967 * | **104** | **72** | **14.1** | n/a | No |
3968 *
3969 * @see https://developer.mozilla.org/docs/Web/CSS/rotate
3970 */
3971 rotate?: Property.Rotate | undefined;
3972 /**
3973 * The **`row-gap`** CSS property sets the size of the gap (gutter) between an element's rows.
3974 *
3975 * **Syntax**: `normal | <length-percentage>`
3976 *
3977 * **Initial value**: `normal`
3978 *
3979 * | Chrome | Firefox | Safari | Edge | IE |
3980 * | :----: | :-----: | :------: | :----: | :-: |
3981 * | **47** | **52** | **10.1** | **16** | No |
3982 *
3983 * @see https://developer.mozilla.org/docs/Web/CSS/row-gap
3984 */
3985 rowGap?: Property.RowGap<TLength> | undefined;
3986 /**
3987 * The **`ruby-align`** CSS property defines the distribution of the different ruby elements over the base.
3988 *
3989 * **Syntax**: `start | center | space-between | space-around`
3990 *
3991 * **Initial value**: `space-around`
3992 *
3993 * | Chrome | Firefox | Safari | Edge | IE |
3994 * | :----: | :-----: | :----: | :--: | :-: |
3995 * | No | **38** | No | n/a | No |
3996 *
3997 * @see https://developer.mozilla.org/docs/Web/CSS/ruby-align
3998 */
3999 rubyAlign?: Property.RubyAlign | undefined;
4000 /**
4001 * **Syntax**: `separate | collapse | auto`
4002 *
4003 * **Initial value**: `separate`
4004 */
4005 rubyMerge?: Property.RubyMerge | undefined;
4006 /**
4007 * The **`ruby-position`** CSS property defines the position of a ruby element relatives to its base element. It can be positioned over the element (`over`), under it (`under`), or between the characters on their right side (`inter-character`).
4008 *
4009 * **Syntax**: `[ alternate || [ over | under ] ] | inter-character`
4010 *
4011 * **Initial value**: `alternate`
4012 *
4013 * | Chrome | Firefox | Safari | Edge | IE |
4014 * | :-----: | :-----: | :---------: | :---: | :-: |
4015 * | **84** | **38** | **7** _-x-_ | 12-79 | No |
4016 * | 1 _-x-_ | | | | |
4017 *
4018 * @see https://developer.mozilla.org/docs/Web/CSS/ruby-position
4019 */
4020 rubyPosition?: Property.RubyPosition | undefined;
4021 /**
4022 * 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.
4023 *
4024 * **Syntax**: `none | <number>{1,3}`
4025 *
4026 * **Initial value**: `none`
4027 *
4028 * | Chrome | Firefox | Safari | Edge | IE |
4029 * | :-----: | :-----: | :------: | :--: | :-: |
4030 * | **104** | **72** | **14.1** | n/a | No |
4031 *
4032 * @see https://developer.mozilla.org/docs/Web/CSS/scale
4033 */
4034 scale?: Property.Scale | undefined;
4035 /**
4036 * The **`scroll-behavior`** CSS property sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs.
4037 *
4038 * **Syntax**: `auto | smooth`
4039 *
4040 * **Initial value**: `auto`
4041 *
4042 * | Chrome | Firefox | Safari | Edge | IE |
4043 * | :----: | :-----: | :------: | :--: | :-: |
4044 * | **61** | **36** | **15.4** | n/a | No |
4045 *
4046 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-behavior
4047 */
4048 scrollBehavior?: Property.ScrollBehavior | undefined;
4049 /**
4050 * 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.
4051 *
4052 * **Syntax**: `<length>`
4053 *
4054 * **Initial value**: `0`
4055 *
4056 * | Chrome | Firefox | Safari | Edge | IE |
4057 * | :----: | :-----: | :----: | :--: | :-: |
4058 * | **69** | **68** | **15** | n/a | No |
4059 *
4060 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
4061 */
4062 scrollMarginBlockEnd?: Property.ScrollMarginBlockEnd<TLength> | undefined;
4063 /**
4064 * 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.
4065 *
4066 * **Syntax**: `<length>`
4067 *
4068 * **Initial value**: `0`
4069 *
4070 * | Chrome | Firefox | Safari | Edge | IE |
4071 * | :----: | :-----: | :----: | :--: | :-: |
4072 * | **69** | **68** | **15** | n/a | No |
4073 *
4074 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
4075 */
4076 scrollMarginBlockStart?: Property.ScrollMarginBlockStart<TLength> | undefined;
4077 /**
4078 * 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.
4079 *
4080 * **Syntax**: `<length>`
4081 *
4082 * **Initial value**: `0`
4083 *
4084 * | Chrome | Firefox | Safari | Edge | IE |
4085 * | :----: | :-----: | :------------------------------: | :--: | :-: |
4086 * | **69** | **68** | **14.1** | n/a | No |
4087 * | | | 11 _(scroll-snap-margin-bottom)_ | | |
4088 *
4089 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
4090 */
4091 scrollMarginBottom?: Property.ScrollMarginBottom<TLength> | undefined;
4092 /**
4093 * 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.
4094 *
4095 * **Syntax**: `<length>`
4096 *
4097 * **Initial value**: `0`
4098 *
4099 * | Chrome | Firefox | Safari | Edge | IE |
4100 * | :----: | :-----: | :----: | :--: | :-: |
4101 * | **69** | **68** | **15** | n/a | No |
4102 *
4103 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
4104 */
4105 scrollMarginInlineEnd?: Property.ScrollMarginInlineEnd<TLength> | undefined;
4106 /**
4107 * 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.
4108 *
4109 * **Syntax**: `<length>`
4110 *
4111 * **Initial value**: `0`
4112 *
4113 * | Chrome | Firefox | Safari | Edge | IE |
4114 * | :----: | :-----: | :----: | :--: | :-: |
4115 * | **69** | **68** | **15** | n/a | No |
4116 *
4117 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
4118 */
4119 scrollMarginInlineStart?: Property.ScrollMarginInlineStart<TLength> | undefined;
4120 /**
4121 * 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.
4122 *
4123 * **Syntax**: `<length>`
4124 *
4125 * **Initial value**: `0`
4126 *
4127 * | Chrome | Firefox | Safari | Edge | IE |
4128 * | :----: | :-----: | :----------------------------: | :--: | :-: |
4129 * | **69** | **68** | **14.1** | n/a | No |
4130 * | | | 11 _(scroll-snap-margin-left)_ | | |
4131 *
4132 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
4133 */
4134 scrollMarginLeft?: Property.ScrollMarginLeft<TLength> | undefined;
4135 /**
4136 * 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.
4137 *
4138 * **Syntax**: `<length>`
4139 *
4140 * **Initial value**: `0`
4141 *
4142 * | Chrome | Firefox | Safari | Edge | IE |
4143 * | :----: | :-----: | :-----------------------------: | :--: | :-: |
4144 * | **69** | **68** | **14.1** | n/a | No |
4145 * | | | 11 _(scroll-snap-margin-right)_ | | |
4146 *
4147 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
4148 */
4149 scrollMarginRight?: Property.ScrollMarginRight<TLength> | undefined;
4150 /**
4151 * 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.
4152 *
4153 * **Syntax**: `<length>`
4154 *
4155 * **Initial value**: `0`
4156 *
4157 * | Chrome | Firefox | Safari | Edge | IE |
4158 * | :----: | :-----: | :---------------------------: | :--: | :-: |
4159 * | **69** | **68** | **14.1** | n/a | No |
4160 * | | | 11 _(scroll-snap-margin-top)_ | | |
4161 *
4162 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
4163 */
4164 scrollMarginTop?: Property.ScrollMarginTop<TLength> | undefined;
4165 /**
4166 * 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 to put more breathing room between a targeted element and the edges of the scrollport.
4167 *
4168 * **Syntax**: `auto | <length-percentage>`
4169 *
4170 * **Initial value**: `auto`
4171 *
4172 * | Chrome | Firefox | Safari | Edge | IE |
4173 * | :----: | :-----: | :----: | :--: | :-: |
4174 * | **69** | **68** | **15** | n/a | No |
4175 *
4176 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end
4177 */
4178 scrollPaddingBlockEnd?: Property.ScrollPaddingBlockEnd<TLength> | undefined;
4179 /**
4180 * 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 to put more breathing room between a targeted element and the edges of the scrollport.
4181 *
4182 * **Syntax**: `auto | <length-percentage>`
4183 *
4184 * **Initial value**: `auto`
4185 *
4186 * | Chrome | Firefox | Safari | Edge | IE |
4187 * | :----: | :-----: | :----: | :--: | :-: |
4188 * | **69** | **68** | **15** | n/a | No |
4189 *
4190 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start
4191 */
4192 scrollPaddingBlockStart?: Property.ScrollPaddingBlockStart<TLength> | undefined;
4193 /**
4194 * 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 to put more breathing room between a targeted element and the edges of the scrollport.
4195 *
4196 * **Syntax**: `auto | <length-percentage>`
4197 *
4198 * **Initial value**: `auto`
4199 *
4200 * | Chrome | Firefox | Safari | Edge | IE |
4201 * | :----: | :-----: | :------: | :--: | :-: |
4202 * | **69** | **68** | **14.1** | n/a | No |
4203 *
4204 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom
4205 */
4206 scrollPaddingBottom?: Property.ScrollPaddingBottom<TLength> | undefined;
4207 /**
4208 * 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 to put more breathing room between a targeted element and the edges of the scrollport.
4209 *
4210 * **Syntax**: `auto | <length-percentage>`
4211 *
4212 * **Initial value**: `auto`
4213 *
4214 * | Chrome | Firefox | Safari | Edge | IE |
4215 * | :----: | :-----: | :----: | :--: | :-: |
4216 * | **69** | **68** | **15** | n/a | No |
4217 *
4218 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end
4219 */
4220 scrollPaddingInlineEnd?: Property.ScrollPaddingInlineEnd<TLength> | undefined;
4221 /**
4222 * 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 to put more breathing room between a targeted element and the edges of the scrollport.
4223 *
4224 * **Syntax**: `auto | <length-percentage>`
4225 *
4226 * **Initial value**: `auto`
4227 *
4228 * | Chrome | Firefox | Safari | Edge | IE |
4229 * | :----: | :-----: | :----: | :--: | :-: |
4230 * | **69** | **68** | **15** | n/a | No |
4231 *
4232 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start
4233 */
4234 scrollPaddingInlineStart?: Property.ScrollPaddingInlineStart<TLength> | undefined;
4235 /**
4236 * 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 to put more breathing room between a targeted element and the edges of the scrollport.
4237 *
4238 * **Syntax**: `auto | <length-percentage>`
4239 *
4240 * **Initial value**: `auto`
4241 *
4242 * | Chrome | Firefox | Safari | Edge | IE |
4243 * | :----: | :-----: | :------: | :--: | :-: |
4244 * | **69** | **68** | **14.1** | n/a | No |
4245 *
4246 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left
4247 */
4248 scrollPaddingLeft?: Property.ScrollPaddingLeft<TLength> | undefined;
4249 /**
4250 * 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 to put more breathing room between a targeted element and the edges of the scrollport.
4251 *
4252 * **Syntax**: `auto | <length-percentage>`
4253 *
4254 * **Initial value**: `auto`
4255 *
4256 * | Chrome | Firefox | Safari | Edge | IE |
4257 * | :----: | :-----: | :------: | :--: | :-: |
4258 * | **69** | **68** | **14.1** | n/a | No |
4259 *
4260 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right
4261 */
4262 scrollPaddingRight?: Property.ScrollPaddingRight<TLength> | undefined;
4263 /**
4264 * 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 to put more breathing room between a targeted element and the edges of the scrollport.
4265 *
4266 * **Syntax**: `auto | <length-percentage>`
4267 *
4268 * **Initial value**: `auto`
4269 *
4270 * | Chrome | Firefox | Safari | Edge | IE |
4271 * | :----: | :-----: | :------: | :--: | :-: |
4272 * | **69** | **68** | **14.1** | n/a | No |
4273 *
4274 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top
4275 */
4276 scrollPaddingTop?: Property.ScrollPaddingTop<TLength> | undefined;
4277 /**
4278 * 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.
4279 *
4280 * **Syntax**: `[ none | start | end | center ]{1,2}`
4281 *
4282 * **Initial value**: `none`
4283 *
4284 * | Chrome | Firefox | Safari | Edge | IE |
4285 * | :----: | :-----: | :----: | :--: | :-: |
4286 * | **69** | **68** | **11** | n/a | No |
4287 *
4288 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-align
4289 */
4290 scrollSnapAlign?: Property.ScrollSnapAlign | undefined;
4291 /**
4292 * 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.
4293 *
4294 * **Syntax**: `<length>`
4295 *
4296 * **Initial value**: `0`
4297 *
4298 * | Chrome | Firefox | Safari | Edge | IE |
4299 * | :----: | :-----: | :------------------------------: | :--: | :-: |
4300 * | **69** | **68** | **14.1** | n/a | No |
4301 * | | | 11 _(scroll-snap-margin-bottom)_ | | |
4302 *
4303 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
4304 */
4305 scrollSnapMarginBottom?: Property.ScrollMarginBottom<TLength> | undefined;
4306 /**
4307 * 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.
4308 *
4309 * **Syntax**: `<length>`
4310 *
4311 * **Initial value**: `0`
4312 *
4313 * | Chrome | Firefox | Safari | Edge | IE |
4314 * | :----: | :-----: | :----------------------------: | :--: | :-: |
4315 * | **69** | **68** | **14.1** | n/a | No |
4316 * | | | 11 _(scroll-snap-margin-left)_ | | |
4317 *
4318 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
4319 */
4320 scrollSnapMarginLeft?: Property.ScrollMarginLeft<TLength> | undefined;
4321 /**
4322 * 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.
4323 *
4324 * **Syntax**: `<length>`
4325 *
4326 * **Initial value**: `0`
4327 *
4328 * | Chrome | Firefox | Safari | Edge | IE |
4329 * | :----: | :-----: | :-----------------------------: | :--: | :-: |
4330 * | **69** | **68** | **14.1** | n/a | No |
4331 * | | | 11 _(scroll-snap-margin-right)_ | | |
4332 *
4333 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
4334 */
4335 scrollSnapMarginRight?: Property.ScrollMarginRight<TLength> | undefined;
4336 /**
4337 * 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.
4338 *
4339 * **Syntax**: `<length>`
4340 *
4341 * **Initial value**: `0`
4342 *
4343 * | Chrome | Firefox | Safari | Edge | IE |
4344 * | :----: | :-----: | :---------------------------: | :--: | :-: |
4345 * | **69** | **68** | **14.1** | n/a | No |
4346 * | | | 11 _(scroll-snap-margin-top)_ | | |
4347 *
4348 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
4349 */
4350 scrollSnapMarginTop?: Property.ScrollMarginTop<TLength> | undefined;
4351 /**
4352 * The **`scroll-snap-stop`** CSS property defines whether or not the scroll container is allowed to "pass over" possible snap positions.
4353 *
4354 * **Syntax**: `normal | always`
4355 *
4356 * **Initial value**: `normal`
4357 *
4358 * | Chrome | Firefox | Safari | Edge | IE |
4359 * | :----: | :-----: | :----: | :--: | :-: |
4360 * | **75** | **103** | **15** | n/a | No |
4361 *
4362 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop
4363 */
4364 scrollSnapStop?: Property.ScrollSnapStop | undefined;
4365 /**
4366 * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.
4367 *
4368 * **Syntax**: `none | [ x | y | block | inline | both ] [ mandatory | proximity ]?`
4369 *
4370 * **Initial value**: `none`
4371 *
4372 * | Chrome | Firefox | Safari | Edge | IE |
4373 * | :----: | :-----: | :-----: | :----: | :----------: |
4374 * | **69** | 39-68 | **11** | **79** | **10** _-x-_ |
4375 * | | | 9 _-x-_ | | |
4376 *
4377 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type
4378 */
4379 scrollSnapType?: Property.ScrollSnapType | undefined;
4380 /**
4381 * The **`scroll-timeline-axis`** CSS property can be used to specify the scrollbar that will be used to provide the timeline for a scroll-timeline animation.
4382 *
4383 * **Syntax**: `[ block | inline | x | y ]#`
4384 *
4385 * **Initial value**: `block`
4386 *
4387 * | Chrome | Firefox | Safari | Edge | IE |
4388 * | :-----: | :-----: | :----: | :--: | :-: |
4389 * | **115** | n/a | No | n/a | No |
4390 *
4391 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-timeline-axis
4392 */
4393 scrollTimelineAxis?: Property.ScrollTimelineAxis | undefined;
4394 /**
4395 * The **`scroll-timeline-name`** CSS property defines a name that can be used to identify an element as the source of a scroll timeline for an animation.
4396 *
4397 * **Syntax**: `none | <dashed-ident>#`
4398 *
4399 * **Initial value**: `none`
4400 *
4401 * | Chrome | Firefox | Safari | Edge | IE |
4402 * | :-----: | :-----: | :----: | :--: | :-: |
4403 * | **115** | n/a | No | n/a | No |
4404 *
4405 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-timeline-name
4406 */
4407 scrollTimelineName?: Property.ScrollTimelineName | undefined;
4408 /**
4409 * The **`scrollbar-color`** CSS property sets the color of the scrollbar track and thumb.
4410 *
4411 * **Syntax**: `auto | <color>{2}`
4412 *
4413 * **Initial value**: `auto`
4414 *
4415 * | Chrome | Firefox | Safari | Edge | IE |
4416 * | :-----: | :-----: | :----: | :--: | :-: |
4417 * | **121** | **64** | No | n/a | No |
4418 *
4419 * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-color
4420 */
4421 scrollbarColor?: Property.ScrollbarColor | undefined;
4422 /**
4423 * 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.
4424 *
4425 * **Syntax**: `auto | stable && both-edges?`
4426 *
4427 * **Initial value**: `auto`
4428 *
4429 * | Chrome | Firefox | Safari | Edge | IE |
4430 * | :----: | :-----: | :----: | :--: | :-: |
4431 * | **94** | **97** | No | n/a | No |
4432 *
4433 * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter
4434 */
4435 scrollbarGutter?: Property.ScrollbarGutter | undefined;
4436 /**
4437 * The **`scrollbar-width`** property allows the author to set the maximum thickness of an element's scrollbars when they are shown.
4438 *
4439 * **Syntax**: `auto | thin | none`
4440 *
4441 * **Initial value**: `auto`
4442 *
4443 * | Chrome | Firefox | Safari | Edge | IE |
4444 * | :-----: | :-----: | :----: | :--: | :-: |
4445 * | **121** | **64** | No | n/a | No |
4446 *
4447 * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-width
4448 */
4449 scrollbarWidth?: Property.ScrollbarWidth | undefined;
4450 /**
4451 * 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`.
4452 *
4453 * **Syntax**: `<alpha-value>`
4454 *
4455 * **Initial value**: `0.0`
4456 *
4457 * | Chrome | Firefox | Safari | Edge | IE |
4458 * | :----: | :-----: | :------: | :--: | :-: |
4459 * | **37** | **62** | **10.1** | n/a | No |
4460 *
4461 * @see https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold
4462 */
4463 shapeImageThreshold?: Property.ShapeImageThreshold | undefined;
4464 /**
4465 * The **`shape-margin`** CSS property sets a margin for a CSS shape created using `shape-outside`.
4466 *
4467 * **Syntax**: `<length-percentage>`
4468 *
4469 * **Initial value**: `0`
4470 *
4471 * | Chrome | Firefox | Safari | Edge | IE |
4472 * | :----: | :-----: | :------: | :--: | :-: |
4473 * | **37** | **62** | **10.1** | n/a | No |
4474 *
4475 * @see https://developer.mozilla.org/docs/Web/CSS/shape-margin
4476 */
4477 shapeMargin?: Property.ShapeMargin<TLength> | undefined;
4478 /**
4479 * 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.
4480 *
4481 * **Syntax**: `none | [ <shape-box> || <basic-shape> ] | <image>`
4482 *
4483 * **Initial value**: `none`
4484 *
4485 * | Chrome | Firefox | Safari | Edge | IE |
4486 * | :----: | :-----: | :------: | :--: | :-: |
4487 * | **37** | **62** | **10.1** | n/a | No |
4488 *
4489 * @see https://developer.mozilla.org/docs/Web/CSS/shape-outside
4490 */
4491 shapeOutside?: Property.ShapeOutside | undefined;
4492 /**
4493 * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
4494 *
4495 * **Syntax**: `<integer> | <length>`
4496 *
4497 * **Initial value**: `8`
4498 *
4499 * | Chrome | Firefox | Safari | Edge | IE |
4500 * | :----: | :-----: | :----: | :--: | :-: |
4501 * | **21** | **91** | **7** | n/a | No |
4502 * | | 4 _-x-_ | | | |
4503 *
4504 * @see https://developer.mozilla.org/docs/Web/CSS/tab-size
4505 */
4506 tabSize?: Property.TabSize<TLength> | undefined;
4507 /**
4508 * The **`table-layout`** CSS property sets the algorithm used to lay out `<table>` cells, rows, and columns.
4509 *
4510 * **Syntax**: `auto | fixed`
4511 *
4512 * **Initial value**: `auto`
4513 *
4514 * | Chrome | Firefox | Safari | Edge | IE |
4515 * | :----: | :-----: | :----: | :----: | :---: |
4516 * | **14** | **1** | **1** | **12** | **5** |
4517 *
4518 * @see https://developer.mozilla.org/docs/Web/CSS/table-layout
4519 */
4520 tableLayout?: Property.TableLayout | undefined;
4521 /**
4522 * The **`text-align`** CSS property sets the horizontal alignment of the inline-level content inside a block element or table-cell box. This means it works like `vertical-align` but in the horizontal direction.
4523 *
4524 * **Syntax**: `start | end | left | right | center | justify | match-parent`
4525 *
4526 * **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.
4527 *
4528 * | Chrome | Firefox | Safari | Edge | IE |
4529 * | :----: | :-----: | :----: | :----: | :---: |
4530 * | **1** | **1** | **1** | **12** | **3** |
4531 *
4532 * @see https://developer.mozilla.org/docs/Web/CSS/text-align
4533 */
4534 textAlign?: Property.TextAlign | undefined;
4535 /**
4536 * 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.
4537 *
4538 * **Syntax**: `auto | start | end | left | right | center | justify`
4539 *
4540 * **Initial value**: `auto`
4541 *
4542 * | Chrome | Firefox | Safari | Edge | IE |
4543 * | :----: | :-----: | :----: | :----: | :-----: |
4544 * | **47** | **49** | **16** | **12** | **5.5** |
4545 *
4546 * @see https://developer.mozilla.org/docs/Web/CSS/text-align-last
4547 */
4548 textAlignLast?: Property.TextAlignLast | undefined;
4549 /**
4550 * 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.
4551 *
4552 * **Syntax**: `none | all | [ digits <integer>? ]`
4553 *
4554 * **Initial value**: `none`
4555 *
4556 * | Chrome | Firefox | Safari | Edge | IE |
4557 * | :------------------------: | :-----: | :--------------------------: | :----: | :------------------------------------: |
4558 * | **48** | **48** | **15.4** | **79** | **11** _(-ms-text-combine-horizontal)_ |
4559 * | 9 _(-webkit-text-combine)_ | | 5.1 _(-webkit-text-combine)_ | | |
4560 *
4561 * @see https://developer.mozilla.org/docs/Web/CSS/text-combine-upright
4562 */
4563 textCombineUpright?: Property.TextCombineUpright | undefined;
4564 /**
4565 * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
4566 *
4567 * **Syntax**: `<color>`
4568 *
4569 * **Initial value**: `currentcolor`
4570 *
4571 * | Chrome | Firefox | Safari | Edge | IE |
4572 * | :----: | :-----: | :------: | :--: | :-: |
4573 * | **57** | **36** | **12.1** | n/a | No |
4574 * | | | 8 _-x-_ | | |
4575 *
4576 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-color
4577 */
4578 textDecorationColor?: Property.TextDecorationColor | undefined;
4579 /**
4580 * 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.
4581 *
4582 * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
4583 *
4584 * **Initial value**: `none`
4585 *
4586 * | Chrome | Firefox | Safari | Edge | IE |
4587 * | :----: | :-----: | :------: | :--: | :-: |
4588 * | **57** | **36** | **12.1** | n/a | No |
4589 * | | | 8 _-x-_ | | |
4590 *
4591 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-line
4592 */
4593 textDecorationLine?: Property.TextDecorationLine | undefined;
4594 /**
4595 * 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.
4596 *
4597 * **Syntax**: `none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]`
4598 *
4599 * **Initial value**: `objects`
4600 *
4601 * | Chrome | Firefox | Safari | Edge | IE |
4602 * | :----: | :-----: | :------: | :--: | :-: |
4603 * | 57-64 | No | **12.1** | n/a | No |
4604 * | | | 7 _-x-_ | | |
4605 *
4606 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip
4607 */
4608 textDecorationSkip?: Property.TextDecorationSkip | undefined;
4609 /**
4610 * The **`text-decoration-skip-ink`** CSS property specifies how overlines and underlines are drawn when they pass over glyph ascenders and descenders.
4611 *
4612 * **Syntax**: `auto | all | none`
4613 *
4614 * **Initial value**: `auto`
4615 *
4616 * | Chrome | Firefox | Safari | Edge | IE |
4617 * | :----: | :-----: | :------: | :--: | :-: |
4618 * | **64** | **70** | **15.4** | n/a | No |
4619 *
4620 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink
4621 */
4622 textDecorationSkipInk?: Property.TextDecorationSkipInk | undefined;
4623 /**
4624 * 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`.
4625 *
4626 * **Syntax**: `solid | double | dotted | dashed | wavy`
4627 *
4628 * **Initial value**: `solid`
4629 *
4630 * | Chrome | Firefox | Safari | Edge | IE |
4631 * | :----: | :-----: | :------: | :--: | :-: |
4632 * | **57** | **36** | **12.1** | n/a | No |
4633 * | | | 8 _-x-_ | | |
4634 *
4635 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-style
4636 */
4637 textDecorationStyle?: Property.TextDecorationStyle | undefined;
4638 /**
4639 * 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.
4640 *
4641 * **Syntax**: `auto | from-font | <length> | <percentage> `
4642 *
4643 * **Initial value**: `auto`
4644 *
4645 * | Chrome | Firefox | Safari | Edge | IE |
4646 * | :----: | :-----: | :------: | :--: | :-: |
4647 * | **89** | **70** | **12.1** | n/a | No |
4648 *
4649 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness
4650 */
4651 textDecorationThickness?: Property.TextDecorationThickness<TLength> | undefined;
4652 /**
4653 * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand.
4654 *
4655 * **Syntax**: `<color>`
4656 *
4657 * **Initial value**: `currentcolor`
4658 *
4659 * | Chrome | Firefox | Safari | Edge | IE |
4660 * | :------: | :-----: | :----: | :--: | :-: |
4661 * | **99** | **46** | **7** | n/a | No |
4662 * | 25 _-x-_ | | | | |
4663 *
4664 * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color
4665 */
4666 textEmphasisColor?: Property.TextEmphasisColor | undefined;
4667 /**
4668 * 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.
4669 *
4670 * **Syntax**: `[ over | under ] && [ right | left ]`
4671 *
4672 * **Initial value**: `over right`
4673 *
4674 * | Chrome | Firefox | Safari | Edge | IE |
4675 * | :------: | :-----: | :----: | :--: | :-: |
4676 * | **99** | **46** | **7** | n/a | No |
4677 * | 25 _-x-_ | | | | |
4678 *
4679 * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position
4680 */
4681 textEmphasisPosition?: Property.TextEmphasisPosition | undefined;
4682 /**
4683 * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand.
4684 *
4685 * **Syntax**: `none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>`
4686 *
4687 * **Initial value**: `none`
4688 *
4689 * | Chrome | Firefox | Safari | Edge | IE |
4690 * | :------: | :-----: | :----: | :--: | :-: |
4691 * | **99** | **46** | **7** | n/a | No |
4692 * | 25 _-x-_ | | | | |
4693 *
4694 * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style
4695 */
4696 textEmphasisStyle?: Property.TextEmphasisStyle | undefined;
4697 /**
4698 * The **`text-indent`** CSS property sets the length of empty space (indentation) that is put before lines of text in a block.
4699 *
4700 * **Syntax**: `<length-percentage> && hanging? && each-line?`
4701 *
4702 * **Initial value**: `0`
4703 *
4704 * | Chrome | Firefox | Safari | Edge | IE |
4705 * | :----: | :-----: | :----: | :----: | :---: |
4706 * | **1** | **1** | **1** | **12** | **3** |
4707 *
4708 * @see https://developer.mozilla.org/docs/Web/CSS/text-indent
4709 */
4710 textIndent?: Property.TextIndent<TLength> | undefined;
4711 /**
4712 * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element.
4713 *
4714 * **Syntax**: `auto | inter-character | inter-word | none`
4715 *
4716 * **Initial value**: `auto`
4717 *
4718 * | Chrome | Firefox | Safari | Edge | IE |
4719 * | :----: | :-----: | :----: | :---: | :----: |
4720 * | n/a | **55** | No | 12-79 | **11** |
4721 *
4722 * @see https://developer.mozilla.org/docs/Web/CSS/text-justify
4723 */
4724 textJustify?: Property.TextJustify | undefined;
4725 /**
4726 * 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.
4727 *
4728 * **Syntax**: `mixed | upright | sideways`
4729 *
4730 * **Initial value**: `mixed`
4731 *
4732 * | Chrome | Firefox | Safari | Edge | IE |
4733 * | :------: | :-----: | :-------: | :--: | :-: |
4734 * | **48** | **41** | **14** | n/a | No |
4735 * | 11 _-x-_ | | 5.1 _-x-_ | | |
4736 *
4737 * @see https://developer.mozilla.org/docs/Web/CSS/text-orientation
4738 */
4739 textOrientation?: Property.TextOrientation | undefined;
4740 /**
4741 * 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.
4742 *
4743 * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`
4744 *
4745 * **Initial value**: `clip`
4746 *
4747 * | Chrome | Firefox | Safari | Edge | IE |
4748 * | :----: | :-----: | :-----: | :----: | :---: |
4749 * | **1** | **7** | **1.3** | **12** | **6** |
4750 *
4751 * @see https://developer.mozilla.org/docs/Web/CSS/text-overflow
4752 */
4753 textOverflow?: Property.TextOverflow | undefined;
4754 /**
4755 * The **`text-rendering`** CSS property provides information to the rendering engine about what to optimize for when rendering text.
4756 *
4757 * **Syntax**: `auto | optimizeSpeed | optimizeLegibility | geometricPrecision`
4758 *
4759 * **Initial value**: `auto`
4760 *
4761 * | Chrome | Firefox | Safari | Edge | IE |
4762 * | :----: | :-----: | :----: | :--: | :-: |
4763 * | **4** | **1** | **5** | n/a | No |
4764 *
4765 * @see https://developer.mozilla.org/docs/Web/CSS/text-rendering
4766 */
4767 textRendering?: Property.TextRendering | undefined;
4768 /**
4769 * 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.
4770 *
4771 * **Syntax**: `none | <shadow-t>#`
4772 *
4773 * **Initial value**: `none`
4774 *
4775 * | Chrome | Firefox | Safari | Edge | IE |
4776 * | :----: | :-----: | :-----: | :----: | :----: |
4777 * | **2** | **3.5** | **1.1** | **12** | **10** |
4778 *
4779 * @see https://developer.mozilla.org/docs/Web/CSS/text-shadow
4780 */
4781 textShadow?: Property.TextShadow | undefined;
4782 /**
4783 * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
4784 *
4785 * **Syntax**: `none | auto | <percentage>`
4786 *
4787 * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
4788 *
4789 * | Chrome | Firefox | Safari | Edge | IE |
4790 * | :----: | :-----: | :----: | :----: | :-: |
4791 * | **54** | No | No | **79** | No |
4792 *
4793 * @see https://developer.mozilla.org/docs/Web/CSS/text-size-adjust
4794 */
4795 textSizeAdjust?: Property.TextSizeAdjust | undefined;
4796 /**
4797 * 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.
4798 *
4799 * **Syntax**: `none | capitalize | uppercase | lowercase | full-width | full-size-kana`
4800 *
4801 * **Initial value**: `none`
4802 *
4803 * | Chrome | Firefox | Safari | Edge | IE |
4804 * | :----: | :-----: | :----: | :----: | :---: |
4805 * | **1** | **1** | **1** | **12** | **4** |
4806 *
4807 * @see https://developer.mozilla.org/docs/Web/CSS/text-transform
4808 */
4809 textTransform?: Property.TextTransform | undefined;
4810 /**
4811 * The **`text-underline-offset`** CSS property sets the offset distance of an underline text decoration line (applied using `text-decoration`) from its original position.
4812 *
4813 * **Syntax**: `auto | <length> | <percentage> `
4814 *
4815 * **Initial value**: `auto`
4816 *
4817 * | Chrome | Firefox | Safari | Edge | IE |
4818 * | :----: | :-----: | :------: | :--: | :-: |
4819 * | **87** | **70** | **12.1** | n/a | No |
4820 *
4821 * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-offset
4822 */
4823 textUnderlineOffset?: Property.TextUnderlineOffset<TLength> | undefined;
4824 /**
4825 * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value.
4826 *
4827 * **Syntax**: `auto | from-font | [ under || [ left | right ] ]`
4828 *
4829 * **Initial value**: `auto`
4830 *
4831 * | Chrome | Firefox | Safari | Edge | IE |
4832 * | :----: | :-----: | :------: | :----: | :---: |
4833 * | **33** | **74** | **12.1** | **12** | **6** |
4834 * | | | 9 _-x-_ | | |
4835 *
4836 * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-position
4837 */
4838 textUnderlinePosition?: Property.TextUnderlinePosition | undefined;
4839 /**
4840 * The **`text-wrap`** CSS property controls how text inside an element is wrapped. The different values provide:
4841 *
4842 * **Syntax**: `wrap | nowrap | balance | stable | pretty`
4843 *
4844 * **Initial value**: `wrap`
4845 *
4846 * | Chrome | Firefox | Safari | Edge | IE |
4847 * | :-----: | :-----: | :----: | :--: | :-: |
4848 * | **114** | **121** | No | n/a | No |
4849 *
4850 * @see https://developer.mozilla.org/docs/Web/CSS/text-wrap
4851 */
4852 textWrap?: Property.TextWrap | undefined;
4853 /**
4854 * The **`timeline-scope`** CSS property modifies the scope of a named animation timeline.
4855 *
4856 * **Syntax**: `none | <dashed-ident>#`
4857 *
4858 * **Initial value**: `none`
4859 *
4860 * | Chrome | Firefox | Safari | Edge | IE |
4861 * | :-----: | :-----: | :----: | :--: | :-: |
4862 * | **116** | No | No | n/a | No |
4863 *
4864 * @see https://developer.mozilla.org/docs/Web/CSS/timeline-scope
4865 */
4866 timelineScope?: Property.TimelineScope | undefined;
4867 /**
4868 * The **`top`** CSS property participates in specifying the vertical position of a positioned element. It has no effect on non-positioned elements.
4869 *
4870 * **Syntax**: `<length> | <percentage> | auto`
4871 *
4872 * **Initial value**: `auto`
4873 *
4874 * | Chrome | Firefox | Safari | Edge | IE |
4875 * | :----: | :-----: | :----: | :----: | :---: |
4876 * | **1** | **1** | **1** | **12** | **5** |
4877 *
4878 * @see https://developer.mozilla.org/docs/Web/CSS/top
4879 */
4880 top?: Property.Top<TLength> | undefined;
4881 /**
4882 * 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).
4883 *
4884 * **Syntax**: `auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation`
4885 *
4886 * **Initial value**: `auto`
4887 *
4888 * | Chrome | Firefox | Safari | Edge | IE |
4889 * | :----: | :-----: | :----: | :----: | :------: |
4890 * | **36** | **52** | **13** | **12** | **11** |
4891 * | | | | | 10 _-x-_ |
4892 *
4893 * @see https://developer.mozilla.org/docs/Web/CSS/touch-action
4894 */
4895 touchAction?: Property.TouchAction | undefined;
4896 /**
4897 * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
4898 *
4899 * **Syntax**: `none | <transform-list>`
4900 *
4901 * **Initial value**: `none`
4902 *
4903 * | Chrome | Firefox | Safari | Edge | IE |
4904 * | :-----: | :-----: | :-------: | :----: | :-----: |
4905 * | **36** | **16** | **9** | **12** | **10** |
4906 * | 1 _-x-_ | | 3.1 _-x-_ | | 9 _-x-_ |
4907 *
4908 * @see https://developer.mozilla.org/docs/Web/CSS/transform
4909 */
4910 transform?: Property.Transform | undefined;
4911 /**
4912 * The **`transform-box`** CSS property defines the layout box to which the `transform`, individual transform properties `translate`,`scale`, and `rotate`, and `transform-origin` properties relate.
4913 *
4914 * **Syntax**: `content-box | border-box | fill-box | stroke-box | view-box`
4915 *
4916 * **Initial value**: `view-box`
4917 *
4918 * | Chrome | Firefox | Safari | Edge | IE |
4919 * | :----: | :-----: | :----: | :--: | :-: |
4920 * | **64** | **55** | **11** | n/a | No |
4921 *
4922 * @see https://developer.mozilla.org/docs/Web/CSS/transform-box
4923 */
4924 transformBox?: Property.TransformBox | undefined;
4925 /**
4926 * The **`transform-origin`** CSS property sets the origin for an element's transformations.
4927 *
4928 * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
4929 *
4930 * **Initial value**: `50% 50% 0`
4931 *
4932 * | Chrome | Firefox | Safari | Edge | IE |
4933 * | :-----: | :-----: | :-----: | :----: | :-----: |
4934 * | **36** | **16** | **9** | **12** | **10** |
4935 * | 1 _-x-_ | | 2 _-x-_ | | 9 _-x-_ |
4936 *
4937 * @see https://developer.mozilla.org/docs/Web/CSS/transform-origin
4938 */
4939 transformOrigin?: Property.TransformOrigin<TLength> | undefined;
4940 /**
4941 * 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.
4942 *
4943 * **Syntax**: `flat | preserve-3d`
4944 *
4945 * **Initial value**: `flat`
4946 *
4947 * | Chrome | Firefox | Safari | Edge | IE |
4948 * | :------: | :-----: | :-----: | :----: | :-: |
4949 * | **36** | **16** | **9** | **12** | No |
4950 * | 12 _-x-_ | | 4 _-x-_ | | |
4951 *
4952 * @see https://developer.mozilla.org/docs/Web/CSS/transform-style
4953 */
4954 transformStyle?: Property.TransformStyle | undefined;
4955 /**
4956 * The **`transition-behavior`** CSS property specifies whether transitions will be started for properties whose animation behavior is discrete.
4957 *
4958 * **Syntax**: `<transition-behavior-value>#`
4959 *
4960 * **Initial value**: `normal`
4961 *
4962 * | Chrome | Firefox | Safari | Edge | IE |
4963 * | :-----: | :-----: | :----: | :--: | :-: |
4964 * | **117** | No | No | n/a | No |
4965 *
4966 * @see https://developer.mozilla.org/docs/Web/CSS/transition-behavior
4967 */
4968 transitionBehavior?: Property.TransitionBehavior | undefined;
4969 /**
4970 * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
4971 *
4972 * **Syntax**: `<time>#`
4973 *
4974 * **Initial value**: `0s`
4975 *
4976 * | Chrome | Firefox | Safari | Edge | IE |
4977 * | :-----: | :-----: | :-----: | :----: | :----: |
4978 * | **26** | **16** | **9** | **12** | **10** |
4979 * | 1 _-x-_ | | 4 _-x-_ | | |
4980 *
4981 * @see https://developer.mozilla.org/docs/Web/CSS/transition-delay
4982 */
4983 transitionDelay?: Property.TransitionDelay<TTime> | undefined;
4984 /**
4985 * 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.
4986 *
4987 * **Syntax**: `<time>#`
4988 *
4989 * **Initial value**: `0s`
4990 *
4991 * | Chrome | Firefox | Safari | Edge | IE |
4992 * | :-----: | :-----: | :-------: | :----: | :----: |
4993 * | **26** | **16** | **9** | **12** | **10** |
4994 * | 1 _-x-_ | | 3.1 _-x-_ | | |
4995 *
4996 * @see https://developer.mozilla.org/docs/Web/CSS/transition-duration
4997 */
4998 transitionDuration?: Property.TransitionDuration<TTime> | undefined;
4999 /**
5000 * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
5001 *
5002 * **Syntax**: `none | <single-transition-property>#`
5003 *
5004 * **Initial value**: all
5005 *
5006 * | Chrome | Firefox | Safari | Edge | IE |
5007 * | :-----: | :-----: | :-------: | :----: | :----: |
5008 * | **26** | **16** | **9** | **12** | **10** |
5009 * | 1 _-x-_ | | 3.1 _-x-_ | | |
5010 *
5011 * @see https://developer.mozilla.org/docs/Web/CSS/transition-property
5012 */
5013 transitionProperty?: Property.TransitionProperty | undefined;
5014 /**
5015 * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
5016 *
5017 * **Syntax**: `<easing-function>#`
5018 *
5019 * **Initial value**: `ease`
5020 *
5021 * | Chrome | Firefox | Safari | Edge | IE |
5022 * | :-----: | :-----: | :-------: | :----: | :----: |
5023 * | **26** | **16** | **9** | **12** | **10** |
5024 * | 1 _-x-_ | | 3.1 _-x-_ | | |
5025 *
5026 * @see https://developer.mozilla.org/docs/Web/CSS/transition-timing-function
5027 */
5028 transitionTimingFunction?: Property.TransitionTimingFunction | undefined;
5029 /**
5030 * 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.
5031 *
5032 * **Syntax**: `none | <length-percentage> [ <length-percentage> <length>? ]?`
5033 *
5034 * **Initial value**: `none`
5035 *
5036 * | Chrome | Firefox | Safari | Edge | IE |
5037 * | :-----: | :-----: | :------: | :--: | :-: |
5038 * | **104** | **72** | **14.1** | n/a | No |
5039 *
5040 * @see https://developer.mozilla.org/docs/Web/CSS/translate
5041 */
5042 translate?: Property.Translate<TLength> | undefined;
5043 /**
5044 * 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.
5045 *
5046 * **Syntax**: `normal | embed | isolate | bidi-override | isolate-override | plaintext`
5047 *
5048 * **Initial value**: `normal`
5049 *
5050 * | Chrome | Firefox | Safari | Edge | IE |
5051 * | :----: | :-----: | :-----: | :----: | :-----: |
5052 * | **2** | **1** | **1.3** | **12** | **5.5** |
5053 *
5054 * @see https://developer.mozilla.org/docs/Web/CSS/unicode-bidi
5055 */
5056 unicodeBidi?: Property.UnicodeBidi | undefined;
5057 /**
5058 * The **`user-select`** CSS property controls whether the user can select text. This doesn't have any effect on content loaded as part of a browser's user interface (its chrome), except in textboxes.
5059 *
5060 * **Syntax**: `auto | text | none | contain | all`
5061 *
5062 * **Initial value**: `auto`
5063 *
5064 * | Chrome | Firefox | Safari | Edge | IE |
5065 * | :-----: | :-----: | :---------: | :------: | :----------: |
5066 * | **54** | **69** | **3** _-x-_ | **79** | **10** _-x-_ |
5067 * | 1 _-x-_ | 1 _-x-_ | | 12 _-x-_ | |
5068 *
5069 * @see https://developer.mozilla.org/docs/Web/CSS/user-select
5070 */
5071 userSelect?: Property.UserSelect | undefined;
5072 /**
5073 * The **`vertical-align`** CSS property sets vertical alignment of an inline, inline-block or table-cell box.
5074 *
5075 * **Syntax**: `baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length>`
5076 *
5077 * **Initial value**: `baseline`
5078 *
5079 * | Chrome | Firefox | Safari | Edge | IE |
5080 * | :----: | :-----: | :----: | :----: | :---: |
5081 * | **1** | **1** | **1** | **12** | **4** |
5082 *
5083 * @see https://developer.mozilla.org/docs/Web/CSS/vertical-align
5084 */
5085 verticalAlign?: Property.VerticalAlign<TLength> | undefined;
5086 /**
5087 * The **`view-timeline-axis`** CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a _named view progress timeline_ animation, which is progressed through based on the change in visibility of an element (known as the _subject_) inside a scrollable element (_scroller_). `view-timeline-axis` is set on the subject. See CSS scroll-driven animations for more details.
5088 *
5089 * **Syntax**: `[ block | inline | x | y ]#`
5090 *
5091 * **Initial value**: `block`
5092 *
5093 * | Chrome | Firefox | Safari | Edge | IE |
5094 * | :-----: | :-----: | :----: | :--: | :-: |
5095 * | **115** | n/a | No | n/a | No |
5096 *
5097 * @see https://developer.mozilla.org/docs/Web/CSS/view-timeline-axis
5098 */
5099 viewTimelineAxis?: Property.ViewTimelineAxis | undefined;
5100 /**
5101 * The **`view-timeline-inset`** CSS property is used to specify one or two values representing an adjustment to the position of the scrollport (see Scroll container for more details) in which the subject element of a _named view progress timeline_ animation is deemed to be visible. Put another way, this allows you to specify start and/or end inset (or outset) values that offset the position of the timeline.
5102 *
5103 * **Syntax**: `[ [ auto | <length-percentage> ]{1,2} ]#`
5104 *
5105 * **Initial value**: `auto`
5106 *
5107 * | Chrome | Firefox | Safari | Edge | IE |
5108 * | :-----: | :-----: | :----: | :--: | :-: |
5109 * | **115** | No | No | n/a | No |
5110 *
5111 * @see https://developer.mozilla.org/docs/Web/CSS/view-timeline-inset
5112 */
5113 viewTimelineInset?: Property.ViewTimelineInset<TLength> | undefined;
5114 /**
5115 * The **`view-timeline-name`** CSS property is used to define the name of a _named view progress timeline_, which is progressed through based on the change in visibility of an element (known as the _subject_) inside a scrollable element (_scroller_). `view-timeline` is set on the subject.
5116 *
5117 * **Syntax**: `none | <dashed-ident>#`
5118 *
5119 * **Initial value**: `none`
5120 *
5121 * | Chrome | Firefox | Safari | Edge | IE |
5122 * | :-----: | :-----: | :----: | :--: | :-: |
5123 * | **115** | n/a | No | n/a | No |
5124 *
5125 * @see https://developer.mozilla.org/docs/Web/CSS/view-timeline-name
5126 */
5127 viewTimelineName?: Property.ViewTimelineName | undefined;
5128 /**
5129 * The **`view-transition-name`** CSS property provides the selected element with a distinct identifying name (a `<custom-ident>`) and causes it to participate in a separate view transition from the root view transition — or no view transition if the `none` value is specified.
5130 *
5131 * **Syntax**: `none | <custom-ident>`
5132 *
5133 * **Initial value**: `none`
5134 *
5135 * | Chrome | Firefox | Safari | Edge | IE |
5136 * | :-----: | :-----: | :----: | :--: | :-: |
5137 * | **111** | No | No | n/a | No |
5138 *
5139 * @see https://developer.mozilla.org/docs/Web/CSS/view-transition-name
5140 */
5141 viewTransitionName?: Property.ViewTransitionName | undefined;
5142 /**
5143 * 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>`.
5144 *
5145 * **Syntax**: `visible | hidden | collapse`
5146 *
5147 * **Initial value**: `visible`
5148 *
5149 * | Chrome | Firefox | Safari | Edge | IE |
5150 * | :----: | :-----: | :----: | :----: | :---: |
5151 * | **1** | **1** | **1** | **12** | **4** |
5152 *
5153 * @see https://developer.mozilla.org/docs/Web/CSS/visibility
5154 */
5155 visibility?: Property.Visibility | undefined;
5156 /**
5157 * The **`white-space`** CSS property sets how white space inside an element is handled.
5158 *
5159 * **Syntax**: `normal | pre | nowrap | pre-wrap | pre-line | break-spaces | [ <'white-space-collapse'> || <'text-wrap'> || <'white-space-trim'> ]`
5160 *
5161 * **Initial value**: `normal`
5162 *
5163 * | Chrome | Firefox | Safari | Edge | IE |
5164 * | :----: | :-----: | :----: | :----: | :-----: |
5165 * | **1** | **1** | **1** | **12** | **5.5** |
5166 *
5167 * @see https://developer.mozilla.org/docs/Web/CSS/white-space
5168 */
5169 whiteSpace?: Property.WhiteSpace | undefined;
5170 /**
5171 * The **`white-space-collapse`** CSS property controls how white space inside an element is collapsed.
5172 *
5173 * **Syntax**: `collapse | discard | preserve | preserve-breaks | preserve-spaces | break-spaces`
5174 *
5175 * **Initial value**: `collapse`
5176 *
5177 * | Chrome | Firefox | Safari | Edge | IE |
5178 * | :-----: | :-----: | :----: | :--: | :-: |
5179 * | **114** | No | No | n/a | No |
5180 *
5181 * @see https://developer.mozilla.org/docs/Web/CSS/white-space-collapse
5182 */
5183 whiteSpaceCollapse?: Property.WhiteSpaceCollapse | undefined;
5184 /**
5185 * **Syntax**: `none | discard-before || discard-after || discard-inner`
5186 *
5187 * **Initial value**: `none`
5188 */
5189 whiteSpaceTrim?: Property.WhiteSpaceTrim | undefined;
5190 /**
5191 * 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.
5192 *
5193 * **Syntax**: `<integer>`
5194 *
5195 * **Initial value**: `2`
5196 *
5197 * | Chrome | Firefox | Safari | Edge | IE |
5198 * | :----: | :-----: | :-----: | :----: | :---: |
5199 * | **25** | No | **1.3** | **12** | **8** |
5200 *
5201 * @see https://developer.mozilla.org/docs/Web/CSS/widows
5202 */
5203 widows?: Property.Widows | undefined;
5204 /**
5205 * 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.
5206 *
5207 * **Syntax**: `auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)`
5208 *
5209 * **Initial value**: `auto`
5210 *
5211 * | Chrome | Firefox | Safari | Edge | IE |
5212 * | :----: | :-----: | :----: | :----: | :---: |
5213 * | **1** | **1** | **1** | **12** | **4** |
5214 *
5215 * @see https://developer.mozilla.org/docs/Web/CSS/width
5216 */
5217 width?: Property.Width<TLength> | undefined;
5218 /**
5219 * 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.
5220 *
5221 * **Syntax**: `auto | <animateable-feature>#`
5222 *
5223 * **Initial value**: `auto`
5224 *
5225 * | Chrome | Firefox | Safari | Edge | IE |
5226 * | :----: | :-----: | :-----: | :--: | :-: |
5227 * | **36** | **36** | **9.1** | n/a | No |
5228 *
5229 * @see https://developer.mozilla.org/docs/Web/CSS/will-change
5230 */
5231 willChange?: Property.WillChange | undefined;
5232 /**
5233 * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box.
5234 *
5235 * **Syntax**: `normal | break-all | keep-all | break-word`
5236 *
5237 * **Initial value**: `normal`
5238 *
5239 * | Chrome | Firefox | Safari | Edge | IE |
5240 * | :----: | :-----: | :----: | :----: | :-----: |
5241 * | **1** | **15** | **3** | **12** | **5.5** |
5242 *
5243 * @see https://developer.mozilla.org/docs/Web/CSS/word-break
5244 */
5245 wordBreak?: Property.WordBreak | undefined;
5246 /**
5247 * The **`word-spacing`** CSS property sets the length of space between words and between tags.
5248 *
5249 * **Syntax**: `normal | <length>`
5250 *
5251 * **Initial value**: `normal`
5252 *
5253 * | Chrome | Firefox | Safari | Edge | IE |
5254 * | :----: | :-----: | :----: | :----: | :---: |
5255 * | **1** | **1** | **1** | **12** | **6** |
5256 *
5257 * @see https://developer.mozilla.org/docs/Web/CSS/word-spacing
5258 */
5259 wordSpacing?: Property.WordSpacing<TLength> | undefined;
5260 /**
5261 * 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.
5262 *
5263 * **Syntax**: `normal | break-word`
5264 *
5265 * **Initial value**: `normal`
5266 *
5267 * | Chrome | Firefox | Safari | Edge | IE |
5268 * | :-----: | :-----: | :-------: | :-----: | :-: |
5269 * | **≤80** | **≤72** | **≤13.1** | **≤80** | No |
5270 */
5271 wordWrap?: Property.WordWrap | undefined;
5272 /**
5273 * 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).
5274 *
5275 * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`
5276 *
5277 * **Initial value**: `horizontal-tb`
5278 *
5279 * | Chrome | Firefox | Safari | Edge | IE |
5280 * | :-----: | :-----: | :-------: | :----: | :---: |
5281 * | **48** | **41** | **10.1** | **12** | **9** |
5282 * | 8 _-x-_ | | 5.1 _-x-_ | | |
5283 *
5284 * @see https://developer.mozilla.org/docs/Web/CSS/writing-mode
5285 */
5286 writingMode?: Property.WritingMode | undefined;
5287 /**
5288 * 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.
5289 *
5290 * **Syntax**: `auto | <integer>`
5291 *
5292 * **Initial value**: `auto`
5293 *
5294 * | Chrome | Firefox | Safari | Edge | IE |
5295 * | :----: | :-----: | :----: | :----: | :---: |
5296 * | **1** | **1** | **1** | **12** | **4** |
5297 *
5298 * @see https://developer.mozilla.org/docs/Web/CSS/z-index
5299 */
5300 zIndex?: Property.ZIndex | undefined;
5301 /**
5302 * 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.
5303 *
5304 * **Syntax**: `normal | reset | <number> | <percentage>`
5305 *
5306 * **Initial value**: `normal`
5307 *
5308 * | Chrome | Firefox | Safari | Edge | IE |
5309 * | :----: | :-----: | :-----: | :----: | :-----: |
5310 * | **1** | n/a | **3.1** | **12** | **5.5** |
5311 *
5312 * @see https://developer.mozilla.org/docs/Web/CSS/zoom
5313 */
5314 zoom?: Property.Zoom | undefined;
5315}
5316
5317interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime = string & {}> {
5318 /**
5319 * 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 cascade layer or stylesheet origin.
5320 *
5321 * **Syntax**: `initial | inherit | unset | revert | revert-layer`
5322 *
5323 * **Initial value**: There is no practical initial value for it.
5324 *
5325 * | Chrome | Firefox | Safari | Edge | IE |
5326 * | :----: | :-----: | :-----: | :--: | :-: |
5327 * | **37** | **27** | **9.1** | n/a | No |
5328 *
5329 * @see https://developer.mozilla.org/docs/Web/CSS/all
5330 */
5331 all?: Property.All | undefined;
5332 /**
5333 * 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`.
5334 *
5335 * **Syntax**: `<single-animation>#`
5336 *
5337 * | Chrome | Firefox | Safari | Edge | IE |
5338 * | :-----: | :-----: | :-----: | :----: | :----: |
5339 * | **43** | **16** | **9** | **12** | **10** |
5340 * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | |
5341 *
5342 * @see https://developer.mozilla.org/docs/Web/CSS/animation
5343 */
5344 animation?: Property.Animation<TTime> | undefined;
5345 /**
5346 * The **`animation-range`** CSS shorthand property is used to set the start and end of an animation's attachment range along its timeline, i.e. where along the timeline an animation will start and end.
5347 *
5348 * **Syntax**: `[ <'animation-range-start'> <'animation-range-end'>? ]#`
5349 *
5350 * | Chrome | Firefox | Safari | Edge | IE |
5351 * | :-----: | :-----: | :----: | :--: | :-: |
5352 * | **115** | No | No | n/a | No |
5353 *
5354 * @see https://developer.mozilla.org/docs/Web/CSS/animation-range
5355 */
5356 animationRange?: Property.AnimationRange<TLength> | undefined;
5357 /**
5358 * The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method.
5359 *
5360 * **Syntax**: `[ <bg-layer> , ]* <final-bg-layer>`
5361 *
5362 * | Chrome | Firefox | Safari | Edge | IE |
5363 * | :----: | :-----: | :----: | :----: | :---: |
5364 * | **1** | **1** | **1** | **12** | **4** |
5365 *
5366 * @see https://developer.mozilla.org/docs/Web/CSS/background
5367 */
5368 background?: Property.Background<TLength> | undefined;
5369 /**
5370 * 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`.
5371 *
5372 * **Syntax**: `<bg-position>#`
5373 *
5374 * **Initial value**: `0% 0%`
5375 *
5376 * | Chrome | Firefox | Safari | Edge | IE |
5377 * | :----: | :-----: | :----: | :----: | :---: |
5378 * | **1** | **1** | **1** | **12** | **4** |
5379 *
5380 * @see https://developer.mozilla.org/docs/Web/CSS/background-position
5381 */
5382 backgroundPosition?: Property.BackgroundPosition<TLength> | undefined;
5383 /**
5384 * The **`border`** shorthand CSS property sets an element's border. It sets the values of `border-width`, `border-style`, and `border-color`.
5385 *
5386 * **Syntax**: `<line-width> || <line-style> || <color>`
5387 *
5388 * | Chrome | Firefox | Safari | Edge | IE |
5389 * | :----: | :-----: | :----: | :----: | :---: |
5390 * | **1** | **1** | **1** | **12** | **4** |
5391 *
5392 * @see https://developer.mozilla.org/docs/Web/CSS/border
5393 */
5394 border?: Property.Border<TLength> | undefined;
5395 /**
5396 * 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.
5397 *
5398 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
5399 *
5400 * | Chrome | Firefox | Safari | Edge | IE |
5401 * | :----: | :-----: | :------: | :--: | :-: |
5402 * | **87** | **66** | **14.1** | n/a | No |
5403 *
5404 * @see https://developer.mozilla.org/docs/Web/CSS/border-block
5405 */
5406 borderBlock?: Property.BorderBlock<TLength> | undefined;
5407 /**
5408 * 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.
5409 *
5410 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
5411 *
5412 * | Chrome | Firefox | Safari | Edge | IE |
5413 * | :----: | :-----: | :------: | :--: | :-: |
5414 * | **69** | **41** | **12.1** | n/a | No |
5415 *
5416 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end
5417 */
5418 borderBlockEnd?: Property.BorderBlockEnd<TLength> | undefined;
5419 /**
5420 * 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.
5421 *
5422 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
5423 *
5424 * | Chrome | Firefox | Safari | Edge | IE |
5425 * | :----: | :-----: | :------: | :--: | :-: |
5426 * | **69** | **41** | **12.1** | n/a | No |
5427 *
5428 * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start
5429 */
5430 borderBlockStart?: Property.BorderBlockStart<TLength> | undefined;
5431 /**
5432 * 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`.
5433 *
5434 * **Syntax**: `<line-width> || <line-style> || <color>`
5435 *
5436 * | Chrome | Firefox | Safari | Edge | IE |
5437 * | :----: | :-----: | :----: | :----: | :---: |
5438 * | **1** | **1** | **1** | **12** | **4** |
5439 *
5440 * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom
5441 */
5442 borderBottom?: Property.BorderBottom<TLength> | undefined;
5443 /**
5444 * The **`border-color`** shorthand CSS property sets the color of an element's border.
5445 *
5446 * **Syntax**: `<color>{1,4}`
5447 *
5448 * | Chrome | Firefox | Safari | Edge | IE |
5449 * | :----: | :-----: | :----: | :----: | :---: |
5450 * | **1** | **1** | **1** | **12** | **4** |
5451 *
5452 * @see https://developer.mozilla.org/docs/Web/CSS/border-color
5453 */
5454 borderColor?: Property.BorderColor | undefined;
5455 /**
5456 * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
5457 *
5458 * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
5459 *
5460 * | Chrome | Firefox | Safari | Edge | IE |
5461 * | :-----: | :-------: | :-----: | :----: | :----: |
5462 * | **16** | **15** | **6** | **12** | **11** |
5463 * | 7 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | |
5464 *
5465 * @see https://developer.mozilla.org/docs/Web/CSS/border-image
5466 */
5467 borderImage?: Property.BorderImage | undefined;
5468 /**
5469 * 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.
5470 *
5471 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
5472 *
5473 * | Chrome | Firefox | Safari | Edge | IE |
5474 * | :----: | :-----: | :------: | :--: | :-: |
5475 * | **87** | **66** | **14.1** | n/a | No |
5476 *
5477 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline
5478 */
5479 borderInline?: Property.BorderInline<TLength> | undefined;
5480 /**
5481 * 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.
5482 *
5483 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
5484 *
5485 * | Chrome | Firefox | Safari | Edge | IE |
5486 * | :----: | :-----: | :------: | :--: | :-: |
5487 * | **69** | **41** | **12.1** | n/a | No |
5488 *
5489 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end
5490 */
5491 borderInlineEnd?: Property.BorderInlineEnd<TLength> | undefined;
5492 /**
5493 * 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.
5494 *
5495 * **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
5496 *
5497 * | Chrome | Firefox | Safari | Edge | IE |
5498 * | :----: | :-----: | :------: | :--: | :-: |
5499 * | **69** | **41** | **12.1** | n/a | No |
5500 *
5501 * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start
5502 */
5503 borderInlineStart?: Property.BorderInlineStart<TLength> | undefined;
5504 /**
5505 * The **`border-left`** shorthand CSS property sets all the properties of an element's left border.
5506 *
5507 * **Syntax**: `<line-width> || <line-style> || <color>`
5508 *
5509 * | Chrome | Firefox | Safari | Edge | IE |
5510 * | :----: | :-----: | :----: | :----: | :---: |
5511 * | **1** | **1** | **1** | **12** | **4** |
5512 *
5513 * @see https://developer.mozilla.org/docs/Web/CSS/border-left
5514 */
5515 borderLeft?: Property.BorderLeft<TLength> | undefined;
5516 /**
5517 * 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.
5518 *
5519 * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`
5520 *
5521 * | Chrome | Firefox | Safari | Edge | IE |
5522 * | :-----: | :-----: | :-----: | :----: | :---: |
5523 * | **4** | **4** | **5** | **12** | **9** |
5524 * | 1 _-x-_ | | 3 _-x-_ | | |
5525 *
5526 * @see https://developer.mozilla.org/docs/Web/CSS/border-radius
5527 */
5528 borderRadius?: Property.BorderRadius<TLength> | undefined;
5529 /**
5530 * The **`border-right`** shorthand CSS property sets all the properties of an element's right border.
5531 *
5532 * **Syntax**: `<line-width> || <line-style> || <color>`
5533 *
5534 * | Chrome | Firefox | Safari | Edge | IE |
5535 * | :----: | :-----: | :----: | :----: | :-----: |
5536 * | **1** | **1** | **1** | **12** | **5.5** |
5537 *
5538 * @see https://developer.mozilla.org/docs/Web/CSS/border-right
5539 */
5540 borderRight?: Property.BorderRight<TLength> | undefined;
5541 /**
5542 * The **`border-style`** shorthand CSS property sets the line style for all four sides of an element's border.
5543 *
5544 * **Syntax**: `<line-style>{1,4}`
5545 *
5546 * | Chrome | Firefox | Safari | Edge | IE |
5547 * | :----: | :-----: | :----: | :----: | :---: |
5548 * | **1** | **1** | **1** | **12** | **4** |
5549 *
5550 * @see https://developer.mozilla.org/docs/Web/CSS/border-style
5551 */
5552 borderStyle?: Property.BorderStyle | undefined;
5553 /**
5554 * The **`border-top`** shorthand CSS property sets all the properties of an element's top border.
5555 *
5556 * **Syntax**: `<line-width> || <line-style> || <color>`
5557 *
5558 * | Chrome | Firefox | Safari | Edge | IE |
5559 * | :----: | :-----: | :----: | :----: | :---: |
5560 * | **1** | **1** | **1** | **12** | **4** |
5561 *
5562 * @see https://developer.mozilla.org/docs/Web/CSS/border-top
5563 */
5564 borderTop?: Property.BorderTop<TLength> | undefined;
5565 /**
5566 * The **`border-width`** shorthand CSS property sets the width of an element's border.
5567 *
5568 * **Syntax**: `<line-width>{1,4}`
5569 *
5570 * | Chrome | Firefox | Safari | Edge | IE |
5571 * | :----: | :-----: | :----: | :----: | :---: |
5572 * | **1** | **1** | **1** | **12** | **4** |
5573 *
5574 * @see https://developer.mozilla.org/docs/Web/CSS/border-width
5575 */
5576 borderWidth?: Property.BorderWidth<TLength> | undefined;
5577 /** **Syntax**: `<'caret-color'> || <'caret-shape'>` */
5578 caret?: Property.Caret | undefined;
5579 /**
5580 * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
5581 *
5582 * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`
5583 *
5584 * | Chrome | Firefox | Safari | Edge | IE |
5585 * | :-----: | :-----: | :-----: | :----: | :----: |
5586 * | **50** | **52** | **9** | **12** | **10** |
5587 * | 1 _-x-_ | | 3 _-x-_ | | |
5588 *
5589 * @see https://developer.mozilla.org/docs/Web/CSS/column-rule
5590 */
5591 columnRule?: Property.ColumnRule<TLength> | undefined;
5592 /**
5593 * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
5594 *
5595 * **Syntax**: `<'column-width'> || <'column-count'>`
5596 *
5597 * | Chrome | Firefox | Safari | Edge | IE |
5598 * | :----: | :-----: | :-----: | :----: | :----: |
5599 * | **50** | **52** | **9** | **12** | **10** |
5600 * | | | 3 _-x-_ | | |
5601 *
5602 * @see https://developer.mozilla.org/docs/Web/CSS/columns
5603 */
5604 columns?: Property.Columns<TLength> | undefined;
5605 /**
5606 * The **`contain-intrinsic-size`** CSS shorthand property sets the size of an element that a browser will use for layout when the element is subject to size containment.
5607 *
5608 * **Syntax**: `[ auto? [ none | <length> ] ]{1,2}`
5609 *
5610 * | Chrome | Firefox | Safari | Edge | IE |
5611 * | :----: | :-----: | :----: | :--: | :-: |
5612 * | **83** | **107** | **17** | n/a | No |
5613 *
5614 * @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-size
5615 */
5616 containIntrinsicSize?: Property.ContainIntrinsicSize<TLength> | undefined;
5617 /**
5618 * The **container** shorthand CSS property establishes the element as a query container and specifies the name or name for the containment context used in a container query.
5619 *
5620 * **Syntax**: `<'container-name'> [ / <'container-type'> ]?`
5621 *
5622 * | Chrome | Firefox | Safari | Edge | IE |
5623 * | :-----: | :-----: | :----: | :--: | :-: |
5624 * | **105** | **110** | **16** | n/a | No |
5625 *
5626 * @see https://developer.mozilla.org/docs/Web/CSS/container
5627 */
5628 container?: Property.Container | undefined;
5629 /**
5630 * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
5631 *
5632 * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
5633 *
5634 * | Chrome | Firefox | Safari | Edge | IE |
5635 * | :------: | :-----: | :-----: | :----: | :------: |
5636 * | **29** | **20** | **9** | **12** | **11** |
5637 * | 21 _-x-_ | | 7 _-x-_ | | 10 _-x-_ |
5638 *
5639 * @see https://developer.mozilla.org/docs/Web/CSS/flex
5640 */
5641 flex?: Property.Flex<TLength> | undefined;
5642 /**
5643 * The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.
5644 *
5645 * **Syntax**: `<'flex-direction'> || <'flex-wrap'>`
5646 *
5647 * | Chrome | Firefox | Safari | Edge | IE |
5648 * | :------: | :-----: | :-----: | :----: | :----: |
5649 * | **29** | **28** | **9** | **12** | **11** |
5650 * | 21 _-x-_ | | 7 _-x-_ | | |
5651 *
5652 * @see https://developer.mozilla.org/docs/Web/CSS/flex-flow
5653 */
5654 flexFlow?: Property.FlexFlow | undefined;
5655 /**
5656 * 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.
5657 *
5658 * **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`
5659 *
5660 * | Chrome | Firefox | Safari | Edge | IE |
5661 * | :----: | :-----: | :----: | :----: | :---: |
5662 * | **1** | **1** | **1** | **12** | **3** |
5663 *
5664 * @see https://developer.mozilla.org/docs/Web/CSS/font
5665 */
5666 font?: Property.Font | undefined;
5667 /**
5668 * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`.
5669 *
5670 * **Syntax**: `<'row-gap'> <'column-gap'>?`
5671 *
5672 * | Chrome | Firefox | Safari | Edge | IE |
5673 * | :----: | :-----: | :------: | :----: | :-: |
5674 * | **57** | **52** | **10.1** | **16** | No |
5675 *
5676 * @see https://developer.mozilla.org/docs/Web/CSS/gap
5677 */
5678 gap?: Property.Gap<TLength> | undefined;
5679 /**
5680 * The **`grid`** CSS property is a shorthand property that sets all of the explicit and implicit grid properties in a single declaration.
5681 *
5682 * **Syntax**: `<'grid-template'> | <'grid-template-rows'> / [ auto-flow && dense? ] <'grid-auto-columns'>? | [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>`
5683 *
5684 * | Chrome | Firefox | Safari | Edge | IE |
5685 * | :----: | :-----: | :------: | :----: | :-: |
5686 * | **57** | **52** | **10.1** | **16** | No |
5687 *
5688 * @see https://developer.mozilla.org/docs/Web/CSS/grid
5689 */
5690 grid?: Property.Grid | undefined;
5691 /**
5692 * 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.
5693 *
5694 * **Syntax**: `<grid-line> [ / <grid-line> ]{0,3}`
5695 *
5696 * | Chrome | Firefox | Safari | Edge | IE |
5697 * | :----: | :-----: | :------: | :----: | :-: |
5698 * | **57** | **52** | **10.1** | **16** | No |
5699 *
5700 * @see https://developer.mozilla.org/docs/Web/CSS/grid-area
5701 */
5702 gridArea?: Property.GridArea | undefined;
5703 /**
5704 * 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.
5705 *
5706 * **Syntax**: `<grid-line> [ / <grid-line> ]?`
5707 *
5708 * | Chrome | Firefox | Safari | Edge | IE |
5709 * | :----: | :-----: | :------: | :----: | :-: |
5710 * | **57** | **52** | **10.1** | **16** | No |
5711 *
5712 * @see https://developer.mozilla.org/docs/Web/CSS/grid-column
5713 */
5714 gridColumn?: Property.GridColumn | undefined;
5715 /**
5716 * The **`grid-row`** CSS shorthand property specifies a grid item's size and location within a 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.
5717 *
5718 * **Syntax**: `<grid-line> [ / <grid-line> ]?`
5719 *
5720 * | Chrome | Firefox | Safari | Edge | IE |
5721 * | :----: | :-----: | :------: | :----: | :-: |
5722 * | **57** | **52** | **10.1** | **16** | No |
5723 *
5724 * @see https://developer.mozilla.org/docs/Web/CSS/grid-row
5725 */
5726 gridRow?: Property.GridRow | undefined;
5727 /**
5728 * The **`grid-template`** CSS property is a shorthand property for defining grid columns, grid rows, and grid areas.
5729 *
5730 * **Syntax**: `none | [ <'grid-template-rows'> / <'grid-template-columns'> ] | [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?`
5731 *
5732 * | Chrome | Firefox | Safari | Edge | IE |
5733 * | :----: | :-----: | :------: | :----: | :-: |
5734 * | **57** | **52** | **10.1** | **16** | No |
5735 *
5736 * @see https://developer.mozilla.org/docs/Web/CSS/grid-template
5737 */
5738 gridTemplate?: Property.GridTemplate | undefined;
5739 /**
5740 * 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.
5741 *
5742 * **Syntax**: `<'top'>{1,4}`
5743 *
5744 * | Chrome | Firefox | Safari | Edge | IE |
5745 * | :----: | :-----: | :------: | :--: | :-: |
5746 * | **87** | **66** | **14.1** | n/a | No |
5747 *
5748 * @see https://developer.mozilla.org/docs/Web/CSS/inset
5749 */
5750 inset?: Property.Inset<TLength> | undefined;
5751 /**
5752 * The **`inset-block`** CSS property defines the logical block start and end offsets of an element, 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`.
5753 *
5754 * **Syntax**: `<'top'>{1,2}`
5755 *
5756 * | Chrome | Firefox | Safari | Edge | IE |
5757 * | :----: | :-----: | :------: | :--: | :-: |
5758 * | **87** | **63** | **14.1** | n/a | No |
5759 *
5760 * @see https://developer.mozilla.org/docs/Web/CSS/inset-block
5761 */
5762 insetBlock?: Property.InsetBlock<TLength> | undefined;
5763 /**
5764 * 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`.
5765 *
5766 * **Syntax**: `<'top'>{1,2}`
5767 *
5768 * | Chrome | Firefox | Safari | Edge | IE |
5769 * | :----: | :-----: | :------: | :--: | :-: |
5770 * | **87** | **63** | **14.1** | n/a | No |
5771 *
5772 * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline
5773 */
5774 insetInline?: Property.InsetInline<TLength> | undefined;
5775 /**
5776 * **Syntax**: `none | <integer>`
5777 *
5778 * **Initial value**: `none`
5779 */
5780 lineClamp?: Property.LineClamp | undefined;
5781 /**
5782 * The **`list-style`** CSS shorthand property allows you to set all the list style properties at once.
5783 *
5784 * **Syntax**: `<'list-style-type'> || <'list-style-position'> || <'list-style-image'>`
5785 *
5786 * | Chrome | Firefox | Safari | Edge | IE |
5787 * | :----: | :-----: | :----: | :----: | :---: |
5788 * | **1** | **1** | **1** | **12** | **4** |
5789 *
5790 * @see https://developer.mozilla.org/docs/Web/CSS/list-style
5791 */
5792 listStyle?: Property.ListStyle | undefined;
5793 /**
5794 * The **`margin`** CSS shorthand property sets the margin area on all four sides of an element.
5795 *
5796 * **Syntax**: `[ <length> | <percentage> | auto ]{1,4}`
5797 *
5798 * | Chrome | Firefox | Safari | Edge | IE |
5799 * | :----: | :-----: | :----: | :----: | :---: |
5800 * | **1** | **1** | **1** | **12** | **3** |
5801 *
5802 * @see https://developer.mozilla.org/docs/Web/CSS/margin
5803 */
5804 margin?: Property.Margin<TLength> | undefined;
5805 /**
5806 * 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.
5807 *
5808 * **Syntax**: `<'margin-left'>{1,2}`
5809 *
5810 * | Chrome | Firefox | Safari | Edge | IE |
5811 * | :----: | :-----: | :------: | :--: | :-: |
5812 * | **87** | **66** | **14.1** | n/a | No |
5813 *
5814 * @see https://developer.mozilla.org/docs/Web/CSS/margin-block
5815 */
5816 marginBlock?: Property.MarginBlock<TLength> | undefined;
5817 /**
5818 * 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.
5819 *
5820 * **Syntax**: `<'margin-left'>{1,2}`
5821 *
5822 * | Chrome | Firefox | Safari | Edge | IE |
5823 * | :----: | :-----: | :------: | :--: | :-: |
5824 * | **87** | **66** | **14.1** | n/a | No |
5825 *
5826 * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
5827 */
5828 marginInline?: Property.MarginInline<TLength> | undefined;
5829 /**
5830 * The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.
5831 *
5832 * **Syntax**: `<mask-layer>#`
5833 *
5834 * | Chrome | Firefox | Safari | Edge | IE |
5835 * | :----: | :-----: | :-------: | :---: | :-: |
5836 * | **1** | **53** | **15.4** | 12-79 | No |
5837 * | | | 3.1 _-x-_ | | |
5838 *
5839 * @see https://developer.mozilla.org/docs/Web/CSS/mask
5840 */
5841 mask?: Property.Mask<TLength> | undefined;
5842 /**
5843 * The **`mask-border`** CSS shorthand property lets you create a mask along the edge of an element's border.
5844 *
5845 * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`
5846 *
5847 * | Chrome | Firefox | Safari | Edge | IE |
5848 * | :------------------------------: | :-----: | :----------------------------: | :--: | :-: |
5849 * | **1** _(-webkit-mask-box-image)_ | No | **17.2** | n/a | No |
5850 * | | | 3.1 _(-webkit-mask-box-image)_ | | |
5851 *
5852 * @see https://developer.mozilla.org/docs/Web/CSS/mask-border
5853 */
5854 maskBorder?: Property.MaskBorder | undefined;
5855 /**
5856 * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.
5857 *
5858 * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`
5859 *
5860 * | Chrome | Firefox | Safari | Edge | IE |
5861 * | :-----------: | :-----: | :----: | :--: | :-: |
5862 * | **55** | **72** | **16** | n/a | No |
5863 * | 46 _(motion)_ | | | | |
5864 *
5865 * @see https://developer.mozilla.org/docs/Web/CSS/offset
5866 */
5867 motion?: Property.Offset<TLength> | undefined;
5868 /**
5869 * The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path.
5870 *
5871 * **Syntax**: `[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?`
5872 *
5873 * | Chrome | Firefox | Safari | Edge | IE |
5874 * | :-----------: | :-----: | :----: | :--: | :-: |
5875 * | **55** | **72** | **16** | n/a | No |
5876 * | 46 _(motion)_ | | | | |
5877 *
5878 * @see https://developer.mozilla.org/docs/Web/CSS/offset
5879 */
5880 offset?: Property.Offset<TLength> | undefined;
5881 /**
5882 * The **`outline`** CSS shorthand property sets most of the outline properties in a single declaration.
5883 *
5884 * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`
5885 *
5886 * | Chrome | Firefox | Safari | Edge | IE |
5887 * | :----: | :-----: | :------: | :----: | :---: |
5888 * | **94** | **88** | **16.4** | **94** | **8** |
5889 *
5890 * @see https://developer.mozilla.org/docs/Web/CSS/outline
5891 */
5892 outline?: Property.Outline<TLength> | undefined;
5893 /**
5894 * 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.
5895 *
5896 * **Syntax**: `[ visible | hidden | clip | scroll | auto ]{1,2}`
5897 *
5898 * **Initial value**: `visible`
5899 *
5900 * | Chrome | Firefox | Safari | Edge | IE |
5901 * | :----: | :-----: | :----: | :----: | :---: |
5902 * | **1** | **1** | **1** | **12** | **4** |
5903 *
5904 * @see https://developer.mozilla.org/docs/Web/CSS/overflow
5905 */
5906 overflow?: Property.Overflow | undefined;
5907 /**
5908 * 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`.
5909 *
5910 * **Syntax**: `[ contain | none | auto ]{1,2}`
5911 *
5912 * **Initial value**: `auto`
5913 *
5914 * | Chrome | Firefox | Safari | Edge | IE |
5915 * | :----: | :-----: | :----: | :----: | :-: |
5916 * | **63** | **59** | **16** | **18** | No |
5917 *
5918 * @see https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior
5919 */
5920 overscrollBehavior?: Property.OverscrollBehavior | undefined;
5921 /**
5922 * The **`padding`** CSS shorthand property sets the padding area on all four sides of an element at once.
5923 *
5924 * **Syntax**: `[ <length> | <percentage> ]{1,4}`
5925 *
5926 * | Chrome | Firefox | Safari | Edge | IE |
5927 * | :----: | :-----: | :----: | :----: | :---: |
5928 * | **1** | **1** | **1** | **12** | **4** |
5929 *
5930 * @see https://developer.mozilla.org/docs/Web/CSS/padding
5931 */
5932 padding?: Property.Padding<TLength> | undefined;
5933 /**
5934 * 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.
5935 *
5936 * **Syntax**: `<'padding-left'>{1,2}`
5937 *
5938 * | Chrome | Firefox | Safari | Edge | IE |
5939 * | :----: | :-----: | :------: | :--: | :-: |
5940 * | **87** | **66** | **14.1** | n/a | No |
5941 *
5942 * @see https://developer.mozilla.org/docs/Web/CSS/padding-block
5943 */
5944 paddingBlock?: Property.PaddingBlock<TLength> | undefined;
5945 /**
5946 * 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.
5947 *
5948 * **Syntax**: `<'padding-left'>{1,2}`
5949 *
5950 * | Chrome | Firefox | Safari | Edge | IE |
5951 * | :----: | :-----: | :------: | :--: | :-: |
5952 * | **87** | **66** | **14.1** | n/a | No |
5953 *
5954 * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
5955 */
5956 paddingInline?: Property.PaddingInline<TLength> | undefined;
5957 /**
5958 * 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.
5959 *
5960 * **Syntax**: `<'align-content'> <'justify-content'>?`
5961 *
5962 * | Chrome | Firefox | Safari | Edge | IE |
5963 * | :----: | :-----: | :----: | :--: | :-: |
5964 * | **59** | **45** | **9** | n/a | No |
5965 *
5966 * @see https://developer.mozilla.org/docs/Web/CSS/place-content
5967 */
5968 placeContent?: Property.PlaceContent | undefined;
5969 /**
5970 * 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.
5971 *
5972 * **Syntax**: `<'align-items'> <'justify-items'>?`
5973 *
5974 * | Chrome | Firefox | Safari | Edge | IE |
5975 * | :----: | :-----: | :----: | :--: | :-: |
5976 * | **59** | **45** | **11** | n/a | No |
5977 *
5978 * @see https://developer.mozilla.org/docs/Web/CSS/place-items
5979 */
5980 placeItems?: Property.PlaceItems | undefined;
5981 /**
5982 * 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.
5983 *
5984 * **Syntax**: `<'align-self'> <'justify-self'>?`
5985 *
5986 * | Chrome | Firefox | Safari | Edge | IE |
5987 * | :----: | :-----: | :----: | :--: | :-: |
5988 * | **59** | **45** | **11** | n/a | No |
5989 *
5990 * @see https://developer.mozilla.org/docs/Web/CSS/place-self
5991 */
5992 placeSelf?: Property.PlaceSelf | undefined;
5993 /**
5994 * 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.
5995 *
5996 * **Syntax**: `<length>{1,4}`
5997 *
5998 * | Chrome | Firefox | Safari | Edge | IE |
5999 * | :----: | :-----: | :-----------------------: | :--: | :-: |
6000 * | **69** | **90** | **14.1** | n/a | No |
6001 * | | | 11 _(scroll-snap-margin)_ | | |
6002 *
6003 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
6004 */
6005 scrollMargin?: Property.ScrollMargin<TLength> | undefined;
6006 /**
6007 * The `scroll-margin-block` shorthand property sets the scroll margins of an element in the block dimension.
6008 *
6009 * **Syntax**: `<length>{1,2}`
6010 *
6011 * | Chrome | Firefox | Safari | Edge | IE |
6012 * | :----: | :-----: | :----: | :--: | :-: |
6013 * | **69** | **68** | **15** | n/a | No |
6014 *
6015 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
6016 */
6017 scrollMarginBlock?: Property.ScrollMarginBlock<TLength> | undefined;
6018 /**
6019 * The `scroll-margin-inline` shorthand property sets the scroll margins of an element in the inline dimension.
6020 *
6021 * **Syntax**: `<length>{1,2}`
6022 *
6023 * | Chrome | Firefox | Safari | Edge | IE |
6024 * | :----: | :-----: | :----: | :--: | :-: |
6025 * | **69** | **68** | **15** | n/a | No |
6026 *
6027 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
6028 */
6029 scrollMarginInline?: Property.ScrollMarginInline<TLength> | undefined;
6030 /**
6031 * 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.
6032 *
6033 * **Syntax**: `[ auto | <length-percentage> ]{1,4}`
6034 *
6035 * | Chrome | Firefox | Safari | Edge | IE |
6036 * | :----: | :-----: | :------: | :--: | :-: |
6037 * | **69** | **68** | **14.1** | n/a | No |
6038 *
6039 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding
6040 */
6041 scrollPadding?: Property.ScrollPadding<TLength> | undefined;
6042 /**
6043 * The `scroll-padding-block` shorthand property sets the scroll padding of an element in the block dimension.
6044 *
6045 * **Syntax**: `[ auto | <length-percentage> ]{1,2}`
6046 *
6047 * | Chrome | Firefox | Safari | Edge | IE |
6048 * | :----: | :-----: | :----: | :--: | :-: |
6049 * | **69** | **68** | **15** | n/a | No |
6050 *
6051 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block
6052 */
6053 scrollPaddingBlock?: Property.ScrollPaddingBlock<TLength> | undefined;
6054 /**
6055 * The `scroll-padding-inline` shorthand property sets the scroll padding of an element in the inline dimension.
6056 *
6057 * **Syntax**: `[ auto | <length-percentage> ]{1,2}`
6058 *
6059 * | Chrome | Firefox | Safari | Edge | IE |
6060 * | :----: | :-----: | :----: | :--: | :-: |
6061 * | **69** | **68** | **15** | n/a | No |
6062 *
6063 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline
6064 */
6065 scrollPaddingInline?: Property.ScrollPaddingInline<TLength> | undefined;
6066 /**
6067 * 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.
6068 *
6069 * **Syntax**: `<length>{1,4}`
6070 *
6071 * | Chrome | Firefox | Safari | Edge | IE |
6072 * | :----: | :-----: | :-----------------------: | :--: | :-: |
6073 * | **69** | 68-90 | **14.1** | n/a | No |
6074 * | | | 11 _(scroll-snap-margin)_ | | |
6075 *
6076 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
6077 */
6078 scrollSnapMargin?: Property.ScrollMargin<TLength> | undefined;
6079 /**
6080 * The **`scroll-timeline`** CSS shorthand property defines a name that can be used to identify the source element of a scroll timeline, along with the scrollbar axis that should provide the timeline.
6081 *
6082 * **Syntax**: `[ <'scroll-timeline-name'> <'scroll-timeline-axis'>? ]#`
6083 *
6084 * | Chrome | Firefox | Safari | Edge | IE |
6085 * | :-----: | :-----: | :----: | :--: | :-: |
6086 * | **115** | n/a | No | n/a | No |
6087 *
6088 * @see https://developer.mozilla.org/docs/Web/CSS/scroll-timeline
6089 */
6090 scrollTimeline?: Property.ScrollTimeline | undefined;
6091 /**
6092 * 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.
6093 *
6094 * **Syntax**: `<'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-thickness'>`
6095 *
6096 * | Chrome | Firefox | Safari | Edge | IE |
6097 * | :----: | :-----: | :----: | :----: | :---: |
6098 * | **1** | **1** | **1** | **12** | **3** |
6099 *
6100 * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration
6101 */
6102 textDecoration?: Property.TextDecoration<TLength> | undefined;
6103 /**
6104 * 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`.
6105 *
6106 * **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`
6107 *
6108 * | Chrome | Firefox | Safari | Edge | IE |
6109 * | :------: | :-----: | :----: | :--: | :-: |
6110 * | **99** | **46** | **7** | n/a | No |
6111 * | 25 _-x-_ | | | | |
6112 *
6113 * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis
6114 */
6115 textEmphasis?: Property.TextEmphasis | undefined;
6116 /**
6117 * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
6118 *
6119 * **Syntax**: `<single-transition>#`
6120 *
6121 * | Chrome | Firefox | Safari | Edge | IE |
6122 * | :-----: | :-----: | :-------: | :----: | :----: |
6123 * | **26** | **16** | **9** | **12** | **10** |
6124 * | 1 _-x-_ | | 3.1 _-x-_ | | |
6125 *
6126 * @see https://developer.mozilla.org/docs/Web/CSS/transition
6127 */
6128 transition?: Property.Transition<TTime> | undefined;
6129 /**
6130 * The **`view-timeline`** CSS shorthand property is used to define a _named view progress timeline_, which is progressed through based on the change in visibility of an element (known as the _subject_) inside a scrollable element (_scroller_). `view-timeline` is set on the subject.
6131 *
6132 * **Syntax**: `[ <'view-timeline-name'> <'view-timeline-axis'>? ]#`
6133 *
6134 * | Chrome | Firefox | Safari | Edge | IE |
6135 * | :-----: | :-----: | :----: | :--: | :-: |
6136 * | **115** | n/a | No | n/a | No |
6137 *
6138 * @see https://developer.mozilla.org/docs/Web/CSS/view-timeline
6139 */
6140 viewTimeline?: Property.ViewTimeline | undefined;
6141}
6142
6143interface VendorLonghandProperties<TLength = (string & {}) | 0, TTime = string & {}> {
6144 /**
6145 * 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.
6146 *
6147 * **Syntax**: `<time>#`
6148 *
6149 * **Initial value**: `0s`
6150 */
6151 MozAnimationDelay?: Property.AnimationDelay<TTime> | undefined;
6152 /**
6153 * 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.
6154 *
6155 * **Syntax**: `<single-animation-direction>#`
6156 *
6157 * **Initial value**: `normal`
6158 */
6159 MozAnimationDirection?: Property.AnimationDirection | undefined;
6160 /**
6161 * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
6162 *
6163 * **Syntax**: `<time>#`
6164 *
6165 * **Initial value**: `0s`
6166 */
6167 MozAnimationDuration?: Property.AnimationDuration<TTime> | undefined;
6168 /**
6169 * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
6170 *
6171 * **Syntax**: `<single-animation-fill-mode>#`
6172 *
6173 * **Initial value**: `none`
6174 */
6175 MozAnimationFillMode?: Property.AnimationFillMode | undefined;
6176 /**
6177 * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
6178 *
6179 * **Syntax**: `<single-animation-iteration-count>#`
6180 *
6181 * **Initial value**: `1`
6182 */
6183 MozAnimationIterationCount?: Property.AnimationIterationCount | undefined;
6184 /**
6185 * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules that describe the animation to apply to an element. Multiple `@keyframe` at-rules are specified as a comma-separated list of names. If the specified name does not match any `@keyframe` at-rule, no properties are animated.
6186 *
6187 * **Syntax**: `[ none | <keyframes-name> ]#`
6188 *
6189 * **Initial value**: `none`
6190 */
6191 MozAnimationName?: Property.AnimationName | undefined;
6192 /**
6193 * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
6194 *
6195 * **Syntax**: `<single-animation-play-state>#`
6196 *
6197 * **Initial value**: `running`
6198 */
6199 MozAnimationPlayState?: Property.AnimationPlayState | undefined;
6200 /**
6201 * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
6202 *
6203 * **Syntax**: `<easing-function>#`
6204 *
6205 * **Initial value**: `ease`
6206 */
6207 MozAnimationTimingFunction?: Property.AnimationTimingFunction | undefined;
6208 /**
6209 * The **`appearance`** CSS property is used to control native appearance of UI controls, that are based on operating system's theme.
6210 *
6211 * **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`
6212 *
6213 * **Initial value**: `none` (but this value is overridden in the user agent CSS)
6214 */
6215 MozAppearance?: Property.MozAppearance | undefined;
6216 /**
6217 * The **`-moz-binding`** CSS property is used by Mozilla-based applications to attach an XBL binding to a DOM element.
6218 *
6219 * **Syntax**: `<url> | none`
6220 *
6221 * **Initial value**: `none`
6222 */
6223 MozBinding?: Property.MozBinding | undefined;
6224 /**
6225 * In Mozilla applications like Firefox, the **`-moz-border-bottom-colors`** CSS property sets a list of colors for the bottom border.
6226 *
6227 * **Syntax**: `<color>+ | none`
6228 *
6229 * **Initial value**: `none`
6230 */
6231 MozBorderBottomColors?: Property.MozBorderBottomColors | undefined;
6232 /**
6233 * 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`.
6234 *
6235 * **Syntax**: `<'border-top-color'>`
6236 *
6237 * **Initial value**: `currentcolor`
6238 */
6239 MozBorderEndColor?: Property.BorderInlineEndColor | undefined;
6240 /**
6241 * 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`.
6242 *
6243 * **Syntax**: `<'border-top-style'>`
6244 *
6245 * **Initial value**: `none`
6246 */
6247 MozBorderEndStyle?: Property.BorderInlineEndStyle | undefined;
6248 /**
6249 * 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`.
6250 *
6251 * **Syntax**: `<'border-top-width'>`
6252 *
6253 * **Initial value**: `medium`
6254 */
6255 MozBorderEndWidth?: Property.BorderInlineEndWidth<TLength> | undefined;
6256 /**
6257 * In Mozilla applications like Firefox, the **`-moz-border-left-colors`** CSS property sets a list of colors for the left border.
6258 *
6259 * **Syntax**: `<color>+ | none`
6260 *
6261 * **Initial value**: `none`
6262 */
6263 MozBorderLeftColors?: Property.MozBorderLeftColors | undefined;
6264 /**
6265 * In Mozilla applications like Firefox, the **`-moz-border-right-colors`** CSS property sets a list of colors for the right border.
6266 *
6267 * **Syntax**: `<color>+ | none`
6268 *
6269 * **Initial value**: `none`
6270 */
6271 MozBorderRightColors?: Property.MozBorderRightColors | undefined;
6272 /**
6273 * 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`.
6274 *
6275 * **Syntax**: `<'border-top-color'>`
6276 *
6277 * **Initial value**: `currentcolor`
6278 */
6279 MozBorderStartColor?: Property.BorderInlineStartColor | undefined;
6280 /**
6281 * 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`.
6282 *
6283 * **Syntax**: `<'border-top-style'>`
6284 *
6285 * **Initial value**: `none`
6286 */
6287 MozBorderStartStyle?: Property.BorderInlineStartStyle | undefined;
6288 /**
6289 * In Mozilla applications like Firefox, the **`-moz-border-top-colors`** CSS property sets a list of colors for the top border.
6290 *
6291 * **Syntax**: `<color>+ | none`
6292 *
6293 * **Initial value**: `none`
6294 */
6295 MozBorderTopColors?: Property.MozBorderTopColors | undefined;
6296 /**
6297 * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
6298 *
6299 * **Syntax**: `content-box | border-box`
6300 *
6301 * **Initial value**: `content-box`
6302 */
6303 MozBoxSizing?: Property.BoxSizing | undefined;
6304 /**
6305 * The **`column-count`** CSS property breaks an element's content into the specified number of columns.
6306 *
6307 * **Syntax**: `<integer> | auto`
6308 *
6309 * **Initial value**: `auto`
6310 */
6311 MozColumnCount?: Property.ColumnCount | undefined;
6312 /**
6313 * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.
6314 *
6315 * **Syntax**: `auto | balance | balance-all`
6316 *
6317 * **Initial value**: `balance`
6318 */
6319 MozColumnFill?: Property.ColumnFill | undefined;
6320 /**
6321 * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.
6322 *
6323 * **Syntax**: `<color>`
6324 *
6325 * **Initial value**: `currentcolor`
6326 */
6327 MozColumnRuleColor?: Property.ColumnRuleColor | undefined;
6328 /**
6329 * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.
6330 *
6331 * **Syntax**: `<'border-style'>`
6332 *
6333 * **Initial value**: `none`
6334 */
6335 MozColumnRuleStyle?: Property.ColumnRuleStyle | undefined;
6336 /**
6337 * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
6338 *
6339 * **Syntax**: `<'border-width'>`
6340 *
6341 * **Initial value**: `medium`
6342 */
6343 MozColumnRuleWidth?: Property.ColumnRuleWidth<TLength> | undefined;
6344 /**
6345 * 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.
6346 *
6347 * **Syntax**: `<length> | auto`
6348 *
6349 * **Initial value**: `auto`
6350 */
6351 MozColumnWidth?: Property.ColumnWidth<TLength> | undefined;
6352 /**
6353 * 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.
6354 *
6355 * **Syntax**: `none | [ fill | fill-opacity | stroke | stroke-opacity ]#`
6356 *
6357 * **Initial value**: `none`
6358 */
6359 MozContextProperties?: Property.MozContextProperties | undefined;
6360 /**
6361 * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
6362 *
6363 * **Syntax**: `normal | <feature-tag-value>#`
6364 *
6365 * **Initial value**: `normal`
6366 */
6367 MozFontFeatureSettings?: Property.FontFeatureSettings | undefined;
6368 /**
6369 * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface.
6370 *
6371 * **Syntax**: `normal | <string>`
6372 *
6373 * **Initial value**: `normal`
6374 */
6375 MozFontLanguageOverride?: Property.FontLanguageOverride | undefined;
6376 /**
6377 * 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.
6378 *
6379 * **Syntax**: `none | manual | auto`
6380 *
6381 * **Initial value**: `manual`
6382 */
6383 MozHyphens?: Property.Hyphens | undefined;
6384 /**
6385 * 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.
6386 *
6387 * **Syntax**: `<shape> | auto`
6388 *
6389 * **Initial value**: `auto`
6390 */
6391 MozImageRegion?: Property.MozImageRegion | undefined;
6392 /**
6393 * 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`.
6394 *
6395 * **Syntax**: `<'margin-left'>`
6396 *
6397 * **Initial value**: `0`
6398 */
6399 MozMarginEnd?: Property.MarginInlineEnd<TLength> | undefined;
6400 /**
6401 * 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`.
6402 *
6403 * **Syntax**: `<'margin-left'>`
6404 *
6405 * **Initial value**: `0`
6406 */
6407 MozMarginStart?: Property.MarginInlineStart<TLength> | undefined;
6408 /**
6409 * The **`-moz-orient`** CSS property specifies the orientation of the element to which it's applied.
6410 *
6411 * **Syntax**: `inline | block | horizontal | vertical`
6412 *
6413 * **Initial value**: `inline`
6414 */
6415 MozOrient?: Property.MozOrient | undefined;
6416 /**
6417 * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.
6418 *
6419 * **Syntax**: `auto | never | always | <absolute-size> | <length>`
6420 *
6421 * **Initial value**: `auto`
6422 */
6423 MozOsxFontSmoothing?: Property.FontSmooth<TLength> | undefined;
6424 /**
6425 * In Mozilla applications, the **`-moz-outline-radius-bottomleft`** CSS property can be used to round the bottom-left corner of an element's `outline`.
6426 *
6427 * **Syntax**: `<outline-radius>`
6428 *
6429 * **Initial value**: `0`
6430 */
6431 MozOutlineRadiusBottomleft?: Property.MozOutlineRadiusBottomleft<TLength> | undefined;
6432 /**
6433 * In Mozilla applications, the **`-moz-outline-radius-bottomright`** CSS property can be used to round the bottom-right corner of an element's `outline`.
6434 *
6435 * **Syntax**: `<outline-radius>`
6436 *
6437 * **Initial value**: `0`
6438 */
6439 MozOutlineRadiusBottomright?: Property.MozOutlineRadiusBottomright<TLength> | undefined;
6440 /**
6441 * In Mozilla applications, the **`-moz-outline-radius-topleft`** CSS property can be used to round the top-left corner of an element's `outline`.
6442 *
6443 * **Syntax**: `<outline-radius>`
6444 *
6445 * **Initial value**: `0`
6446 */
6447 MozOutlineRadiusTopleft?: Property.MozOutlineRadiusTopleft<TLength> | undefined;
6448 /**
6449 * In Mozilla applications, the **`-moz-outline-radius-topright`** CSS property can be used to round the top-right corner of an element's `outline`.
6450 *
6451 * **Syntax**: `<outline-radius>`
6452 *
6453 * **Initial value**: `0`
6454 */
6455 MozOutlineRadiusTopright?: Property.MozOutlineRadiusTopright<TLength> | undefined;
6456 /**
6457 * 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.
6458 *
6459 * **Syntax**: `<'padding-left'>`
6460 *
6461 * **Initial value**: `0`
6462 */
6463 MozPaddingEnd?: Property.PaddingInlineEnd<TLength> | undefined;
6464 /**
6465 * 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.
6466 *
6467 * **Syntax**: `<'padding-left'>`
6468 *
6469 * **Initial value**: `0`
6470 */
6471 MozPaddingStart?: Property.PaddingInlineStart<TLength> | undefined;
6472 /**
6473 * **`-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.
6474 *
6475 * **Syntax**: `ignore | stretch-to-fit`
6476 *
6477 * **Initial value**: `stretch-to-fit`
6478 */
6479 MozStackSizing?: Property.MozStackSizing | undefined;
6480 /**
6481 * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
6482 *
6483 * **Syntax**: `<integer> | <length>`
6484 *
6485 * **Initial value**: `8`
6486 */
6487 MozTabSize?: Property.TabSize<TLength> | undefined;
6488 /**
6489 * The **`-moz-text-blink`** non-standard Mozilla CSS extension specifies the blink mode.
6490 *
6491 * **Syntax**: `none | blink`
6492 *
6493 * **Initial value**: `none`
6494 */
6495 MozTextBlink?: Property.MozTextBlink | undefined;
6496 /**
6497 * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
6498 *
6499 * **Syntax**: `none | auto | <percentage>`
6500 *
6501 * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
6502 */
6503 MozTextSizeAdjust?: Property.TextSizeAdjust | undefined;
6504 /**
6505 * The **`-moz-user-focus`** CSS property is used to indicate whether an element can have the focus.
6506 *
6507 * **Syntax**: `ignore | normal | select-after | select-before | select-menu | select-same | select-all | none`
6508 *
6509 * **Initial value**: `none`
6510 */
6511 MozUserFocus?: Property.MozUserFocus | undefined;
6512 /**
6513 * 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.
6514 *
6515 * **Syntax**: `read-only | read-write | write-only`
6516 *
6517 * **Initial value**: `read-only`
6518 */
6519 MozUserModify?: Property.MozUserModify | undefined;
6520 /**
6521 * The **`user-select`** CSS property controls whether the user can select text. This doesn't have any effect on content loaded as part of a browser's user interface (its chrome), except in textboxes.
6522 *
6523 * **Syntax**: `auto | text | none | contain | all`
6524 *
6525 * **Initial value**: `auto`
6526 */
6527 MozUserSelect?: Property.UserSelect | undefined;
6528 /**
6529 * 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.
6530 *
6531 * **Syntax**: `drag | no-drag`
6532 *
6533 * **Initial value**: `drag`
6534 */
6535 MozWindowDragging?: Property.MozWindowDragging | undefined;
6536 /**
6537 * The **`-moz-window-shadow`** CSS property specifies whether a window will have a shadow. It only works on Mac OS X.
6538 *
6539 * **Syntax**: `default | menu | tooltip | sheet | none`
6540 *
6541 * **Initial value**: `default`
6542 */
6543 MozWindowShadow?: Property.MozWindowShadow | undefined;
6544 /**
6545 * The **`-ms-accelerator`** CSS property is a Microsoft extension that sets or retrieves a string indicating whether the object represents a keyboard shortcut.
6546 *
6547 * **Syntax**: `false | true`
6548 *
6549 * **Initial value**: `false`
6550 */
6551 msAccelerator?: Property.MsAccelerator | undefined;
6552 /**
6553 * The **`-ms-block-progression`** CSS property is a Microsoft extension that specifies the block progression and layout orientation.
6554 *
6555 * **Syntax**: `tb | rl | bt | lr`
6556 *
6557 * **Initial value**: `tb`
6558 */
6559 msBlockProgression?: Property.MsBlockProgression | undefined;
6560 /**
6561 * 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.
6562 *
6563 * **Syntax**: `none | chained`
6564 *
6565 * **Initial value**: `none`
6566 */
6567 msContentZoomChaining?: Property.MsContentZoomChaining | undefined;
6568 /**
6569 * The **`-ms-content-zoom-limit-max`** CSS property is a Microsoft extension that specifies the selected elements' maximum zoom factor.
6570 *
6571 * **Syntax**: `<percentage>`
6572 *
6573 * **Initial value**: `400%`
6574 */
6575 msContentZoomLimitMax?: Property.MsContentZoomLimitMax | undefined;
6576 /**
6577 * The **`-ms-content-zoom-limit-min`** CSS property is a Microsoft extension that specifies the minimum zoom factor.
6578 *
6579 * **Syntax**: `<percentage>`
6580 *
6581 * **Initial value**: `100%`
6582 */
6583 msContentZoomLimitMin?: Property.MsContentZoomLimitMin | undefined;
6584 /**
6585 * The **`-ms-content-zoom-snap-points`** CSS property is a Microsoft extension that specifies where zoom snap-points are located.
6586 *
6587 * **Syntax**: `snapInterval( <percentage>, <percentage> ) | snapList( <percentage># )`
6588 *
6589 * **Initial value**: `snapInterval(0%, 100%)`
6590 */
6591 msContentZoomSnapPoints?: Property.MsContentZoomSnapPoints | undefined;
6592 /**
6593 * The **`-ms-content-zoom-snap-type`** CSS property is a Microsoft extension that specifies how zooming is affected by defined snap-points.
6594 *
6595 * **Syntax**: `none | proximity | mandatory`
6596 *
6597 * **Initial value**: `none`
6598 */
6599 msContentZoomSnapType?: Property.MsContentZoomSnapType | undefined;
6600 /**
6601 * The **`-ms-content-zooming`** CSS property is a Microsoft extension that specifies whether zooming is enabled.
6602 *
6603 * **Syntax**: `none | zoom`
6604 *
6605 * **Initial value**: zoom for the top level element, none for all other elements
6606 */
6607 msContentZooming?: Property.MsContentZooming | undefined;
6608 /**
6609 * The `-ms-filter` CSS property is a Microsoft extension that sets or retrieves the filter or collection of filters applied to an object.
6610 *
6611 * **Syntax**: `<string>`
6612 *
6613 * **Initial value**: "" (the empty string)
6614 */
6615 msFilter?: Property.MsFilter | undefined;
6616 /**
6617 * 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).
6618 *
6619 * **Syntax**: `row | row-reverse | column | column-reverse`
6620 *
6621 * **Initial value**: `row`
6622 */
6623 msFlexDirection?: Property.FlexDirection | undefined;
6624 /**
6625 * The **`flex-grow`** CSS property sets the flex grow factor of a flex item's main size.
6626 *
6627 * **Syntax**: `<number>`
6628 *
6629 * **Initial value**: `0`
6630 */
6631 msFlexPositive?: Property.FlexGrow | undefined;
6632 /**
6633 * 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.
6634 *
6635 * **Syntax**: `[ none | <custom-ident> ]#`
6636 *
6637 * **Initial value**: `none`
6638 */
6639 msFlowFrom?: Property.MsFlowFrom | undefined;
6640 /**
6641 * 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.
6642 *
6643 * **Syntax**: `[ none | <custom-ident> ]#`
6644 *
6645 * **Initial value**: `none`
6646 */
6647 msFlowInto?: Property.MsFlowInto | undefined;
6648 /**
6649 * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.
6650 *
6651 * **Syntax**: `none | <track-list> | <auto-track-list>`
6652 *
6653 * **Initial value**: `none`
6654 */
6655 msGridColumns?: Property.MsGridColumns<TLength> | undefined;
6656 /**
6657 * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.
6658 *
6659 * **Syntax**: `none | <track-list> | <auto-track-list>`
6660 *
6661 * **Initial value**: `none`
6662 */
6663 msGridRows?: Property.MsGridRows<TLength> | undefined;
6664 /**
6665 * 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.
6666 *
6667 * **Syntax**: `auto | none`
6668 *
6669 * **Initial value**: `auto`
6670 */
6671 msHighContrastAdjust?: Property.MsHighContrastAdjust | undefined;
6672 /**
6673 * 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.
6674 *
6675 * **Syntax**: `auto | <integer>{1,3}`
6676 *
6677 * **Initial value**: `auto`
6678 */
6679 msHyphenateLimitChars?: Property.MsHyphenateLimitChars | undefined;
6680 /**
6681 * 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.
6682 *
6683 * **Syntax**: `no-limit | <integer>`
6684 *
6685 * **Initial value**: `no-limit`
6686 */
6687 msHyphenateLimitLines?: Property.MsHyphenateLimitLines | undefined;
6688 /**
6689 * The `**-ms-hyphenate-limit-zone**` CSS property is a Microsoft extension specifying the width of the hyphenation zone.
6690 *
6691 * **Syntax**: `<percentage> | <length>`
6692 *
6693 * **Initial value**: `0`
6694 */
6695 msHyphenateLimitZone?: Property.MsHyphenateLimitZone<TLength> | undefined;
6696 /**
6697 * 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.
6698 *
6699 * **Syntax**: `none | manual | auto`
6700 *
6701 * **Initial value**: `manual`
6702 */
6703 msHyphens?: Property.Hyphens | undefined;
6704 /**
6705 * 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.
6706 *
6707 * **Syntax**: `auto | after`
6708 *
6709 * **Initial value**: `auto`
6710 */
6711 msImeAlign?: Property.MsImeAlign | undefined;
6712 /**
6713 * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
6714 *
6715 * **Syntax**: `auto | loose | normal | strict | anywhere`
6716 *
6717 * **Initial value**: `auto`
6718 */
6719 msLineBreak?: Property.LineBreak | undefined;
6720 /**
6721 * 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.
6722 *
6723 * **Syntax**: `<integer>`
6724 *
6725 * **Initial value**: `0`
6726 */
6727 msOrder?: Property.Order | undefined;
6728 /**
6729 * The **`-ms-overflow-style`** CSS property is a Microsoft extension controlling the behavior of scrollbars when the content of an element overflows.
6730 *
6731 * **Syntax**: `auto | none | scrollbar | -ms-autohiding-scrollbar`
6732 *
6733 * **Initial value**: `auto`
6734 */
6735 msOverflowStyle?: Property.MsOverflowStyle | undefined;
6736 /**
6737 * 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.
6738 *
6739 * **Syntax**: `visible | hidden | clip | scroll | auto`
6740 *
6741 * **Initial value**: `visible`
6742 */
6743 msOverflowX?: Property.OverflowX | undefined;
6744 /**
6745 * 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.
6746 *
6747 * **Syntax**: `visible | hidden | clip | scroll | auto`
6748 *
6749 * **Initial value**: `visible`
6750 */
6751 msOverflowY?: Property.OverflowY | undefined;
6752 /**
6753 * 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.
6754 *
6755 * **Syntax**: `chained | none`
6756 *
6757 * **Initial value**: `chained`
6758 */
6759 msScrollChaining?: Property.MsScrollChaining | undefined;
6760 /**
6761 * The `**-ms-scroll-limit-x-max**` CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollLeft` property.
6762 *
6763 * **Syntax**: `auto | <length>`
6764 *
6765 * **Initial value**: `auto`
6766 */
6767 msScrollLimitXMax?: Property.MsScrollLimitXMax<TLength> | undefined;
6768 /**
6769 * The **`-ms-scroll-limit-x-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollLeft` property.
6770 *
6771 * **Syntax**: `<length>`
6772 *
6773 * **Initial value**: `0`
6774 */
6775 msScrollLimitXMin?: Property.MsScrollLimitXMin<TLength> | undefined;
6776 /**
6777 * The **`-ms-scroll-limit-y-max`** CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollTop` property.
6778 *
6779 * **Syntax**: `auto | <length>`
6780 *
6781 * **Initial value**: `auto`
6782 */
6783 msScrollLimitYMax?: Property.MsScrollLimitYMax<TLength> | undefined;
6784 /**
6785 * The **`-ms-scroll-limit-y-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollTop` property.
6786 *
6787 * **Syntax**: `<length>`
6788 *
6789 * **Initial value**: `0`
6790 */
6791 msScrollLimitYMin?: Property.MsScrollLimitYMin<TLength> | undefined;
6792 /**
6793 * The **`-ms-scroll-rails`** CSS property is a Microsoft extension that specifies whether scrolling locks to the primary axis of motion.
6794 *
6795 * **Syntax**: `none | railed`
6796 *
6797 * **Initial value**: `railed`
6798 */
6799 msScrollRails?: Property.MsScrollRails | undefined;
6800 /**
6801 * The **`-ms-scroll-snap-points-x`** CSS property is a Microsoft extension that specifies where snap-points will be located along the x-axis.
6802 *
6803 * **Syntax**: `snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )`
6804 *
6805 * **Initial value**: `snapInterval(0px, 100%)`
6806 */
6807 msScrollSnapPointsX?: Property.MsScrollSnapPointsX | undefined;
6808 /**
6809 * The **`-ms-scroll-snap-points-y`** CSS property is a Microsoft extension that specifies where snap-points will be located along the y-axis.
6810 *
6811 * **Syntax**: `snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )`
6812 *
6813 * **Initial value**: `snapInterval(0px, 100%)`
6814 */
6815 msScrollSnapPointsY?: Property.MsScrollSnapPointsY | undefined;
6816 /**
6817 * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.
6818 *
6819 * **Syntax**: `none | proximity | mandatory`
6820 *
6821 * **Initial value**: `none`
6822 */
6823 msScrollSnapType?: Property.MsScrollSnapType | undefined;
6824 /**
6825 * The **`-ms-scroll-translation`** CSS property is a Microsoft extension that specifies whether vertical-to-horizontal scroll wheel translation occurs on the specified element.
6826 *
6827 * **Syntax**: `none | vertical-to-horizontal`
6828 *
6829 * **Initial value**: `none`
6830 */
6831 msScrollTranslation?: Property.MsScrollTranslation | undefined;
6832 /**
6833 * 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.
6834 *
6835 * **Syntax**: `<color>`
6836 *
6837 * **Initial value**: depends on user agent
6838 */
6839 msScrollbar3dlightColor?: Property.MsScrollbar3dlightColor | undefined;
6840 /**
6841 * The **`-ms-scrollbar-arrow-color`** CSS property is a Microsoft extension that specifies the color of the arrow elements of a scroll arrow.
6842 *
6843 * **Syntax**: `<color>`
6844 *
6845 * **Initial value**: `ButtonText`
6846 */
6847 msScrollbarArrowColor?: Property.MsScrollbarArrowColor | undefined;
6848 /**
6849 * The `**-ms-scrollbar-base-color**` CSS property is a Microsoft extension that specifies the base color of the main elements of a scroll bar.
6850 *
6851 * **Syntax**: `<color>`
6852 *
6853 * **Initial value**: depends on user agent
6854 */
6855 msScrollbarBaseColor?: Property.MsScrollbarBaseColor | undefined;
6856 /**
6857 * The **`-ms-scrollbar-darkshadow-color`** CSS property is a Microsoft extension that specifies the color of a scroll bar's gutter.
6858 *
6859 * **Syntax**: `<color>`
6860 *
6861 * **Initial value**: `ThreeDDarkShadow`
6862 */
6863 msScrollbarDarkshadowColor?: Property.MsScrollbarDarkshadowColor | undefined;
6864 /**
6865 * 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.
6866 *
6867 * **Syntax**: `<color>`
6868 *
6869 * **Initial value**: `ThreeDFace`
6870 */
6871 msScrollbarFaceColor?: Property.MsScrollbarFaceColor | undefined;
6872 /**
6873 * 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.
6874 *
6875 * **Syntax**: `<color>`
6876 *
6877 * **Initial value**: `ThreeDHighlight`
6878 */
6879 msScrollbarHighlightColor?: Property.MsScrollbarHighlightColor | undefined;
6880 /**
6881 * 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.
6882 *
6883 * **Syntax**: `<color>`
6884 *
6885 * **Initial value**: `ThreeDDarkShadow`
6886 */
6887 msScrollbarShadowColor?: Property.MsScrollbarShadowColor | undefined;
6888 /**
6889 * The **`-ms-scrollbar-track-color`** CSS property is a Microsoft extension that specifies the color of the track element of a scrollbar.
6890 *
6891 * **Syntax**: `<color>`
6892 *
6893 * **Initial value**: `Scrollbar`
6894 */
6895 msScrollbarTrackColor?: Property.MsScrollbarTrackColor | undefined;
6896 /**
6897 * The **`-ms-text-autospace`** CSS property is a Microsoft extension that specifies the autospacing and narrow space width adjustment of text.
6898 *
6899 * **Syntax**: `none | ideograph-alpha | ideograph-numeric | ideograph-parenthesis | ideograph-space`
6900 *
6901 * **Initial value**: `none`
6902 */
6903 msTextAutospace?: Property.MsTextAutospace | undefined;
6904 /**
6905 * 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.
6906 *
6907 * **Syntax**: `none | all | [ digits <integer>? ]`
6908 *
6909 * **Initial value**: `none`
6910 */
6911 msTextCombineHorizontal?: Property.TextCombineUpright | undefined;
6912 /**
6913 * 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.
6914 *
6915 * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`
6916 *
6917 * **Initial value**: `clip`
6918 */
6919 msTextOverflow?: Property.TextOverflow | undefined;
6920 /**
6921 * 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).
6922 *
6923 * **Syntax**: `auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation`
6924 *
6925 * **Initial value**: `auto`
6926 */
6927 msTouchAction?: Property.TouchAction | undefined;
6928 /**
6929 * The **`-ms-touch-select`** CSS property is a Microsoft extension that toggles the gripper visual elements that enable touch text selection.
6930 *
6931 * **Syntax**: `grippers | none`
6932 *
6933 * **Initial value**: `grippers`
6934 */
6935 msTouchSelect?: Property.MsTouchSelect | undefined;
6936 /**
6937 * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
6938 *
6939 * **Syntax**: `none | <transform-list>`
6940 *
6941 * **Initial value**: `none`
6942 */
6943 msTransform?: Property.Transform | undefined;
6944 /**
6945 * The **`transform-origin`** CSS property sets the origin for an element's transformations.
6946 *
6947 * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
6948 *
6949 * **Initial value**: `50% 50% 0`
6950 */
6951 msTransformOrigin?: Property.TransformOrigin<TLength> | undefined;
6952 /**
6953 * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
6954 *
6955 * **Syntax**: `<time>#`
6956 *
6957 * **Initial value**: `0s`
6958 */
6959 msTransitionDelay?: Property.TransitionDelay<TTime> | undefined;
6960 /**
6961 * 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.
6962 *
6963 * **Syntax**: `<time>#`
6964 *
6965 * **Initial value**: `0s`
6966 */
6967 msTransitionDuration?: Property.TransitionDuration<TTime> | undefined;
6968 /**
6969 * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
6970 *
6971 * **Syntax**: `none | <single-transition-property>#`
6972 *
6973 * **Initial value**: all
6974 */
6975 msTransitionProperty?: Property.TransitionProperty | undefined;
6976 /**
6977 * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
6978 *
6979 * **Syntax**: `<easing-function>#`
6980 *
6981 * **Initial value**: `ease`
6982 */
6983 msTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
6984 /**
6985 * The **`user-select`** CSS property controls whether the user can select text. This doesn't have any effect on content loaded as part of a browser's user interface (its chrome), except in textboxes.
6986 *
6987 * **Syntax**: `none | element | text`
6988 *
6989 * **Initial value**: `text`
6990 */
6991 msUserSelect?: Property.MsUserSelect | undefined;
6992 /**
6993 * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box.
6994 *
6995 * **Syntax**: `normal | break-all | keep-all | break-word`
6996 *
6997 * **Initial value**: `normal`
6998 */
6999 msWordBreak?: Property.WordBreak | undefined;
7000 /**
7001 * The **`-ms-wrap-flow`** CSS property is a Microsoft extension that specifies how exclusions impact inline content within block-level elements.
7002 *
7003 * **Syntax**: `auto | both | start | end | maximum | clear`
7004 *
7005 * **Initial value**: `auto`
7006 */
7007 msWrapFlow?: Property.MsWrapFlow | undefined;
7008 /**
7009 * The **`-ms-wrap-margin`** CSS property is a Microsoft extension that specifies a margin that offsets the inner wrap shape from other shapes.
7010 *
7011 * **Syntax**: `<length>`
7012 *
7013 * **Initial value**: `0`
7014 */
7015 msWrapMargin?: Property.MsWrapMargin<TLength> | undefined;
7016 /**
7017 * The **`-ms-wrap-through`** CSS property is a Microsoft extension that specifies how content should wrap around an exclusion element.
7018 *
7019 * **Syntax**: `wrap | none`
7020 *
7021 * **Initial value**: `wrap`
7022 */
7023 msWrapThrough?: Property.MsWrapThrough | undefined;
7024 /**
7025 * 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).
7026 *
7027 * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`
7028 *
7029 * **Initial value**: `horizontal-tb`
7030 */
7031 msWritingMode?: Property.WritingMode | undefined;
7032 /**
7033 * 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.
7034 *
7035 * **Syntax**: `normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>`
7036 *
7037 * **Initial value**: `normal`
7038 */
7039 WebkitAlignContent?: Property.AlignContent | undefined;
7040 /**
7041 * 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.
7042 *
7043 * **Syntax**: `normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]`
7044 *
7045 * **Initial value**: `normal`
7046 */
7047 WebkitAlignItems?: Property.AlignItems | undefined;
7048 /**
7049 * 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.
7050 *
7051 * **Syntax**: `auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>`
7052 *
7053 * **Initial value**: `auto`
7054 */
7055 WebkitAlignSelf?: Property.AlignSelf | undefined;
7056 /**
7057 * 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.
7058 *
7059 * **Syntax**: `<time>#`
7060 *
7061 * **Initial value**: `0s`
7062 */
7063 WebkitAnimationDelay?: Property.AnimationDelay<TTime> | undefined;
7064 /**
7065 * 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.
7066 *
7067 * **Syntax**: `<single-animation-direction>#`
7068 *
7069 * **Initial value**: `normal`
7070 */
7071 WebkitAnimationDirection?: Property.AnimationDirection | undefined;
7072 /**
7073 * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
7074 *
7075 * **Syntax**: `<time>#`
7076 *
7077 * **Initial value**: `0s`
7078 */
7079 WebkitAnimationDuration?: Property.AnimationDuration<TTime> | undefined;
7080 /**
7081 * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
7082 *
7083 * **Syntax**: `<single-animation-fill-mode>#`
7084 *
7085 * **Initial value**: `none`
7086 */
7087 WebkitAnimationFillMode?: Property.AnimationFillMode | undefined;
7088 /**
7089 * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
7090 *
7091 * **Syntax**: `<single-animation-iteration-count>#`
7092 *
7093 * **Initial value**: `1`
7094 */
7095 WebkitAnimationIterationCount?: Property.AnimationIterationCount | undefined;
7096 /**
7097 * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules that describe the animation to apply to an element. Multiple `@keyframe` at-rules are specified as a comma-separated list of names. If the specified name does not match any `@keyframe` at-rule, no properties are animated.
7098 *
7099 * **Syntax**: `[ none | <keyframes-name> ]#`
7100 *
7101 * **Initial value**: `none`
7102 */
7103 WebkitAnimationName?: Property.AnimationName | undefined;
7104 /**
7105 * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
7106 *
7107 * **Syntax**: `<single-animation-play-state>#`
7108 *
7109 * **Initial value**: `running`
7110 */
7111 WebkitAnimationPlayState?: Property.AnimationPlayState | undefined;
7112 /**
7113 * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
7114 *
7115 * **Syntax**: `<easing-function>#`
7116 *
7117 * **Initial value**: `ease`
7118 */
7119 WebkitAnimationTimingFunction?: Property.AnimationTimingFunction | undefined;
7120 /**
7121 * The **`appearance`** CSS property is used to control native appearance of UI controls, that are based on operating system's theme.
7122 *
7123 * **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`
7124 *
7125 * **Initial value**: `none` (but this value is overridden in the user agent CSS)
7126 */
7127 WebkitAppearance?: Property.WebkitAppearance | undefined;
7128 /**
7129 * 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.
7130 *
7131 * **Syntax**: `none | <filter-function-list>`
7132 *
7133 * **Initial value**: `none`
7134 */
7135 WebkitBackdropFilter?: Property.BackdropFilter | undefined;
7136 /**
7137 * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
7138 *
7139 * **Syntax**: `visible | hidden`
7140 *
7141 * **Initial value**: `visible`
7142 */
7143 WebkitBackfaceVisibility?: Property.BackfaceVisibility | undefined;
7144 /**
7145 * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
7146 *
7147 * **Syntax**: `<box>#`
7148 *
7149 * **Initial value**: `border-box`
7150 */
7151 WebkitBackgroundClip?: Property.BackgroundClip | undefined;
7152 /**
7153 * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
7154 *
7155 * **Syntax**: `<box>#`
7156 *
7157 * **Initial value**: `padding-box`
7158 */
7159 WebkitBackgroundOrigin?: Property.BackgroundOrigin | undefined;
7160 /**
7161 * 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.
7162 *
7163 * **Syntax**: `<bg-size>#`
7164 *
7165 * **Initial value**: `auto auto`
7166 */
7167 WebkitBackgroundSize?: Property.BackgroundSize<TLength> | undefined;
7168 /**
7169 * **Syntax**: `<color>`
7170 *
7171 * **Initial value**: `currentcolor`
7172 */
7173 WebkitBorderBeforeColor?: Property.WebkitBorderBeforeColor | undefined;
7174 /**
7175 * **Syntax**: `<'border-style'>`
7176 *
7177 * **Initial value**: `none`
7178 */
7179 WebkitBorderBeforeStyle?: Property.WebkitBorderBeforeStyle | undefined;
7180 /**
7181 * **Syntax**: `<'border-width'>`
7182 *
7183 * **Initial value**: `medium`
7184 */
7185 WebkitBorderBeforeWidth?: Property.WebkitBorderBeforeWidth<TLength> | undefined;
7186 /**
7187 * 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.
7188 *
7189 * **Syntax**: `<length-percentage>{1,2}`
7190 *
7191 * **Initial value**: `0`
7192 */
7193 WebkitBorderBottomLeftRadius?: Property.BorderBottomLeftRadius<TLength> | undefined;
7194 /**
7195 * 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.
7196 *
7197 * **Syntax**: `<length-percentage>{1,2}`
7198 *
7199 * **Initial value**: `0`
7200 */
7201 WebkitBorderBottomRightRadius?: Property.BorderBottomRightRadius<TLength> | undefined;
7202 /**
7203 * 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.
7204 *
7205 * **Syntax**: `<number-percentage>{1,4} && fill?`
7206 *
7207 * **Initial value**: `100%`
7208 */
7209 WebkitBorderImageSlice?: Property.BorderImageSlice | undefined;
7210 /**
7211 * 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.
7212 *
7213 * **Syntax**: `<length-percentage>{1,2}`
7214 *
7215 * **Initial value**: `0`
7216 */
7217 WebkitBorderTopLeftRadius?: Property.BorderTopLeftRadius<TLength> | undefined;
7218 /**
7219 * 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.
7220 *
7221 * **Syntax**: `<length-percentage>{1,2}`
7222 *
7223 * **Initial value**: `0`
7224 */
7225 WebkitBorderTopRightRadius?: Property.BorderTopRightRadius<TLength> | undefined;
7226 /**
7227 * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
7228 *
7229 * **Syntax**: `slice | clone`
7230 *
7231 * **Initial value**: `slice`
7232 */
7233 WebkitBoxDecorationBreak?: Property.BoxDecorationBreak | undefined;
7234 /**
7235 * The **`-webkit-box-reflect`** CSS property lets you reflect the content of an element in one specific direction.
7236 *
7237 * **Syntax**: `[ above | below | right | left ]? <length>? <image>?`
7238 *
7239 * **Initial value**: `none`
7240 */
7241 WebkitBoxReflect?: Property.WebkitBoxReflect<TLength> | undefined;
7242 /**
7243 * 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.
7244 *
7245 * **Syntax**: `none | <shadow>#`
7246 *
7247 * **Initial value**: `none`
7248 */
7249 WebkitBoxShadow?: Property.BoxShadow | undefined;
7250 /**
7251 * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
7252 *
7253 * **Syntax**: `content-box | border-box`
7254 *
7255 * **Initial value**: `content-box`
7256 */
7257 WebkitBoxSizing?: Property.BoxSizing | undefined;
7258 /**
7259 * 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.
7260 *
7261 * **Syntax**: `<clip-source> | [ <basic-shape> || <geometry-box> ] | none`
7262 *
7263 * **Initial value**: `none`
7264 */
7265 WebkitClipPath?: Property.ClipPath | undefined;
7266 /**
7267 * The **`column-count`** CSS property breaks an element's content into the specified number of columns.
7268 *
7269 * **Syntax**: `<integer> | auto`
7270 *
7271 * **Initial value**: `auto`
7272 */
7273 WebkitColumnCount?: Property.ColumnCount | undefined;
7274 /**
7275 * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns.
7276 *
7277 * **Syntax**: `auto | balance | balance-all`
7278 *
7279 * **Initial value**: `balance`
7280 */
7281 WebkitColumnFill?: Property.ColumnFill | undefined;
7282 /**
7283 * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout.
7284 *
7285 * **Syntax**: `<color>`
7286 *
7287 * **Initial value**: `currentcolor`
7288 */
7289 WebkitColumnRuleColor?: Property.ColumnRuleColor | undefined;
7290 /**
7291 * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout.
7292 *
7293 * **Syntax**: `<'border-style'>`
7294 *
7295 * **Initial value**: `none`
7296 */
7297 WebkitColumnRuleStyle?: Property.ColumnRuleStyle | undefined;
7298 /**
7299 * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
7300 *
7301 * **Syntax**: `<'border-width'>`
7302 *
7303 * **Initial value**: `medium`
7304 */
7305 WebkitColumnRuleWidth?: Property.ColumnRuleWidth<TLength> | undefined;
7306 /**
7307 * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`.
7308 *
7309 * **Syntax**: `none | all`
7310 *
7311 * **Initial value**: `none`
7312 */
7313 WebkitColumnSpan?: Property.ColumnSpan | undefined;
7314 /**
7315 * 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.
7316 *
7317 * **Syntax**: `<length> | auto`
7318 *
7319 * **Initial value**: `auto`
7320 */
7321 WebkitColumnWidth?: Property.ColumnWidth<TLength> | undefined;
7322 /**
7323 * 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.
7324 *
7325 * **Syntax**: `none | <filter-function-list>`
7326 *
7327 * **Initial value**: `none`
7328 */
7329 WebkitFilter?: Property.Filter | undefined;
7330 /**
7331 * 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`.
7332 *
7333 * **Syntax**: `content | <'width'>`
7334 *
7335 * **Initial value**: `auto`
7336 */
7337 WebkitFlexBasis?: Property.FlexBasis<TLength> | undefined;
7338 /**
7339 * 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).
7340 *
7341 * **Syntax**: `row | row-reverse | column | column-reverse`
7342 *
7343 * **Initial value**: `row`
7344 */
7345 WebkitFlexDirection?: Property.FlexDirection | undefined;
7346 /**
7347 * The **`flex-grow`** CSS property sets the flex grow factor of a flex item's main size.
7348 *
7349 * **Syntax**: `<number>`
7350 *
7351 * **Initial value**: `0`
7352 */
7353 WebkitFlexGrow?: Property.FlexGrow | undefined;
7354 /**
7355 * 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`.
7356 *
7357 * **Syntax**: `<number>`
7358 *
7359 * **Initial value**: `1`
7360 */
7361 WebkitFlexShrink?: Property.FlexShrink | undefined;
7362 /**
7363 * 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.
7364 *
7365 * **Syntax**: `nowrap | wrap | wrap-reverse`
7366 *
7367 * **Initial value**: `nowrap`
7368 */
7369 WebkitFlexWrap?: Property.FlexWrap | undefined;
7370 /**
7371 * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
7372 *
7373 * **Syntax**: `normal | <feature-tag-value>#`
7374 *
7375 * **Initial value**: `normal`
7376 */
7377 WebkitFontFeatureSettings?: Property.FontFeatureSettings | undefined;
7378 /**
7379 * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font.
7380 *
7381 * **Syntax**: `auto | normal | none`
7382 *
7383 * **Initial value**: `auto`
7384 */
7385 WebkitFontKerning?: Property.FontKerning | undefined;
7386 /**
7387 * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered.
7388 *
7389 * **Syntax**: `auto | never | always | <absolute-size> | <length>`
7390 *
7391 * **Initial value**: `auto`
7392 */
7393 WebkitFontSmoothing?: Property.FontSmooth<TLength> | undefined;
7394 /**
7395 * 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.
7396 *
7397 * **Syntax**: `normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]`
7398 *
7399 * **Initial value**: `normal`
7400 */
7401 WebkitFontVariantLigatures?: Property.FontVariantLigatures | undefined;
7402 /**
7403 * The **`hyphenate-character`** CSS property sets the character (or string) used at the end of a line before a hyphenation break.
7404 *
7405 * **Syntax**: `auto | <string>`
7406 *
7407 * **Initial value**: `auto`
7408 */
7409 WebkitHyphenateCharacter?: Property.HyphenateCharacter | undefined;
7410 /**
7411 * 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.
7412 *
7413 * **Syntax**: `none | manual | auto`
7414 *
7415 * **Initial value**: `manual`
7416 */
7417 WebkitHyphens?: Property.Hyphens | undefined;
7418 /**
7419 * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters.
7420 *
7421 * **Syntax**: `normal | [ <number> <integer>? ]`
7422 *
7423 * **Initial value**: `normal`
7424 */
7425 WebkitInitialLetter?: Property.InitialLetter | undefined;
7426 /**
7427 * 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.
7428 *
7429 * **Syntax**: `normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]`
7430 *
7431 * **Initial value**: `normal`
7432 */
7433 WebkitJustifyContent?: Property.JustifyContent | undefined;
7434 /**
7435 * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
7436 *
7437 * **Syntax**: `auto | loose | normal | strict | anywhere`
7438 *
7439 * **Initial value**: `auto`
7440 */
7441 WebkitLineBreak?: Property.LineBreak | undefined;
7442 /**
7443 * The **`-webkit-line-clamp`** CSS property allows limiting of the contents of a block to the specified number of lines.
7444 *
7445 * **Syntax**: `none | <integer>`
7446 *
7447 * **Initial value**: `none`
7448 */
7449 WebkitLineClamp?: Property.WebkitLineClamp | undefined;
7450 /**
7451 * 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`.
7452 *
7453 * **Syntax**: `<'margin-left'>`
7454 *
7455 * **Initial value**: `0`
7456 */
7457 WebkitMarginEnd?: Property.MarginInlineEnd<TLength> | undefined;
7458 /**
7459 * 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`.
7460 *
7461 * **Syntax**: `<'margin-left'>`
7462 *
7463 * **Initial value**: `0`
7464 */
7465 WebkitMarginStart?: Property.MarginInlineStart<TLength> | undefined;
7466 /**
7467 * If a `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.
7468 *
7469 * **Syntax**: `<attachment>#`
7470 *
7471 * **Initial value**: `scroll`
7472 */
7473 WebkitMaskAttachment?: Property.WebkitMaskAttachment | undefined;
7474 /**
7475 * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box.
7476 *
7477 * **Syntax**: `[ <length> | <number> ]{1,4}`
7478 *
7479 * **Initial value**: `0`
7480 */
7481 WebkitMaskBoxImageOutset?: Property.MaskBorderOutset<TLength> | undefined;
7482 /**
7483 * 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.
7484 *
7485 * **Syntax**: `[ stretch | repeat | round | space ]{1,2}`
7486 *
7487 * **Initial value**: `stretch`
7488 */
7489 WebkitMaskBoxImageRepeat?: Property.MaskBorderRepeat | undefined;
7490 /**
7491 * 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.
7492 *
7493 * **Syntax**: `<number-percentage>{1,4} fill?`
7494 *
7495 * **Initial value**: `0`
7496 */
7497 WebkitMaskBoxImageSlice?: Property.MaskBorderSlice | undefined;
7498 /**
7499 * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border.
7500 *
7501 * **Syntax**: `none | <image>`
7502 *
7503 * **Initial value**: `none`
7504 */
7505 WebkitMaskBoxImageSource?: Property.MaskBorderSource | undefined;
7506 /**
7507 * The **`mask-border-width`** CSS property sets the width of an element's mask border.
7508 *
7509 * **Syntax**: `[ <length-percentage> | <number> | auto ]{1,4}`
7510 *
7511 * **Initial value**: `auto`
7512 */
7513 WebkitMaskBoxImageWidth?: Property.MaskBorderWidth<TLength> | undefined;
7514 /**
7515 * 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.
7516 *
7517 * **Syntax**: `[ <box> | border | padding | content | text ]#`
7518 *
7519 * **Initial value**: `border`
7520 */
7521 WebkitMaskClip?: Property.WebkitMaskClip | undefined;
7522 /**
7523 * 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.
7524 *
7525 * **Syntax**: `<composite-style>#`
7526 *
7527 * **Initial value**: `source-over`
7528 */
7529 WebkitMaskComposite?: Property.WebkitMaskComposite | undefined;
7530 /**
7531 * The **`mask-image`** CSS property sets the image that is used as mask layer for an element. By default this means the alpha channel of the mask image will be multiplied with the alpha channel of the element. This can be controlled with the `mask-mode` property.
7532 *
7533 * **Syntax**: `<mask-reference>#`
7534 *
7535 * **Initial value**: `none`
7536 */
7537 WebkitMaskImage?: Property.WebkitMaskImage | undefined;
7538 /**
7539 * The **`mask-origin`** CSS property sets the origin of a mask.
7540 *
7541 * **Syntax**: `[ <box> | border | padding | content ]#`
7542 *
7543 * **Initial value**: `padding`
7544 */
7545 WebkitMaskOrigin?: Property.WebkitMaskOrigin | undefined;
7546 /**
7547 * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image.
7548 *
7549 * **Syntax**: `<position>#`
7550 *
7551 * **Initial value**: `0% 0%`
7552 */
7553 WebkitMaskPosition?: Property.WebkitMaskPosition<TLength> | undefined;
7554 /**
7555 * The `-webkit-mask-position-x` CSS property sets the initial horizontal position of a mask image.
7556 *
7557 * **Syntax**: `[ <length-percentage> | left | center | right ]#`
7558 *
7559 * **Initial value**: `0%`
7560 */
7561 WebkitMaskPositionX?: Property.WebkitMaskPositionX<TLength> | undefined;
7562 /**
7563 * The `-webkit-mask-position-y` CSS property sets the initial vertical position of a mask image.
7564 *
7565 * **Syntax**: `[ <length-percentage> | top | center | bottom ]#`
7566 *
7567 * **Initial value**: `0%`
7568 */
7569 WebkitMaskPositionY?: Property.WebkitMaskPositionY<TLength> | undefined;
7570 /**
7571 * 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.
7572 *
7573 * **Syntax**: `<repeat-style>#`
7574 *
7575 * **Initial value**: `repeat`
7576 */
7577 WebkitMaskRepeat?: Property.WebkitMaskRepeat | undefined;
7578 /**
7579 * The `-webkit-mask-repeat-x` property specifies whether and how a mask image is repeated (tiled) horizontally.
7580 *
7581 * **Syntax**: `repeat | no-repeat | space | round`
7582 *
7583 * **Initial value**: `repeat`
7584 */
7585 WebkitMaskRepeatX?: Property.WebkitMaskRepeatX | undefined;
7586 /**
7587 * The `-webkit-mask-repeat-y` property sets whether and how a mask image is repeated (tiled) vertically.
7588 *
7589 * **Syntax**: `repeat | no-repeat | space | round`
7590 *
7591 * **Initial value**: `repeat`
7592 */
7593 WebkitMaskRepeatY?: Property.WebkitMaskRepeatY | undefined;
7594 /**
7595 * 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.
7596 *
7597 * **Syntax**: `<bg-size>#`
7598 *
7599 * **Initial value**: `auto auto`
7600 */
7601 WebkitMaskSize?: Property.WebkitMaskSize<TLength> | undefined;
7602 /**
7603 * 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`.
7604 *
7605 * **Syntax**: `<'max-width'>`
7606 *
7607 * **Initial value**: `none`
7608 */
7609 WebkitMaxInlineSize?: Property.MaxInlineSize<TLength> | undefined;
7610 /**
7611 * 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.
7612 *
7613 * **Syntax**: `<integer>`
7614 *
7615 * **Initial value**: `0`
7616 */
7617 WebkitOrder?: Property.Order | undefined;
7618 /**
7619 * The `-webkit-overflow-scrolling` CSS property controls whether or not touch devices use momentum-based scrolling for a given element.
7620 *
7621 * **Syntax**: `auto | touch`
7622 *
7623 * **Initial value**: `auto`
7624 */
7625 WebkitOverflowScrolling?: Property.WebkitOverflowScrolling | undefined;
7626 /**
7627 * 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.
7628 *
7629 * **Syntax**: `<'padding-left'>`
7630 *
7631 * **Initial value**: `0`
7632 */
7633 WebkitPaddingEnd?: Property.PaddingInlineEnd<TLength> | undefined;
7634 /**
7635 * 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.
7636 *
7637 * **Syntax**: `<'padding-left'>`
7638 *
7639 * **Initial value**: `0`
7640 */
7641 WebkitPaddingStart?: Property.PaddingInlineStart<TLength> | undefined;
7642 /**
7643 * 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.
7644 *
7645 * **Syntax**: `none | <length>`
7646 *
7647 * **Initial value**: `none`
7648 */
7649 WebkitPerspective?: Property.Perspective<TLength> | undefined;
7650 /**
7651 * 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.
7652 *
7653 * **Syntax**: `<position>`
7654 *
7655 * **Initial value**: `50% 50%`
7656 */
7657 WebkitPerspectiveOrigin?: Property.PerspectiveOrigin<TLength> | undefined;
7658 /**
7659 * The **`print-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.
7660 *
7661 * **Syntax**: `economy | exact`
7662 *
7663 * **Initial value**: `economy`
7664 */
7665 WebkitPrintColorAdjust?: Property.PrintColorAdjust | undefined;
7666 /**
7667 * The **`ruby-position`** CSS property defines the position of a ruby element relatives to its base element. It can be positioned over the element (`over`), under it (`under`), or between the characters on their right side (`inter-character`).
7668 *
7669 * **Syntax**: `[ alternate || [ over | under ] ] | inter-character`
7670 *
7671 * **Initial value**: `alternate`
7672 */
7673 WebkitRubyPosition?: Property.RubyPosition | undefined;
7674 /**
7675 * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one.
7676 *
7677 * **Syntax**: `none | [ x | y | block | inline | both ] [ mandatory | proximity ]?`
7678 *
7679 * **Initial value**: `none`
7680 */
7681 WebkitScrollSnapType?: Property.ScrollSnapType | undefined;
7682 /**
7683 * The **`shape-margin`** CSS property sets a margin for a CSS shape created using `shape-outside`.
7684 *
7685 * **Syntax**: `<length-percentage>`
7686 *
7687 * **Initial value**: `0`
7688 */
7689 WebkitShapeMargin?: Property.ShapeMargin<TLength> | undefined;
7690 /**
7691 * **`-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.
7692 *
7693 * **Syntax**: `<color>`
7694 *
7695 * **Initial value**: `black`
7696 */
7697 WebkitTapHighlightColor?: Property.WebkitTapHighlightColor | undefined;
7698 /**
7699 * 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.
7700 *
7701 * **Syntax**: `none | all | [ digits <integer>? ]`
7702 *
7703 * **Initial value**: `none`
7704 */
7705 WebkitTextCombine?: Property.TextCombineUpright | undefined;
7706 /**
7707 * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
7708 *
7709 * **Syntax**: `<color>`
7710 *
7711 * **Initial value**: `currentcolor`
7712 */
7713 WebkitTextDecorationColor?: Property.TextDecorationColor | undefined;
7714 /**
7715 * 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.
7716 *
7717 * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
7718 *
7719 * **Initial value**: `none`
7720 */
7721 WebkitTextDecorationLine?: Property.TextDecorationLine | undefined;
7722 /**
7723 * 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.
7724 *
7725 * **Syntax**: `none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]`
7726 *
7727 * **Initial value**: `objects`
7728 */
7729 WebkitTextDecorationSkip?: Property.TextDecorationSkip | undefined;
7730 /**
7731 * 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`.
7732 *
7733 * **Syntax**: `solid | double | dotted | dashed | wavy`
7734 *
7735 * **Initial value**: `solid`
7736 */
7737 WebkitTextDecorationStyle?: Property.TextDecorationStyle | undefined;
7738 /**
7739 * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand.
7740 *
7741 * **Syntax**: `<color>`
7742 *
7743 * **Initial value**: `currentcolor`
7744 */
7745 WebkitTextEmphasisColor?: Property.TextEmphasisColor | undefined;
7746 /**
7747 * 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.
7748 *
7749 * **Syntax**: `[ over | under ] && [ right | left ]`
7750 *
7751 * **Initial value**: `over right`
7752 */
7753 WebkitTextEmphasisPosition?: Property.TextEmphasisPosition | undefined;
7754 /**
7755 * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand.
7756 *
7757 * **Syntax**: `none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>`
7758 *
7759 * **Initial value**: `none`
7760 */
7761 WebkitTextEmphasisStyle?: Property.TextEmphasisStyle | undefined;
7762 /**
7763 * 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.
7764 *
7765 * **Syntax**: `<color>`
7766 *
7767 * **Initial value**: `currentcolor`
7768 */
7769 WebkitTextFillColor?: Property.WebkitTextFillColor | undefined;
7770 /**
7771 * 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.
7772 *
7773 * **Syntax**: `mixed | upright | sideways`
7774 *
7775 * **Initial value**: `mixed`
7776 */
7777 WebkitTextOrientation?: Property.TextOrientation | undefined;
7778 /**
7779 * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
7780 *
7781 * **Syntax**: `none | auto | <percentage>`
7782 *
7783 * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
7784 */
7785 WebkitTextSizeAdjust?: Property.TextSizeAdjust | undefined;
7786 /**
7787 * 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.
7788 *
7789 * **Syntax**: `<color>`
7790 *
7791 * **Initial value**: `currentcolor`
7792 */
7793 WebkitTextStrokeColor?: Property.WebkitTextStrokeColor | undefined;
7794 /**
7795 * The **`-webkit-text-stroke-width`** CSS property specifies the width of the stroke for text.
7796 *
7797 * **Syntax**: `<length>`
7798 *
7799 * **Initial value**: `0`
7800 */
7801 WebkitTextStrokeWidth?: Property.WebkitTextStrokeWidth<TLength> | undefined;
7802 /**
7803 * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value.
7804 *
7805 * **Syntax**: `auto | from-font | [ under || [ left | right ] ]`
7806 *
7807 * **Initial value**: `auto`
7808 */
7809 WebkitTextUnderlinePosition?: Property.TextUnderlinePosition | undefined;
7810 /**
7811 * The `-webkit-touch-callout` CSS property controls the display of the default callout shown when you touch and hold a touch target.
7812 *
7813 * **Syntax**: `default | none`
7814 *
7815 * **Initial value**: `default`
7816 */
7817 WebkitTouchCallout?: Property.WebkitTouchCallout | undefined;
7818 /**
7819 * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
7820 *
7821 * **Syntax**: `none | <transform-list>`
7822 *
7823 * **Initial value**: `none`
7824 */
7825 WebkitTransform?: Property.Transform | undefined;
7826 /**
7827 * The **`transform-origin`** CSS property sets the origin for an element's transformations.
7828 *
7829 * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
7830 *
7831 * **Initial value**: `50% 50% 0`
7832 */
7833 WebkitTransformOrigin?: Property.TransformOrigin<TLength> | undefined;
7834 /**
7835 * 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.
7836 *
7837 * **Syntax**: `flat | preserve-3d`
7838 *
7839 * **Initial value**: `flat`
7840 */
7841 WebkitTransformStyle?: Property.TransformStyle | undefined;
7842 /**
7843 * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
7844 *
7845 * **Syntax**: `<time>#`
7846 *
7847 * **Initial value**: `0s`
7848 */
7849 WebkitTransitionDelay?: Property.TransitionDelay<TTime> | undefined;
7850 /**
7851 * 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.
7852 *
7853 * **Syntax**: `<time>#`
7854 *
7855 * **Initial value**: `0s`
7856 */
7857 WebkitTransitionDuration?: Property.TransitionDuration<TTime> | undefined;
7858 /**
7859 * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
7860 *
7861 * **Syntax**: `none | <single-transition-property>#`
7862 *
7863 * **Initial value**: all
7864 */
7865 WebkitTransitionProperty?: Property.TransitionProperty | undefined;
7866 /**
7867 * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
7868 *
7869 * **Syntax**: `<easing-function>#`
7870 *
7871 * **Initial value**: `ease`
7872 */
7873 WebkitTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
7874 /**
7875 * **Syntax**: `read-only | read-write | read-write-plaintext-only`
7876 *
7877 * **Initial value**: `read-only`
7878 */
7879 WebkitUserModify?: Property.WebkitUserModify | undefined;
7880 /**
7881 * The **`user-select`** CSS property controls whether the user can select text. This doesn't have any effect on content loaded as part of a browser's user interface (its chrome), except in textboxes.
7882 *
7883 * **Syntax**: `auto | text | none | contain | all`
7884 *
7885 * **Initial value**: `auto`
7886 */
7887 WebkitUserSelect?: Property.UserSelect | undefined;
7888 /**
7889 * 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).
7890 *
7891 * **Syntax**: `horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr`
7892 *
7893 * **Initial value**: `horizontal-tb`
7894 */
7895 WebkitWritingMode?: Property.WritingMode | undefined;
7896}
7897
7898interface VendorShorthandProperties<TLength = (string & {}) | 0, TTime = string & {}> {
7899 /**
7900 * 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`.
7901 *
7902 * **Syntax**: `<single-animation>#`
7903 */
7904 MozAnimation?: Property.Animation<TTime> | undefined;
7905 /**
7906 * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
7907 *
7908 * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
7909 */
7910 MozBorderImage?: Property.BorderImage | undefined;
7911 /**
7912 * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
7913 *
7914 * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`
7915 */
7916 MozColumnRule?: Property.ColumnRule<TLength> | undefined;
7917 /**
7918 * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
7919 *
7920 * **Syntax**: `<'column-width'> || <'column-count'>`
7921 */
7922 MozColumns?: Property.Columns<TLength> | undefined;
7923 /**
7924 * In Mozilla applications like Firefox, the **`-moz-outline-radius`** CSS shorthand property can be used to give an element's `outline` rounded corners.
7925 *
7926 * **Syntax**: `<outline-radius>{1,4} [ / <outline-radius>{1,4} ]?`
7927 */
7928 MozOutlineRadius?: Property.MozOutlineRadius<TLength> | undefined;
7929 /**
7930 * 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.
7931 *
7932 * **Syntax**: `<'-ms-content-zoom-limit-min'> <'-ms-content-zoom-limit-max'>`
7933 */
7934 msContentZoomLimit?: Property.MsContentZoomLimit | undefined;
7935 /**
7936 * 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.
7937 *
7938 * **Syntax**: `<'-ms-content-zoom-snap-type'> || <'-ms-content-zoom-snap-points'>`
7939 */
7940 msContentZoomSnap?: Property.MsContentZoomSnap | undefined;
7941 /**
7942 * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
7943 *
7944 * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
7945 */
7946 msFlex?: Property.Flex<TLength> | undefined;
7947 /**
7948 * 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.
7949 *
7950 * **Syntax**: `<'-ms-scroll-limit-x-min'> <'-ms-scroll-limit-y-min'> <'-ms-scroll-limit-x-max'> <'-ms-scroll-limit-y-max'>`
7951 */
7952 msScrollLimit?: Property.MsScrollLimit | undefined;
7953 /**
7954 * 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.
7955 *
7956 * **Syntax**: `<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-x'>`
7957 */
7958 msScrollSnapX?: Property.MsScrollSnapX | undefined;
7959 /**
7960 * 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.
7961 *
7962 * **Syntax**: `<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-y'>`
7963 */
7964 msScrollSnapY?: Property.MsScrollSnapY | undefined;
7965 /**
7966 * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
7967 *
7968 * **Syntax**: `<single-transition>#`
7969 */
7970 msTransition?: Property.Transition<TTime> | undefined;
7971 /**
7972 * 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`.
7973 *
7974 * **Syntax**: `<single-animation>#`
7975 */
7976 WebkitAnimation?: Property.Animation<TTime> | undefined;
7977 /**
7978 * 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.
7979 *
7980 * **Syntax**: `<'border-width'> || <'border-style'> || <color>`
7981 */
7982 WebkitBorderBefore?: Property.WebkitBorderBefore<TLength> | undefined;
7983 /**
7984 * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
7985 *
7986 * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
7987 */
7988 WebkitBorderImage?: Property.BorderImage | undefined;
7989 /**
7990 * 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.
7991 *
7992 * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`
7993 */
7994 WebkitBorderRadius?: Property.BorderRadius<TLength> | undefined;
7995 /**
7996 * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
7997 *
7998 * **Syntax**: `<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>`
7999 */
8000 WebkitColumnRule?: Property.ColumnRule<TLength> | undefined;
8001 /**
8002 * The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
8003 *
8004 * **Syntax**: `<'column-width'> || <'column-count'>`
8005 */
8006 WebkitColumns?: Property.Columns<TLength> | undefined;
8007 /**
8008 * The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
8009 *
8010 * **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
8011 */
8012 WebkitFlex?: Property.Flex<TLength> | undefined;
8013 /**
8014 * The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.
8015 *
8016 * **Syntax**: `<'flex-direction'> || <'flex-wrap'>`
8017 */
8018 WebkitFlexFlow?: Property.FlexFlow | undefined;
8019 /**
8020 * The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.
8021 *
8022 * **Syntax**: `[ <mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || [ <box> | border | padding | content | text ] || [ <box> | border | padding | content ] ]#`
8023 */
8024 WebkitMask?: Property.WebkitMask<TLength> | undefined;
8025 /**
8026 * The **`mask-border`** CSS shorthand property lets you create a mask along the edge of an element's border.
8027 *
8028 * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`
8029 */
8030 WebkitMaskBoxImage?: Property.MaskBorder | undefined;
8031 /**
8032 * 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`.
8033 *
8034 * **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`
8035 */
8036 WebkitTextEmphasis?: Property.TextEmphasis | undefined;
8037 /**
8038 * 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`.
8039 *
8040 * **Syntax**: `<length> || <color>`
8041 */
8042 WebkitTextStroke?: Property.WebkitTextStroke<TLength> | undefined;
8043 /**
8044 * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
8045 *
8046 * **Syntax**: `<single-transition>#`
8047 */
8048 WebkitTransition?: Property.Transition<TTime> | undefined;
8049}
8050
8051interface ObsoleteProperties<TLength = (string & {}) | 0, TTime = string & {}> {
8052 /**
8053 * 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.
8054 *
8055 * **Syntax**: `<angle> | [ [ left-side | far-left | left | center-left | center | center-right | right | far-right | right-side ] || behind ] | leftwards | rightwards`
8056 *
8057 * **Initial value**: `center`
8058 *
8059 * @deprecated
8060 */
8061 azimuth?: Property.Azimuth | undefined;
8062 /**
8063 * 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.
8064 *
8065 * **Syntax**: `start | center | end | baseline | stretch`
8066 *
8067 * **Initial value**: `stretch`
8068 *
8069 * @deprecated
8070 */
8071 boxAlign?: Property.BoxAlign | undefined;
8072 /**
8073 * 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).
8074 *
8075 * **Syntax**: `normal | reverse | inherit`
8076 *
8077 * **Initial value**: `normal`
8078 *
8079 * @deprecated
8080 */
8081 boxDirection?: Property.BoxDirection | undefined;
8082 /**
8083 * 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.
8084 *
8085 * **Syntax**: `<number>`
8086 *
8087 * **Initial value**: `0`
8088 *
8089 * @deprecated
8090 */
8091 boxFlex?: Property.BoxFlex | undefined;
8092 /**
8093 * The **`box-flex-group`** CSS property assigns the flexbox's child elements to a flex group.
8094 *
8095 * **Syntax**: `<integer>`
8096 *
8097 * **Initial value**: `1`
8098 *
8099 * @deprecated
8100 */
8101 boxFlexGroup?: Property.BoxFlexGroup | undefined;
8102 /**
8103 * 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).
8104 *
8105 * **Syntax**: `single | multiple`
8106 *
8107 * **Initial value**: `single`
8108 *
8109 * @deprecated
8110 */
8111 boxLines?: Property.BoxLines | undefined;
8112 /**
8113 * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
8114 *
8115 * **Syntax**: `<integer>`
8116 *
8117 * **Initial value**: `1`
8118 *
8119 * @deprecated
8120 */
8121 boxOrdinalGroup?: Property.BoxOrdinalGroup | undefined;
8122 /**
8123 * The **`box-orient`** CSS property sets whether an element lays out its contents horizontally or vertically.
8124 *
8125 * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
8126 *
8127 * **Initial value**: `inline-axis` (`horizontal` in XUL)
8128 *
8129 * @deprecated
8130 */
8131 boxOrient?: Property.BoxOrient | undefined;
8132 /**
8133 * 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.
8134 *
8135 * **Syntax**: `start | center | end | justify`
8136 *
8137 * **Initial value**: `start`
8138 *
8139 * @deprecated
8140 */
8141 boxPack?: Property.BoxPack | undefined;
8142 /**
8143 * 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`.
8144 *
8145 * **Syntax**: `<shape> | auto`
8146 *
8147 * **Initial value**: `auto`
8148 *
8149 * @deprecated
8150 */
8151 clip?: Property.Clip | undefined;
8152 /**
8153 * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
8154 *
8155 * **Syntax**: `<length-percentage>`
8156 *
8157 * **Initial value**: `0`
8158 *
8159 * @deprecated
8160 */
8161 gridColumnGap?: Property.GridColumnGap<TLength> | undefined;
8162 /**
8163 * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`.
8164 *
8165 * **Syntax**: `<'grid-row-gap'> <'grid-column-gap'>?`
8166 *
8167 * @deprecated
8168 */
8169 gridGap?: Property.GridGap<TLength> | undefined;
8170 /**
8171 * The **`row-gap`** CSS property sets the size of the gap (gutter) between an element's rows.
8172 *
8173 * **Syntax**: `<length-percentage>`
8174 *
8175 * **Initial value**: `0`
8176 *
8177 * @deprecated
8178 */
8179 gridRowGap?: Property.GridRowGap<TLength> | undefined;
8180 /**
8181 * The **`ime-mode`** CSS property controls the state of the input method editor (IME) for text fields. This property is obsolete.
8182 *
8183 * **Syntax**: `auto | normal | active | inactive | disabled`
8184 *
8185 * **Initial value**: `auto`
8186 *
8187 * @deprecated
8188 */
8189 imeMode?: Property.ImeMode | undefined;
8190 /**
8191 * The **`inset-block`** CSS property defines the logical block start and end offsets of an element, 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`.
8192 *
8193 * **Syntax**: `<'top'>{1,2}`
8194 *
8195 * @deprecated
8196 */
8197 offsetBlock?: Property.InsetBlock<TLength> | undefined;
8198 /**
8199 * 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`.
8200 *
8201 * **Syntax**: `<'top'>`
8202 *
8203 * **Initial value**: `auto`
8204 *
8205 * @deprecated
8206 */
8207 offsetBlockEnd?: Property.InsetBlockEnd<TLength> | undefined;
8208 /**
8209 * 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`.
8210 *
8211 * **Syntax**: `<'top'>`
8212 *
8213 * **Initial value**: `auto`
8214 *
8215 * @deprecated
8216 */
8217 offsetBlockStart?: Property.InsetBlockStart<TLength> | undefined;
8218 /**
8219 * 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`.
8220 *
8221 * **Syntax**: `<'top'>{1,2}`
8222 *
8223 * @deprecated
8224 */
8225 offsetInline?: Property.InsetInline<TLength> | undefined;
8226 /**
8227 * 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`.
8228 *
8229 * **Syntax**: `<'top'>`
8230 *
8231 * **Initial value**: `auto`
8232 *
8233 * @deprecated
8234 */
8235 offsetInlineEnd?: Property.InsetInlineEnd<TLength> | undefined;
8236 /**
8237 * 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`.
8238 *
8239 * **Syntax**: `<'top'>`
8240 *
8241 * **Initial value**: `auto`
8242 *
8243 * @deprecated
8244 */
8245 offsetInlineStart?: Property.InsetInlineStart<TLength> | undefined;
8246 /**
8247 * 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.
8248 *
8249 * **Syntax**: `none | <position>#`
8250 *
8251 * **Initial value**: `none`
8252 *
8253 * @deprecated
8254 */
8255 scrollSnapCoordinate?: Property.ScrollSnapCoordinate<TLength> | undefined;
8256 /**
8257 * 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.
8258 *
8259 * **Syntax**: `<position>`
8260 *
8261 * **Initial value**: `0px 0px`
8262 *
8263 * @deprecated
8264 */
8265 scrollSnapDestination?: Property.ScrollSnapDestination<TLength> | undefined;
8266 /**
8267 * 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.
8268 *
8269 * **Syntax**: `none | repeat( <length-percentage> )`
8270 *
8271 * **Initial value**: `none`
8272 *
8273 * @deprecated
8274 */
8275 scrollSnapPointsX?: Property.ScrollSnapPointsX | undefined;
8276 /**
8277 * 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.
8278 *
8279 * **Syntax**: `none | repeat( <length-percentage> )`
8280 *
8281 * **Initial value**: `none`
8282 *
8283 * @deprecated
8284 */
8285 scrollSnapPointsY?: Property.ScrollSnapPointsY | undefined;
8286 /**
8287 * 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.
8288 *
8289 * **Syntax**: `none | mandatory | proximity`
8290 *
8291 * **Initial value**: `none`
8292 *
8293 * @deprecated
8294 */
8295 scrollSnapTypeX?: Property.ScrollSnapTypeX | undefined;
8296 /**
8297 * 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.
8298 *
8299 * **Syntax**: `none | mandatory | proximity`
8300 *
8301 * **Initial value**: `none`
8302 *
8303 * @deprecated
8304 */
8305 scrollSnapTypeY?: Property.ScrollSnapTypeY | undefined;
8306 /**
8307 * 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.
8308 *
8309 * **Syntax**: `start | center | end | baseline | stretch`
8310 *
8311 * **Initial value**: `stretch`
8312 *
8313 * @deprecated
8314 */
8315 KhtmlBoxAlign?: Property.BoxAlign | undefined;
8316 /**
8317 * 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).
8318 *
8319 * **Syntax**: `normal | reverse | inherit`
8320 *
8321 * **Initial value**: `normal`
8322 *
8323 * @deprecated
8324 */
8325 KhtmlBoxDirection?: Property.BoxDirection | undefined;
8326 /**
8327 * 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.
8328 *
8329 * **Syntax**: `<number>`
8330 *
8331 * **Initial value**: `0`
8332 *
8333 * @deprecated
8334 */
8335 KhtmlBoxFlex?: Property.BoxFlex | undefined;
8336 /**
8337 * The **`box-flex-group`** CSS property assigns the flexbox's child elements to a flex group.
8338 *
8339 * **Syntax**: `<integer>`
8340 *
8341 * **Initial value**: `1`
8342 *
8343 * @deprecated
8344 */
8345 KhtmlBoxFlexGroup?: Property.BoxFlexGroup | undefined;
8346 /**
8347 * 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).
8348 *
8349 * **Syntax**: `single | multiple`
8350 *
8351 * **Initial value**: `single`
8352 *
8353 * @deprecated
8354 */
8355 KhtmlBoxLines?: Property.BoxLines | undefined;
8356 /**
8357 * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
8358 *
8359 * **Syntax**: `<integer>`
8360 *
8361 * **Initial value**: `1`
8362 *
8363 * @deprecated
8364 */
8365 KhtmlBoxOrdinalGroup?: Property.BoxOrdinalGroup | undefined;
8366 /**
8367 * The **`box-orient`** CSS property sets whether an element lays out its contents horizontally or vertically.
8368 *
8369 * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
8370 *
8371 * **Initial value**: `inline-axis` (`horizontal` in XUL)
8372 *
8373 * @deprecated
8374 */
8375 KhtmlBoxOrient?: Property.BoxOrient | undefined;
8376 /**
8377 * 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.
8378 *
8379 * **Syntax**: `start | center | end | justify`
8380 *
8381 * **Initial value**: `start`
8382 *
8383 * @deprecated
8384 */
8385 KhtmlBoxPack?: Property.BoxPack | undefined;
8386 /**
8387 * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
8388 *
8389 * **Syntax**: `auto | loose | normal | strict | anywhere`
8390 *
8391 * **Initial value**: `auto`
8392 *
8393 * @deprecated
8394 */
8395 KhtmlLineBreak?: Property.LineBreak | undefined;
8396 /**
8397 * 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.
8398 *
8399 * **Syntax**: `<alpha-value>`
8400 *
8401 * **Initial value**: `1`
8402 *
8403 * @deprecated
8404 */
8405 KhtmlOpacity?: Property.Opacity | undefined;
8406 /**
8407 * The **`user-select`** CSS property controls whether the user can select text. This doesn't have any effect on content loaded as part of a browser's user interface (its chrome), except in textboxes.
8408 *
8409 * **Syntax**: `auto | text | none | contain | all`
8410 *
8411 * **Initial value**: `auto`
8412 *
8413 * @deprecated
8414 */
8415 KhtmlUserSelect?: Property.UserSelect | undefined;
8416 /**
8417 * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
8418 *
8419 * **Syntax**: `visible | hidden`
8420 *
8421 * **Initial value**: `visible`
8422 *
8423 * @deprecated
8424 */
8425 MozBackfaceVisibility?: Property.BackfaceVisibility | undefined;
8426 /**
8427 * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
8428 *
8429 * **Syntax**: `<box>#`
8430 *
8431 * **Initial value**: `border-box`
8432 *
8433 * @deprecated
8434 */
8435 MozBackgroundClip?: Property.BackgroundClip | undefined;
8436 /**
8437 * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
8438 *
8439 * **Syntax**: `slice | clone`
8440 *
8441 * **Initial value**: `slice`
8442 *
8443 * @deprecated
8444 */
8445 MozBackgroundInlinePolicy?: Property.BoxDecorationBreak | undefined;
8446 /**
8447 * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
8448 *
8449 * **Syntax**: `<box>#`
8450 *
8451 * **Initial value**: `padding-box`
8452 *
8453 * @deprecated
8454 */
8455 MozBackgroundOrigin?: Property.BackgroundOrigin | undefined;
8456 /**
8457 * 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.
8458 *
8459 * **Syntax**: `<bg-size>#`
8460 *
8461 * **Initial value**: `auto auto`
8462 *
8463 * @deprecated
8464 */
8465 MozBackgroundSize?: Property.BackgroundSize<TLength> | undefined;
8466 /**
8467 * 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.
8468 *
8469 * **Syntax**: `<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?`
8470 *
8471 * @deprecated
8472 */
8473 MozBorderRadius?: Property.BorderRadius<TLength> | undefined;
8474 /**
8475 * 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.
8476 *
8477 * **Syntax**: `<length-percentage>{1,2}`
8478 *
8479 * **Initial value**: `0`
8480 *
8481 * @deprecated
8482 */
8483 MozBorderRadiusBottomleft?: Property.BorderBottomLeftRadius<TLength> | undefined;
8484 /**
8485 * 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.
8486 *
8487 * **Syntax**: `<length-percentage>{1,2}`
8488 *
8489 * **Initial value**: `0`
8490 *
8491 * @deprecated
8492 */
8493 MozBorderRadiusBottomright?: Property.BorderBottomRightRadius<TLength> | undefined;
8494 /**
8495 * 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.
8496 *
8497 * **Syntax**: `<length-percentage>{1,2}`
8498 *
8499 * **Initial value**: `0`
8500 *
8501 * @deprecated
8502 */
8503 MozBorderRadiusTopleft?: Property.BorderTopLeftRadius<TLength> | undefined;
8504 /**
8505 * 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.
8506 *
8507 * **Syntax**: `<length-percentage>{1,2}`
8508 *
8509 * **Initial value**: `0`
8510 *
8511 * @deprecated
8512 */
8513 MozBorderRadiusTopright?: Property.BorderTopRightRadius<TLength> | undefined;
8514 /**
8515 * 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.
8516 *
8517 * **Syntax**: `start | center | end | baseline | stretch`
8518 *
8519 * **Initial value**: `stretch`
8520 *
8521 * @deprecated
8522 */
8523 MozBoxAlign?: Property.BoxAlign | undefined;
8524 /**
8525 * 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).
8526 *
8527 * **Syntax**: `normal | reverse | inherit`
8528 *
8529 * **Initial value**: `normal`
8530 *
8531 * @deprecated
8532 */
8533 MozBoxDirection?: Property.BoxDirection | undefined;
8534 /**
8535 * 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.
8536 *
8537 * **Syntax**: `<number>`
8538 *
8539 * **Initial value**: `0`
8540 *
8541 * @deprecated
8542 */
8543 MozBoxFlex?: Property.BoxFlex | undefined;
8544 /**
8545 * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
8546 *
8547 * **Syntax**: `<integer>`
8548 *
8549 * **Initial value**: `1`
8550 *
8551 * @deprecated
8552 */
8553 MozBoxOrdinalGroup?: Property.BoxOrdinalGroup | undefined;
8554 /**
8555 * The **`box-orient`** CSS property sets whether an element lays out its contents horizontally or vertically.
8556 *
8557 * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
8558 *
8559 * **Initial value**: `inline-axis` (`horizontal` in XUL)
8560 *
8561 * @deprecated
8562 */
8563 MozBoxOrient?: Property.BoxOrient | undefined;
8564 /**
8565 * 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.
8566 *
8567 * **Syntax**: `start | center | end | justify`
8568 *
8569 * **Initial value**: `start`
8570 *
8571 * @deprecated
8572 */
8573 MozBoxPack?: Property.BoxPack | undefined;
8574 /**
8575 * 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.
8576 *
8577 * **Syntax**: `none | <shadow>#`
8578 *
8579 * **Initial value**: `none`
8580 *
8581 * @deprecated
8582 */
8583 MozBoxShadow?: Property.BoxShadow | undefined;
8584 /**
8585 * 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.
8586 *
8587 * **Syntax**: `border-box | content-box | margin-box | padding-box`
8588 *
8589 * **Initial value**: `content-box`
8590 *
8591 * @deprecated
8592 */
8593 MozFloatEdge?: Property.MozFloatEdge | undefined;
8594 /**
8595 * 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.
8596 *
8597 * **Syntax**: `0 | 1`
8598 *
8599 * **Initial value**: `0`
8600 *
8601 * @deprecated
8602 */
8603 MozForceBrokenImageIcon?: Property.MozForceBrokenImageIcon | undefined;
8604 /**
8605 * 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.
8606 *
8607 * **Syntax**: `<alpha-value>`
8608 *
8609 * **Initial value**: `1`
8610 *
8611 * @deprecated
8612 */
8613 MozOpacity?: Property.Opacity | undefined;
8614 /**
8615 * The **`outline`** CSS shorthand property sets most of the outline properties in a single declaration.
8616 *
8617 * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`
8618 *
8619 * @deprecated
8620 */
8621 MozOutline?: Property.Outline<TLength> | undefined;
8622 /**
8623 * The **`outline-color`** CSS property sets the color of an element's outline.
8624 *
8625 * **Syntax**: `<color> | invert`
8626 *
8627 * **Initial value**: `invert`, for browsers supporting it, `currentColor` for the other
8628 *
8629 * @deprecated
8630 */
8631 MozOutlineColor?: Property.OutlineColor | undefined;
8632 /**
8633 * 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`.
8634 *
8635 * **Syntax**: `auto | <'border-style'>`
8636 *
8637 * **Initial value**: `none`
8638 *
8639 * @deprecated
8640 */
8641 MozOutlineStyle?: Property.OutlineStyle | undefined;
8642 /**
8643 * 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`.
8644 *
8645 * **Syntax**: `<line-width>`
8646 *
8647 * **Initial value**: `medium`
8648 *
8649 * @deprecated
8650 */
8651 MozOutlineWidth?: Property.OutlineWidth<TLength> | undefined;
8652 /**
8653 * 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.
8654 *
8655 * **Syntax**: `none | <length>`
8656 *
8657 * **Initial value**: `none`
8658 *
8659 * @deprecated
8660 */
8661 MozPerspective?: Property.Perspective<TLength> | undefined;
8662 /**
8663 * 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.
8664 *
8665 * **Syntax**: `<position>`
8666 *
8667 * **Initial value**: `50% 50%`
8668 *
8669 * @deprecated
8670 */
8671 MozPerspectiveOrigin?: Property.PerspectiveOrigin<TLength> | undefined;
8672 /**
8673 * 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.
8674 *
8675 * **Syntax**: `auto | start | end | left | right | center | justify`
8676 *
8677 * **Initial value**: `auto`
8678 *
8679 * @deprecated
8680 */
8681 MozTextAlignLast?: Property.TextAlignLast | undefined;
8682 /**
8683 * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
8684 *
8685 * **Syntax**: `<color>`
8686 *
8687 * **Initial value**: `currentcolor`
8688 *
8689 * @deprecated
8690 */
8691 MozTextDecorationColor?: Property.TextDecorationColor | undefined;
8692 /**
8693 * 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.
8694 *
8695 * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
8696 *
8697 * **Initial value**: `none`
8698 *
8699 * @deprecated
8700 */
8701 MozTextDecorationLine?: Property.TextDecorationLine | undefined;
8702 /**
8703 * 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`.
8704 *
8705 * **Syntax**: `solid | double | dotted | dashed | wavy`
8706 *
8707 * **Initial value**: `solid`
8708 *
8709 * @deprecated
8710 */
8711 MozTextDecorationStyle?: Property.TextDecorationStyle | undefined;
8712 /**
8713 * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
8714 *
8715 * **Syntax**: `none | <transform-list>`
8716 *
8717 * **Initial value**: `none`
8718 *
8719 * @deprecated
8720 */
8721 MozTransform?: Property.Transform | undefined;
8722 /**
8723 * The **`transform-origin`** CSS property sets the origin for an element's transformations.
8724 *
8725 * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
8726 *
8727 * **Initial value**: `50% 50% 0`
8728 *
8729 * @deprecated
8730 */
8731 MozTransformOrigin?: Property.TransformOrigin<TLength> | undefined;
8732 /**
8733 * 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.
8734 *
8735 * **Syntax**: `flat | preserve-3d`
8736 *
8737 * **Initial value**: `flat`
8738 *
8739 * @deprecated
8740 */
8741 MozTransformStyle?: Property.TransformStyle | undefined;
8742 /**
8743 * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
8744 *
8745 * **Syntax**: `<single-transition>#`
8746 *
8747 * @deprecated
8748 */
8749 MozTransition?: Property.Transition<TTime> | undefined;
8750 /**
8751 * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
8752 *
8753 * **Syntax**: `<time>#`
8754 *
8755 * **Initial value**: `0s`
8756 *
8757 * @deprecated
8758 */
8759 MozTransitionDelay?: Property.TransitionDelay<TTime> | undefined;
8760 /**
8761 * 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.
8762 *
8763 * **Syntax**: `<time>#`
8764 *
8765 * **Initial value**: `0s`
8766 *
8767 * @deprecated
8768 */
8769 MozTransitionDuration?: Property.TransitionDuration<TTime> | undefined;
8770 /**
8771 * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
8772 *
8773 * **Syntax**: `none | <single-transition-property>#`
8774 *
8775 * **Initial value**: all
8776 *
8777 * @deprecated
8778 */
8779 MozTransitionProperty?: Property.TransitionProperty | undefined;
8780 /**
8781 * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
8782 *
8783 * **Syntax**: `<easing-function>#`
8784 *
8785 * **Initial value**: `ease`
8786 *
8787 * @deprecated
8788 */
8789 MozTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
8790 /**
8791 * In Mozilla applications, **`-moz-user-input`** determines if an element will accept user input.
8792 *
8793 * **Syntax**: `auto | none | enabled | disabled`
8794 *
8795 * **Initial value**: `auto`
8796 *
8797 * @deprecated
8798 */
8799 MozUserInput?: Property.MozUserInput | undefined;
8800 /**
8801 * The **`ime-mode`** CSS property controls the state of the input method editor (IME) for text fields. This property is obsolete.
8802 *
8803 * **Syntax**: `auto | normal | active | inactive | disabled`
8804 *
8805 * **Initial value**: `auto`
8806 *
8807 * @deprecated
8808 */
8809 msImeMode?: Property.ImeMode | undefined;
8810 /**
8811 * 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`.
8812 *
8813 * **Syntax**: `<single-animation>#`
8814 *
8815 * @deprecated
8816 */
8817 OAnimation?: Property.Animation<TTime> | undefined;
8818 /**
8819 * 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.
8820 *
8821 * **Syntax**: `<time>#`
8822 *
8823 * **Initial value**: `0s`
8824 *
8825 * @deprecated
8826 */
8827 OAnimationDelay?: Property.AnimationDelay<TTime> | undefined;
8828 /**
8829 * 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.
8830 *
8831 * **Syntax**: `<single-animation-direction>#`
8832 *
8833 * **Initial value**: `normal`
8834 *
8835 * @deprecated
8836 */
8837 OAnimationDirection?: Property.AnimationDirection | undefined;
8838 /**
8839 * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
8840 *
8841 * **Syntax**: `<time>#`
8842 *
8843 * **Initial value**: `0s`
8844 *
8845 * @deprecated
8846 */
8847 OAnimationDuration?: Property.AnimationDuration<TTime> | undefined;
8848 /**
8849 * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
8850 *
8851 * **Syntax**: `<single-animation-fill-mode>#`
8852 *
8853 * **Initial value**: `none`
8854 *
8855 * @deprecated
8856 */
8857 OAnimationFillMode?: Property.AnimationFillMode | undefined;
8858 /**
8859 * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
8860 *
8861 * **Syntax**: `<single-animation-iteration-count>#`
8862 *
8863 * **Initial value**: `1`
8864 *
8865 * @deprecated
8866 */
8867 OAnimationIterationCount?: Property.AnimationIterationCount | undefined;
8868 /**
8869 * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules that describe the animation to apply to an element. Multiple `@keyframe` at-rules are specified as a comma-separated list of names. If the specified name does not match any `@keyframe` at-rule, no properties are animated.
8870 *
8871 * **Syntax**: `[ none | <keyframes-name> ]#`
8872 *
8873 * **Initial value**: `none`
8874 *
8875 * @deprecated
8876 */
8877 OAnimationName?: Property.AnimationName | undefined;
8878 /**
8879 * The **`animation-play-state`** CSS property sets whether an animation is running or paused.
8880 *
8881 * **Syntax**: `<single-animation-play-state>#`
8882 *
8883 * **Initial value**: `running`
8884 *
8885 * @deprecated
8886 */
8887 OAnimationPlayState?: Property.AnimationPlayState | undefined;
8888 /**
8889 * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
8890 *
8891 * **Syntax**: `<easing-function>#`
8892 *
8893 * **Initial value**: `ease`
8894 *
8895 * @deprecated
8896 */
8897 OAnimationTimingFunction?: Property.AnimationTimingFunction | undefined;
8898 /**
8899 * 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.
8900 *
8901 * **Syntax**: `<bg-size>#`
8902 *
8903 * **Initial value**: `auto auto`
8904 *
8905 * @deprecated
8906 */
8907 OBackgroundSize?: Property.BackgroundSize<TLength> | undefined;
8908 /**
8909 * The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
8910 *
8911 * **Syntax**: `<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>`
8912 *
8913 * @deprecated
8914 */
8915 OBorderImage?: Property.BorderImage | undefined;
8916 /**
8917 * 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.
8918 *
8919 * **Syntax**: `fill | contain | cover | none | scale-down`
8920 *
8921 * **Initial value**: `fill`
8922 *
8923 * @deprecated
8924 */
8925 OObjectFit?: Property.ObjectFit | undefined;
8926 /**
8927 * 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.
8928 *
8929 * **Syntax**: `<position>`
8930 *
8931 * **Initial value**: `50% 50%`
8932 *
8933 * @deprecated
8934 */
8935 OObjectPosition?: Property.ObjectPosition<TLength> | undefined;
8936 /**
8937 * The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
8938 *
8939 * **Syntax**: `<integer> | <length>`
8940 *
8941 * **Initial value**: `8`
8942 *
8943 * @deprecated
8944 */
8945 OTabSize?: Property.TabSize<TLength> | undefined;
8946 /**
8947 * 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.
8948 *
8949 * **Syntax**: `[ clip | ellipsis | <string> ]{1,2}`
8950 *
8951 * **Initial value**: `clip`
8952 *
8953 * @deprecated
8954 */
8955 OTextOverflow?: Property.TextOverflow | undefined;
8956 /**
8957 * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
8958 *
8959 * **Syntax**: `none | <transform-list>`
8960 *
8961 * **Initial value**: `none`
8962 *
8963 * @deprecated
8964 */
8965 OTransform?: Property.Transform | undefined;
8966 /**
8967 * The **`transform-origin`** CSS property sets the origin for an element's transformations.
8968 *
8969 * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
8970 *
8971 * **Initial value**: `50% 50% 0`
8972 *
8973 * @deprecated
8974 */
8975 OTransformOrigin?: Property.TransformOrigin<TLength> | undefined;
8976 /**
8977 * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
8978 *
8979 * **Syntax**: `<single-transition>#`
8980 *
8981 * @deprecated
8982 */
8983 OTransition?: Property.Transition<TTime> | undefined;
8984 /**
8985 * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
8986 *
8987 * **Syntax**: `<time>#`
8988 *
8989 * **Initial value**: `0s`
8990 *
8991 * @deprecated
8992 */
8993 OTransitionDelay?: Property.TransitionDelay<TTime> | undefined;
8994 /**
8995 * 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.
8996 *
8997 * **Syntax**: `<time>#`
8998 *
8999 * **Initial value**: `0s`
9000 *
9001 * @deprecated
9002 */
9003 OTransitionDuration?: Property.TransitionDuration<TTime> | undefined;
9004 /**
9005 * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
9006 *
9007 * **Syntax**: `none | <single-transition-property>#`
9008 *
9009 * **Initial value**: all
9010 *
9011 * @deprecated
9012 */
9013 OTransitionProperty?: Property.TransitionProperty | undefined;
9014 /**
9015 * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
9016 *
9017 * **Syntax**: `<easing-function>#`
9018 *
9019 * **Initial value**: `ease`
9020 *
9021 * @deprecated
9022 */
9023 OTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
9024 /**
9025 * 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.
9026 *
9027 * **Syntax**: `start | center | end | baseline | stretch`
9028 *
9029 * **Initial value**: `stretch`
9030 *
9031 * @deprecated
9032 */
9033 WebkitBoxAlign?: Property.BoxAlign | undefined;
9034 /**
9035 * 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).
9036 *
9037 * **Syntax**: `normal | reverse | inherit`
9038 *
9039 * **Initial value**: `normal`
9040 *
9041 * @deprecated
9042 */
9043 WebkitBoxDirection?: Property.BoxDirection | undefined;
9044 /**
9045 * 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.
9046 *
9047 * **Syntax**: `<number>`
9048 *
9049 * **Initial value**: `0`
9050 *
9051 * @deprecated
9052 */
9053 WebkitBoxFlex?: Property.BoxFlex | undefined;
9054 /**
9055 * The **`box-flex-group`** CSS property assigns the flexbox's child elements to a flex group.
9056 *
9057 * **Syntax**: `<integer>`
9058 *
9059 * **Initial value**: `1`
9060 *
9061 * @deprecated
9062 */
9063 WebkitBoxFlexGroup?: Property.BoxFlexGroup | undefined;
9064 /**
9065 * 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).
9066 *
9067 * **Syntax**: `single | multiple`
9068 *
9069 * **Initial value**: `single`
9070 *
9071 * @deprecated
9072 */
9073 WebkitBoxLines?: Property.BoxLines | undefined;
9074 /**
9075 * The **`box-ordinal-group`** CSS property assigns the flexbox's child elements to an ordinal group.
9076 *
9077 * **Syntax**: `<integer>`
9078 *
9079 * **Initial value**: `1`
9080 *
9081 * @deprecated
9082 */
9083 WebkitBoxOrdinalGroup?: Property.BoxOrdinalGroup | undefined;
9084 /**
9085 * The **`box-orient`** CSS property sets whether an element lays out its contents horizontally or vertically.
9086 *
9087 * **Syntax**: `horizontal | vertical | inline-axis | block-axis | inherit`
9088 *
9089 * **Initial value**: `inline-axis` (`horizontal` in XUL)
9090 *
9091 * @deprecated
9092 */
9093 WebkitBoxOrient?: Property.BoxOrient | undefined;
9094 /**
9095 * 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.
9096 *
9097 * **Syntax**: `start | center | end | justify`
9098 *
9099 * **Initial value**: `start`
9100 *
9101 * @deprecated
9102 */
9103 WebkitBoxPack?: Property.BoxPack | undefined;
9104}
9105
9106interface SvgProperties<TLength = (string & {}) | 0, TTime = string & {}> {
9107 alignmentBaseline?: Property.AlignmentBaseline | undefined;
9108 baselineShift?: Property.BaselineShift<TLength> | undefined;
9109 clip?: Property.Clip | undefined;
9110 clipPath?: Property.ClipPath | undefined;
9111 clipRule?: Property.ClipRule | undefined;
9112 color?: Property.Color | undefined;
9113 colorInterpolation?: Property.ColorInterpolation | undefined;
9114 colorRendering?: Property.ColorRendering | undefined;
9115 cursor?: Property.Cursor | undefined;
9116 direction?: Property.Direction | undefined;
9117 display?: Property.Display | undefined;
9118 dominantBaseline?: Property.DominantBaseline | undefined;
9119 fill?: Property.Fill | undefined;
9120 fillOpacity?: Property.FillOpacity | undefined;
9121 fillRule?: Property.FillRule | undefined;
9122 filter?: Property.Filter | undefined;
9123 floodColor?: Property.FloodColor | undefined;
9124 floodOpacity?: Property.FloodOpacity | undefined;
9125 font?: Property.Font | undefined;
9126 fontFamily?: Property.FontFamily | undefined;
9127 fontSize?: Property.FontSize<TLength> | undefined;
9128 fontSizeAdjust?: Property.FontSizeAdjust | undefined;
9129 fontStretch?: Property.FontStretch | undefined;
9130 fontStyle?: Property.FontStyle | undefined;
9131 fontVariant?: Property.FontVariant | undefined;
9132 fontWeight?: Property.FontWeight | undefined;
9133 glyphOrientationVertical?: Property.GlyphOrientationVertical | undefined;
9134 imageRendering?: Property.ImageRendering | undefined;
9135 letterSpacing?: Property.LetterSpacing<TLength> | undefined;
9136 lightingColor?: Property.LightingColor | undefined;
9137 lineHeight?: Property.LineHeight<TLength> | undefined;
9138 marker?: Property.Marker | undefined;
9139 markerEnd?: Property.MarkerEnd | undefined;
9140 markerMid?: Property.MarkerMid | undefined;
9141 markerStart?: Property.MarkerStart | undefined;
9142 mask?: Property.Mask<TLength> | undefined;
9143 opacity?: Property.Opacity | undefined;
9144 overflow?: Property.Overflow | undefined;
9145 paintOrder?: Property.PaintOrder | undefined;
9146 pointerEvents?: Property.PointerEvents | undefined;
9147 shapeRendering?: Property.ShapeRendering | undefined;
9148 stopColor?: Property.StopColor | undefined;
9149 stopOpacity?: Property.StopOpacity | undefined;
9150 stroke?: Property.Stroke | undefined;
9151 strokeDasharray?: Property.StrokeDasharray<TLength> | undefined;
9152 strokeDashoffset?: Property.StrokeDashoffset<TLength> | undefined;
9153 strokeLinecap?: Property.StrokeLinecap | undefined;
9154 strokeLinejoin?: Property.StrokeLinejoin | undefined;
9155 strokeMiterlimit?: Property.StrokeMiterlimit | undefined;
9156 strokeOpacity?: Property.StrokeOpacity | undefined;
9157 strokeWidth?: Property.StrokeWidth<TLength> | undefined;
9158 textAnchor?: Property.TextAnchor | undefined;
9159 textDecoration?: Property.TextDecoration<TLength> | undefined;
9160 textRendering?: Property.TextRendering | undefined;
9161 unicodeBidi?: Property.UnicodeBidi | undefined;
9162 vectorEffect?: Property.VectorEffect | undefined;
9163 visibility?: Property.Visibility | undefined;
9164 whiteSpace?: Property.WhiteSpace | undefined;
9165 wordSpacing?: Property.WordSpacing<TLength> | undefined;
9166 writingMode?: Property.WritingMode | undefined;
9167}
9168
9169type StandardLonghandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<StandardLonghandProperties<TLength, TTime>>;
9170
9171type StandardShorthandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<StandardShorthandProperties<TLength, TTime>>;
9172
9173interface StandardPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}>
9174 extends StandardLonghandPropertiesFallback<TLength, TTime>,
9175 StandardShorthandPropertiesFallback<TLength, TTime> {}
9176
9177type VendorLonghandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<VendorLonghandProperties<TLength, TTime>>;
9178
9179type VendorShorthandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<VendorShorthandProperties<TLength, TTime>>;
9180
9181interface VendorPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}>
9182 extends VendorLonghandPropertiesFallback<TLength, TTime>,
9183 VendorShorthandPropertiesFallback<TLength, TTime> {}
9184
9185type ObsoletePropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<ObsoleteProperties<TLength, TTime>>;
9186
9187type SvgPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<SvgProperties<TLength, TTime>>;
9188
9189interface PropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}>
9190 extends StandardPropertiesFallback<TLength, TTime>,
9191 VendorPropertiesFallback<TLength, TTime>,
9192 ObsoletePropertiesFallback<TLength, TTime>,
9193 SvgPropertiesFallback<TLength, TTime> {}
9194
9195type AdvancedPseudos =
9196 | ":-moz-any()"
9197 | ":-moz-dir"
9198 | ":-webkit-any()"
9199 | "::cue"
9200 | "::cue-region"
9201 | "::part"
9202 | "::slotted"
9203 | "::view-transition-group"
9204 | "::view-transition-image-pair"
9205 | "::view-transition-new"
9206 | "::view-transition-old"
9207 | ":dir"
9208 | ":has"
9209 | ":host"
9210 | ":host-context"
9211 | ":is"
9212 | ":lang"
9213 | ":matches()"
9214 | ":not"
9215 | ":nth-child"
9216 | ":nth-last-child"
9217 | ":nth-last-of-type"
9218 | ":nth-of-type"
9219 | ":where";
9220
9221type SimplePseudos =
9222 | ":-khtml-any-link"
9223 | ":-moz-any-link"
9224 | ":-moz-focusring"
9225 | ":-moz-full-screen"
9226 | ":-moz-placeholder"
9227 | ":-moz-read-only"
9228 | ":-moz-read-write"
9229 | ":-moz-ui-invalid"
9230 | ":-moz-ui-valid"
9231 | ":-ms-fullscreen"
9232 | ":-ms-input-placeholder"
9233 | ":-webkit-any-link"
9234 | ":-webkit-full-screen"
9235 | "::-moz-placeholder"
9236 | "::-moz-progress-bar"
9237 | "::-moz-range-progress"
9238 | "::-moz-range-thumb"
9239 | "::-moz-range-track"
9240 | "::-moz-selection"
9241 | "::-ms-backdrop"
9242 | "::-ms-browse"
9243 | "::-ms-check"
9244 | "::-ms-clear"
9245 | "::-ms-expand"
9246 | "::-ms-fill"
9247 | "::-ms-fill-lower"
9248 | "::-ms-fill-upper"
9249 | "::-ms-input-placeholder"
9250 | "::-ms-reveal"
9251 | "::-ms-thumb"
9252 | "::-ms-ticks-after"
9253 | "::-ms-ticks-before"
9254 | "::-ms-tooltip"
9255 | "::-ms-track"
9256 | "::-ms-value"
9257 | "::-webkit-backdrop"
9258 | "::-webkit-input-placeholder"
9259 | "::-webkit-progress-bar"
9260 | "::-webkit-progress-inner-value"
9261 | "::-webkit-progress-value"
9262 | "::-webkit-slider-runnable-track"
9263 | "::-webkit-slider-thumb"
9264 | "::after"
9265 | "::backdrop"
9266 | "::before"
9267 | "::cue"
9268 | "::cue-region"
9269 | "::first-letter"
9270 | "::first-line"
9271 | "::grammar-error"
9272 | "::marker"
9273 | "::placeholder"
9274 | "::selection"
9275 | "::spelling-error"
9276 | "::target-text"
9277 | "::view-transition"
9278 | ":active"
9279 | ":after"
9280 | ":any-link"
9281 | ":before"
9282 | ":blank"
9283 | ":checked"
9284 | ":current"
9285 | ":default"
9286 | ":defined"
9287 | ":disabled"
9288 | ":empty"
9289 | ":enabled"
9290 | ":first"
9291 | ":first-child"
9292 | ":first-letter"
9293 | ":first-line"
9294 | ":first-of-type"
9295 | ":focus"
9296 | ":focus-visible"
9297 | ":focus-within"
9298 | ":fullscreen"
9299 | ":future"
9300 | ":hover"
9301 | ":in-range"
9302 | ":indeterminate"
9303 | ":invalid"
9304 | ":last-child"
9305 | ":last-of-type"
9306 | ":left"
9307 | ":link"
9308 | ":local-link"
9309 | ":nth-col"
9310 | ":nth-last-col"
9311 | ":only-child"
9312 | ":only-of-type"
9313 | ":optional"
9314 | ":out-of-range"
9315 | ":past"
9316 | ":paused"
9317 | ":picture-in-picture"
9318 | ":placeholder-shown"
9319 | ":playing"
9320 | ":read-only"
9321 | ":read-write"
9322 | ":required"
9323 | ":right"
9324 | ":root"
9325 | ":scope"
9326 | ":target"
9327 | ":target-within"
9328 | ":user-invalid"
9329 | ":user-valid"
9330 | ":valid"
9331 | ":visited";
9332
9333type Pseudos = AdvancedPseudos | SimplePseudos;
9334
9335type Globals = "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset";
9336
9337declare namespace Property {
9338 export type AccentColor = Globals | DataType.Color | "auto";
9339
9340 export type AlignContent = Globals | DataType.ContentDistribution | DataType.ContentPosition | "baseline" | "normal" | (string & {});
9341
9342 export type AlignItems = Globals | DataType.SelfPosition | "baseline" | "normal" | "stretch" | (string & {});
9343
9344 export type AlignSelf = Globals | DataType.SelfPosition | "auto" | "baseline" | "normal" | "stretch" | (string & {});
9345
9346 export type AlignTracks = Globals | DataType.ContentDistribution | DataType.ContentPosition | "baseline" | "normal" | (string & {});
9347
9348 export type All = Globals;
9349
9350 export type Animation<TTime = string & {}> = Globals | DataType.SingleAnimation<TTime> | (string & {});
9351
9352 export type AnimationComposition = Globals | DataType.SingleAnimationComposition | (string & {});
9353
9354 export type AnimationDelay<TTime = string & {}> = Globals | TTime | (string & {});
9355
9356 export type AnimationDirection = Globals | DataType.SingleAnimationDirection | (string & {});
9357
9358 export type AnimationDuration<TTime = string & {}> = Globals | TTime | (string & {});
9359
9360 export type AnimationFillMode = Globals | DataType.SingleAnimationFillMode | (string & {});
9361
9362 export type AnimationIterationCount = Globals | "infinite" | (string & {}) | (number & {});
9363
9364 export type AnimationName = Globals | "none" | (string & {});
9365
9366 export type AnimationPlayState = Globals | "paused" | "running" | (string & {});
9367
9368 export type AnimationRange<TLength = (string & {}) | 0> = Globals | DataType.TimelineRangeName | TLength | "normal" | (string & {});
9369
9370 export type AnimationRangeEnd<TLength = (string & {}) | 0> = Globals | DataType.TimelineRangeName | TLength | "normal" | (string & {});
9371
9372 export type AnimationRangeStart<TLength = (string & {}) | 0> = Globals | DataType.TimelineRangeName | TLength | "normal" | (string & {});
9373
9374 export type AnimationTimeline = Globals | DataType.SingleAnimationTimeline | (string & {});
9375
9376 export type AnimationTimingFunction = Globals | DataType.EasingFunction | (string & {});
9377
9378 export type Appearance = Globals | DataType.CompatAuto | "auto" | "menulist-button" | "none" | "textfield";
9379
9380 export type AspectRatio = Globals | "auto" | (string & {}) | (number & {});
9381
9382 export type Azimuth =
9383 | Globals
9384 | "behind"
9385 | "center"
9386 | "center-left"
9387 | "center-right"
9388 | "far-left"
9389 | "far-right"
9390 | "left"
9391 | "left-side"
9392 | "leftwards"
9393 | "right"
9394 | "right-side"
9395 | "rightwards"
9396 | (string & {});
9397
9398 export type BackdropFilter = Globals | "none" | (string & {});
9399
9400 export type BackfaceVisibility = Globals | "hidden" | "visible";
9401
9402 export type Background<TLength = (string & {}) | 0> = Globals | DataType.FinalBgLayer<TLength> | (string & {});
9403
9404 export type BackgroundAttachment = Globals | DataType.Attachment | (string & {});
9405
9406 export type BackgroundBlendMode = Globals | DataType.BlendMode | (string & {});
9407
9408 export type BackgroundClip = Globals | DataType.Box | (string & {});
9409
9410 export type BackgroundColor = Globals | DataType.Color;
9411
9412 export type BackgroundImage = Globals | "none" | (string & {});
9413
9414 export type BackgroundOrigin = Globals | DataType.Box | (string & {});
9415
9416 export type BackgroundPosition<TLength = (string & {}) | 0> = Globals | DataType.BgPosition<TLength> | (string & {});
9417
9418 export type BackgroundPositionX<TLength = (string & {}) | 0> = Globals | TLength | "center" | "left" | "right" | "x-end" | "x-start" | (string & {});
9419
9420 export type BackgroundPositionY<TLength = (string & {}) | 0> = Globals | TLength | "bottom" | "center" | "top" | "y-end" | "y-start" | (string & {});
9421
9422 export type BackgroundRepeat = Globals | DataType.RepeatStyle | (string & {});
9423
9424 export type BackgroundSize<TLength = (string & {}) | 0> = Globals | DataType.BgSize<TLength> | (string & {});
9425
9426 export type BlockOverflow = Globals | "clip" | "ellipsis" | (string & {});
9427
9428 export type BlockSize<TLength = (string & {}) | 0> =
9429 | Globals
9430 | TLength
9431 | "-moz-fit-content"
9432 | "-moz-max-content"
9433 | "-moz-min-content"
9434 | "auto"
9435 | "fit-content"
9436 | "max-content"
9437 | "min-content"
9438 | (string & {});
9439
9440 export type Border<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
9441
9442 export type BorderBlock<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
9443
9444 export type BorderBlockColor = Globals | DataType.Color | (string & {});
9445
9446 export type BorderBlockEnd<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
9447
9448 export type BorderBlockEndColor = Globals | DataType.Color;
9449
9450 export type BorderBlockEndStyle = Globals | DataType.LineStyle;
9451
9452 export type BorderBlockEndWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
9453
9454 export type BorderBlockStart<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
9455
9456 export type BorderBlockStartColor = Globals | DataType.Color;
9457
9458 export type BorderBlockStartStyle = Globals | DataType.LineStyle;
9459
9460 export type BorderBlockStartWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
9461
9462 export type BorderBlockStyle = Globals | DataType.LineStyle;
9463
9464 export type BorderBlockWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
9465
9466 export type BorderBottom<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
9467
9468 export type BorderBottomColor = Globals | DataType.Color;
9469
9470 export type BorderBottomLeftRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
9471
9472 export type BorderBottomRightRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
9473
9474 export type BorderBottomStyle = Globals | DataType.LineStyle;
9475
9476 export type BorderBottomWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
9477
9478 export type BorderCollapse = Globals | "collapse" | "separate";
9479
9480 export type BorderColor = Globals | DataType.Color | (string & {});
9481
9482 export type BorderEndEndRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
9483
9484 export type BorderEndStartRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
9485
9486 export type BorderImage = Globals | "none" | "repeat" | "round" | "space" | "stretch" | (string & {}) | (number & {});
9487
9488 export type BorderImageOutset<TLength = (string & {}) | 0> = Globals | TLength | (string & {}) | (number & {});
9489
9490 export type BorderImageRepeat = Globals | "repeat" | "round" | "space" | "stretch" | (string & {});
9491
9492 export type BorderImageSlice = Globals | (string & {}) | (number & {});
9493
9494 export type BorderImageSource = Globals | "none" | (string & {});
9495
9496 export type BorderImageWidth<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {}) | (number & {});
9497
9498 export type BorderInline<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
9499
9500 export type BorderInlineColor = Globals | DataType.Color | (string & {});
9501
9502 export type BorderInlineEnd<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
9503
9504 export type BorderInlineEndColor = Globals | DataType.Color;
9505
9506 export type BorderInlineEndStyle = Globals | DataType.LineStyle;
9507
9508 export type BorderInlineEndWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
9509
9510 export type BorderInlineStart<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
9511
9512 export type BorderInlineStartColor = Globals | DataType.Color;
9513
9514 export type BorderInlineStartStyle = Globals | DataType.LineStyle;
9515
9516 export type BorderInlineStartWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
9517
9518 export type BorderInlineStyle = Globals | DataType.LineStyle;
9519
9520 export type BorderInlineWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
9521
9522 export type BorderLeft<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
9523
9524 export type BorderLeftColor = Globals | DataType.Color;
9525
9526 export type BorderLeftStyle = Globals | DataType.LineStyle;
9527
9528 export type BorderLeftWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
9529
9530 export type BorderRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
9531
9532 export type BorderRight<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
9533
9534 export type BorderRightColor = Globals | DataType.Color;
9535
9536 export type BorderRightStyle = Globals | DataType.LineStyle;
9537
9538 export type BorderRightWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
9539
9540 export type BorderSpacing<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
9541
9542 export type BorderStartEndRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
9543
9544 export type BorderStartStartRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
9545
9546 export type BorderStyle = Globals | DataType.LineStyle | (string & {});
9547
9548 export type BorderTop<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
9549
9550 export type BorderTopColor = Globals | DataType.Color;
9551
9552 export type BorderTopLeftRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
9553
9554 export type BorderTopRightRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
9555
9556 export type BorderTopStyle = Globals | DataType.LineStyle;
9557
9558 export type BorderTopWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
9559
9560 export type BorderWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | (string & {});
9561
9562 export type Bottom<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
9563
9564 export type BoxAlign = Globals | "baseline" | "center" | "end" | "start" | "stretch";
9565
9566 export type BoxDecorationBreak = Globals | "clone" | "slice";
9567
9568 export type BoxDirection = Globals | "inherit" | "normal" | "reverse";
9569
9570 export type BoxFlex = Globals | (number & {}) | (string & {});
9571
9572 export type BoxFlexGroup = Globals | (number & {}) | (string & {});
9573
9574 export type BoxLines = Globals | "multiple" | "single";
9575
9576 export type BoxOrdinalGroup = Globals | (number & {}) | (string & {});
9577
9578 export type BoxOrient = Globals | "block-axis" | "horizontal" | "inherit" | "inline-axis" | "vertical";
9579
9580 export type BoxPack = Globals | "center" | "end" | "justify" | "start";
9581
9582 export type BoxShadow = Globals | "none" | (string & {});
9583
9584 export type BoxSizing = Globals | "border-box" | "content-box";
9585
9586 export type BreakAfter =
9587 | Globals
9588 | "all"
9589 | "always"
9590 | "auto"
9591 | "avoid"
9592 | "avoid-column"
9593 | "avoid-page"
9594 | "avoid-region"
9595 | "column"
9596 | "left"
9597 | "page"
9598 | "recto"
9599 | "region"
9600 | "right"
9601 | "verso";
9602
9603 export type BreakBefore =
9604 | Globals
9605 | "all"
9606 | "always"
9607 | "auto"
9608 | "avoid"
9609 | "avoid-column"
9610 | "avoid-page"
9611 | "avoid-region"
9612 | "column"
9613 | "left"
9614 | "page"
9615 | "recto"
9616 | "region"
9617 | "right"
9618 | "verso";
9619
9620 export type BreakInside = Globals | "auto" | "avoid" | "avoid-column" | "avoid-page" | "avoid-region";
9621
9622 export type CaptionSide = Globals | "block-end" | "block-start" | "bottom" | "inline-end" | "inline-start" | "top";
9623
9624 export type Caret = Globals | DataType.Color | "auto" | "bar" | "block" | "underscore" | (string & {});
9625
9626 export type CaretColor = Globals | DataType.Color | "auto";
9627
9628 export type CaretShape = Globals | "auto" | "bar" | "block" | "underscore";
9629
9630 export type Clear = Globals | "both" | "inline-end" | "inline-start" | "left" | "none" | "right";
9631
9632 export type Clip = Globals | "auto" | (string & {});
9633
9634 export type ClipPath = Globals | DataType.GeometryBox | "none" | (string & {});
9635
9636 export type Color = Globals | DataType.Color;
9637
9638 export type PrintColorAdjust = Globals | "economy" | "exact";
9639
9640 export type ColorScheme = Globals | "dark" | "light" | "normal" | (string & {});
9641
9642 export type ColumnCount = Globals | "auto" | (number & {}) | (string & {});
9643
9644 export type ColumnFill = Globals | "auto" | "balance" | "balance-all";
9645
9646 export type ColumnGap<TLength = (string & {}) | 0> = Globals | TLength | "normal" | (string & {});
9647
9648 export type ColumnRule<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
9649
9650 export type ColumnRuleColor = Globals | DataType.Color;
9651
9652 export type ColumnRuleStyle = Globals | DataType.LineStyle | (string & {});
9653
9654 export type ColumnRuleWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | (string & {});
9655
9656 export type ColumnSpan = Globals | "all" | "none";
9657
9658 export type ColumnWidth<TLength = (string & {}) | 0> = Globals | TLength | "auto";
9659
9660 export type Columns<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {}) | (number & {});
9661
9662 export type Contain = Globals | "content" | "inline-size" | "layout" | "none" | "paint" | "size" | "strict" | "style" | (string & {});
9663
9664 export type ContainIntrinsicBlockSize<TLength = (string & {}) | 0> = Globals | TLength | "none" | (string & {});
9665
9666 export type ContainIntrinsicHeight<TLength = (string & {}) | 0> = Globals | TLength | "none" | (string & {});
9667
9668 export type ContainIntrinsicInlineSize<TLength = (string & {}) | 0> = Globals | TLength | "none" | (string & {});
9669
9670 export type ContainIntrinsicSize<TLength = (string & {}) | 0> = Globals | TLength | "none" | (string & {});
9671
9672 export type ContainIntrinsicWidth<TLength = (string & {}) | 0> = Globals | TLength | "none" | (string & {});
9673
9674 export type Container = Globals | "none" | (string & {});
9675
9676 export type ContainerName = Globals | "none" | (string & {});
9677
9678 export type ContainerType = Globals | "inline-size" | "normal" | "size";
9679
9680 export type Content = Globals | DataType.ContentList | "none" | "normal" | (string & {});
9681
9682 export type ContentVisibility = Globals | "auto" | "hidden" | "visible";
9683
9684 export type CounterIncrement = Globals | "none" | (string & {});
9685
9686 export type CounterReset = Globals | "none" | (string & {});
9687
9688 export type CounterSet = Globals | "none" | (string & {});
9689
9690 export type Cursor =
9691 | Globals
9692 | "-moz-grab"
9693 | "-webkit-grab"
9694 | "alias"
9695 | "all-scroll"
9696 | "auto"
9697 | "cell"
9698 | "col-resize"
9699 | "context-menu"
9700 | "copy"
9701 | "crosshair"
9702 | "default"
9703 | "e-resize"
9704 | "ew-resize"
9705 | "grab"
9706 | "grabbing"
9707 | "help"
9708 | "move"
9709 | "n-resize"
9710 | "ne-resize"
9711 | "nesw-resize"
9712 | "no-drop"
9713 | "none"
9714 | "not-allowed"
9715 | "ns-resize"
9716 | "nw-resize"
9717 | "nwse-resize"
9718 | "pointer"
9719 | "progress"
9720 | "row-resize"
9721 | "s-resize"
9722 | "se-resize"
9723 | "sw-resize"
9724 | "text"
9725 | "vertical-text"
9726 | "w-resize"
9727 | "wait"
9728 | "zoom-in"
9729 | "zoom-out"
9730 | (string & {});
9731
9732 export type Direction = Globals | "ltr" | "rtl";
9733
9734 export type Display =
9735 | Globals
9736 | DataType.DisplayOutside
9737 | DataType.DisplayInside
9738 | DataType.DisplayInternal
9739 | DataType.DisplayLegacy
9740 | "contents"
9741 | "list-item"
9742 | "none"
9743 | (string & {});
9744
9745 export type EmptyCells = Globals | "hide" | "show";
9746
9747 export type Filter = Globals | "none" | (string & {});
9748
9749 export type Flex<TLength = (string & {}) | 0> = Globals | TLength | "auto" | "content" | "fit-content" | "max-content" | "min-content" | "none" | (string & {}) | (number & {});
9750
9751 export type FlexBasis<TLength = (string & {}) | 0> =
9752 | Globals
9753 | TLength
9754 | "-moz-fit-content"
9755 | "-moz-max-content"
9756 | "-moz-min-content"
9757 | "-webkit-auto"
9758 | "auto"
9759 | "content"
9760 | "fit-content"
9761 | "max-content"
9762 | "min-content"
9763 | (string & {});
9764
9765 export type FlexDirection = Globals | "column" | "column-reverse" | "row" | "row-reverse";
9766
9767 export type FlexFlow = Globals | "column" | "column-reverse" | "nowrap" | "row" | "row-reverse" | "wrap" | "wrap-reverse" | (string & {});
9768
9769 export type FlexGrow = Globals | (number & {}) | (string & {});
9770
9771 export type FlexShrink = Globals | (number & {}) | (string & {});
9772
9773 export type FlexWrap = Globals | "nowrap" | "wrap" | "wrap-reverse";
9774
9775 export type Float = Globals | "inline-end" | "inline-start" | "left" | "none" | "right";
9776
9777 export type Font = Globals | "caption" | "icon" | "menu" | "message-box" | "small-caption" | "status-bar" | (string & {});
9778
9779 export type FontFamily = Globals | DataType.GenericFamily | (string & {});
9780
9781 export type FontFeatureSettings = Globals | "normal" | (string & {});
9782
9783 export type FontKerning = Globals | "auto" | "none" | "normal";
9784
9785 export type FontLanguageOverride = Globals | "normal" | (string & {});
9786
9787 export type FontOpticalSizing = Globals | "auto" | "none";
9788
9789 export type FontPalette = Globals | "dark" | "light" | "normal" | (string & {});
9790
9791 export type FontSize<TLength = (string & {}) | 0> = Globals | DataType.AbsoluteSize | TLength | "larger" | "smaller" | (string & {});
9792
9793 export type FontSizeAdjust = Globals | "from-font" | "none" | (string & {}) | (number & {});
9794
9795 export type FontSmooth<TLength = (string & {}) | 0> = Globals | DataType.AbsoluteSize | TLength | "always" | "auto" | "never";
9796
9797 export type FontStretch = Globals | DataType.FontStretchAbsolute;
9798
9799 export type FontStyle = Globals | "italic" | "normal" | "oblique" | (string & {});
9800
9801 export type FontSynthesis = Globals | "none" | "position" | "small-caps" | "style" | "weight" | (string & {});
9802
9803 export type FontSynthesisPosition = Globals | "auto" | "none";
9804
9805 export type FontSynthesisSmallCaps = Globals | "auto" | "none";
9806
9807 export type FontSynthesisStyle = Globals | "auto" | "none";
9808
9809 export type FontSynthesisWeight = Globals | "auto" | "none";
9810
9811 export type FontVariant =
9812 | Globals
9813 | DataType.EastAsianVariantValues
9814 | "all-petite-caps"
9815 | "all-small-caps"
9816 | "common-ligatures"
9817 | "contextual"
9818 | "diagonal-fractions"
9819 | "discretionary-ligatures"
9820 | "full-width"
9821 | "historical-forms"
9822 | "historical-ligatures"
9823 | "lining-nums"
9824 | "no-common-ligatures"
9825 | "no-contextual"
9826 | "no-discretionary-ligatures"
9827 | "no-historical-ligatures"
9828 | "none"
9829 | "normal"
9830 | "oldstyle-nums"
9831 | "ordinal"
9832 | "petite-caps"
9833 | "proportional-nums"
9834 | "proportional-width"
9835 | "ruby"
9836 | "slashed-zero"
9837 | "small-caps"
9838 | "stacked-fractions"
9839 | "tabular-nums"
9840 | "titling-caps"
9841 | "unicase"
9842 | (string & {});
9843
9844 export type FontVariantAlternates = Globals | "historical-forms" | "normal" | (string & {});
9845
9846 export type FontVariantCaps = Globals | "all-petite-caps" | "all-small-caps" | "normal" | "petite-caps" | "small-caps" | "titling-caps" | "unicase";
9847
9848 export type FontVariantEastAsian = Globals | DataType.EastAsianVariantValues | "full-width" | "normal" | "proportional-width" | "ruby" | (string & {});
9849
9850 export type FontVariantEmoji = Globals | "emoji" | "normal" | "text" | "unicode";
9851
9852 export type FontVariantLigatures =
9853 | Globals
9854 | "common-ligatures"
9855 | "contextual"
9856 | "discretionary-ligatures"
9857 | "historical-ligatures"
9858 | "no-common-ligatures"
9859 | "no-contextual"
9860 | "no-discretionary-ligatures"
9861 | "no-historical-ligatures"
9862 | "none"
9863 | "normal"
9864 | (string & {});
9865
9866 export type FontVariantNumeric =
9867 | Globals
9868 | "diagonal-fractions"
9869 | "lining-nums"
9870 | "normal"
9871 | "oldstyle-nums"
9872 | "ordinal"
9873 | "proportional-nums"
9874 | "slashed-zero"
9875 | "stacked-fractions"
9876 | "tabular-nums"
9877 | (string & {});
9878
9879 export type FontVariantPosition = Globals | "normal" | "sub" | "super";
9880
9881 export type FontVariationSettings = Globals | "normal" | (string & {});
9882
9883 export type FontWeight = Globals | DataType.FontWeightAbsolute | "bolder" | "lighter";
9884
9885 export type ForcedColorAdjust = Globals | "auto" | "none";
9886
9887 export type Gap<TLength = (string & {}) | 0> = Globals | TLength | "normal" | (string & {});
9888
9889 export type Grid = Globals | "none" | (string & {});
9890
9891 export type GridArea = Globals | DataType.GridLine | (string & {});
9892
9893 export type GridAutoColumns<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | (string & {});
9894
9895 export type GridAutoFlow = Globals | "column" | "dense" | "row" | (string & {});
9896
9897 export type GridAutoRows<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | (string & {});
9898
9899 export type GridColumn = Globals | DataType.GridLine | (string & {});
9900
9901 export type GridColumnEnd = Globals | DataType.GridLine;
9902
9903 export type GridColumnGap<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
9904
9905 export type GridColumnStart = Globals | DataType.GridLine;
9906
9907 export type GridGap<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
9908
9909 export type GridRow = Globals | DataType.GridLine | (string & {});
9910
9911 export type GridRowEnd = Globals | DataType.GridLine;
9912
9913 export type GridRowGap<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
9914
9915 export type GridRowStart = Globals | DataType.GridLine;
9916
9917 export type GridTemplate = Globals | "none" | (string & {});
9918
9919 export type GridTemplateAreas = Globals | "none" | (string & {});
9920
9921 export type GridTemplateColumns<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | "none" | "subgrid" | (string & {});
9922
9923 export type GridTemplateRows<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | "none" | "subgrid" | (string & {});
9924
9925 export type HangingPunctuation = Globals | "allow-end" | "first" | "force-end" | "last" | "none" | (string & {});
9926
9927 export type Height<TLength = (string & {}) | 0> =
9928 | Globals
9929 | TLength
9930 | "-moz-max-content"
9931 | "-moz-min-content"
9932 | "-webkit-fit-content"
9933 | "auto"
9934 | "fit-content"
9935 | "max-content"
9936 | "min-content"
9937 | (string & {});
9938
9939 export type HyphenateCharacter = Globals | "auto" | (string & {});
9940
9941 export type HyphenateLimitChars = Globals | "auto" | (string & {}) | (number & {});
9942
9943 export type Hyphens = Globals | "auto" | "manual" | "none";
9944
9945 export type ImageOrientation = Globals | "flip" | "from-image" | (string & {});
9946
9947 export type ImageRendering = Globals | "-moz-crisp-edges" | "-webkit-optimize-contrast" | "auto" | "crisp-edges" | "pixelated";
9948
9949 export type ImageResolution = Globals | "from-image" | (string & {});
9950
9951 export type ImeMode = Globals | "active" | "auto" | "disabled" | "inactive" | "normal";
9952
9953 export type InitialLetter = Globals | "normal" | (string & {}) | (number & {});
9954
9955 export type InlineSize<TLength = (string & {}) | 0> =
9956 | Globals
9957 | TLength
9958 | "-moz-fit-content"
9959 | "-moz-max-content"
9960 | "-moz-min-content"
9961 | "-webkit-fill-available"
9962 | "auto"
9963 | "fit-content"
9964 | "max-content"
9965 | "min-content"
9966 | (string & {});
9967
9968 export type InputSecurity = Globals | "auto" | "none";
9969
9970 export type Inset<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
9971
9972 export type InsetBlock<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
9973
9974 export type InsetBlockEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
9975
9976 export type InsetBlockStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
9977
9978 export type InsetInline<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
9979
9980 export type InsetInlineEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
9981
9982 export type InsetInlineStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
9983
9984 export type Isolation = Globals | "auto" | "isolate";
9985
9986 export type JustifyContent = Globals | DataType.ContentDistribution | DataType.ContentPosition | "left" | "normal" | "right" | (string & {});
9987
9988 export type JustifyItems = Globals | DataType.SelfPosition | "baseline" | "left" | "legacy" | "normal" | "right" | "stretch" | (string & {});
9989
9990 export type JustifySelf = Globals | DataType.SelfPosition | "auto" | "baseline" | "left" | "normal" | "right" | "stretch" | (string & {});
9991
9992 export type JustifyTracks = Globals | DataType.ContentDistribution | DataType.ContentPosition | "left" | "normal" | "right" | (string & {});
9993
9994 export type Left<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
9995
9996 export type LetterSpacing<TLength = (string & {}) | 0> = Globals | TLength | "normal";
9997
9998 export type LineBreak = Globals | "anywhere" | "auto" | "loose" | "normal" | "strict";
9999
10000 export type LineClamp = Globals | "none" | (number & {}) | (string & {});
10001
10002 export type LineHeight<TLength = (string & {}) | 0> = Globals | TLength | "normal" | (string & {}) | (number & {});
10003
10004 export type LineHeightStep<TLength = (string & {}) | 0> = Globals | TLength;
10005
10006 export type ListStyle = Globals | "inside" | "none" | "outside" | (string & {});
10007
10008 export type ListStyleImage = Globals | "none" | (string & {});
10009
10010 export type ListStylePosition = Globals | "inside" | "outside";
10011
10012 export type ListStyleType = Globals | "none" | (string & {});
10013
10014 export type Margin<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10015
10016 export type MarginBlock<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10017
10018 export type MarginBlockEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10019
10020 export type MarginBlockStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10021
10022 export type MarginBottom<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10023
10024 export type MarginInline<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10025
10026 export type MarginInlineEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10027
10028 export type MarginInlineStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10029
10030 export type MarginLeft<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10031
10032 export type MarginRight<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10033
10034 export type MarginTop<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10035
10036 export type MarginTrim = Globals | "all" | "in-flow" | "none";
10037
10038 export type Mask<TLength = (string & {}) | 0> = Globals | DataType.MaskLayer<TLength> | (string & {});
10039
10040 export type MaskBorder = Globals | "alpha" | "luminance" | "none" | "repeat" | "round" | "space" | "stretch" | (string & {}) | (number & {});
10041
10042 export type MaskBorderMode = Globals | "alpha" | "luminance";
10043
10044 export type MaskBorderOutset<TLength = (string & {}) | 0> = Globals | TLength | (string & {}) | (number & {});
10045
10046 export type MaskBorderRepeat = Globals | "repeat" | "round" | "space" | "stretch" | (string & {});
10047
10048 export type MaskBorderSlice = Globals | (string & {}) | (number & {});
10049
10050 export type MaskBorderSource = Globals | "none" | (string & {});
10051
10052 export type MaskBorderWidth<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {}) | (number & {});
10053
10054 export type MaskClip = Globals | DataType.GeometryBox | "no-clip" | (string & {});
10055
10056 export type MaskComposite = Globals | DataType.CompositingOperator | (string & {});
10057
10058 export type MaskImage = Globals | "none" | (string & {});
10059
10060 export type MaskMode = Globals | DataType.MaskingMode | (string & {});
10061
10062 export type MaskOrigin = Globals | DataType.GeometryBox | (string & {});
10063
10064 export type MaskPosition<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | (string & {});
10065
10066 export type MaskRepeat = Globals | DataType.RepeatStyle | (string & {});
10067
10068 export type MaskSize<TLength = (string & {}) | 0> = Globals | DataType.BgSize<TLength> | (string & {});
10069
10070 export type MaskType = Globals | "alpha" | "luminance";
10071
10072 export type MasonryAutoFlow = Globals | "definite-first" | "next" | "ordered" | "pack" | (string & {});
10073
10074 export type MathDepth = Globals | "auto-add" | (string & {}) | (number & {});
10075
10076 export type MathShift = Globals | "compact" | "normal";
10077
10078 export type MathStyle = Globals | "compact" | "normal";
10079
10080 export type MaxBlockSize<TLength = (string & {}) | 0> =
10081 | Globals
10082 | TLength
10083 | "-moz-max-content"
10084 | "-moz-min-content"
10085 | "-webkit-fill-available"
10086 | "fit-content"
10087 | "max-content"
10088 | "min-content"
10089 | "none"
10090 | (string & {});
10091
10092 export type MaxHeight<TLength = (string & {}) | 0> =
10093 | Globals
10094 | TLength
10095 | "-moz-fit-content"
10096 | "-moz-max-content"
10097 | "-moz-min-content"
10098 | "-webkit-fit-content"
10099 | "-webkit-max-content"
10100 | "-webkit-min-content"
10101 | "fit-content"
10102 | "intrinsic"
10103 | "max-content"
10104 | "min-content"
10105 | "none"
10106 | (string & {});
10107
10108 export type MaxInlineSize<TLength = (string & {}) | 0> =
10109 | Globals
10110 | TLength
10111 | "-moz-fit-content"
10112 | "-moz-max-content"
10113 | "-moz-min-content"
10114 | "-webkit-fill-available"
10115 | "fit-content"
10116 | "max-content"
10117 | "min-content"
10118 | "none"
10119 | (string & {});
10120
10121 export type MaxLines = Globals | "none" | (number & {}) | (string & {});
10122
10123 export type MaxWidth<TLength = (string & {}) | 0> =
10124 | Globals
10125 | TLength
10126 | "-moz-fit-content"
10127 | "-moz-max-content"
10128 | "-moz-min-content"
10129 | "-webkit-fit-content"
10130 | "-webkit-max-content"
10131 | "-webkit-min-content"
10132 | "fit-content"
10133 | "intrinsic"
10134 | "max-content"
10135 | "min-content"
10136 | "none"
10137 | (string & {});
10138
10139 export type MinBlockSize<TLength = (string & {}) | 0> =
10140 | Globals
10141 | TLength
10142 | "-moz-max-content"
10143 | "-moz-min-content"
10144 | "-webkit-fill-available"
10145 | "auto"
10146 | "fit-content"
10147 | "max-content"
10148 | "min-content"
10149 | (string & {});
10150
10151 export type MinHeight<TLength = (string & {}) | 0> =
10152 | Globals
10153 | TLength
10154 | "-moz-fit-content"
10155 | "-moz-max-content"
10156 | "-moz-min-content"
10157 | "-webkit-fit-content"
10158 | "-webkit-max-content"
10159 | "-webkit-min-content"
10160 | "auto"
10161 | "fit-content"
10162 | "intrinsic"
10163 | "max-content"
10164 | "min-content"
10165 | (string & {});
10166
10167 export type MinInlineSize<TLength = (string & {}) | 0> =
10168 | Globals
10169 | TLength
10170 | "-moz-fit-content"
10171 | "-moz-max-content"
10172 | "-moz-min-content"
10173 | "-webkit-fill-available"
10174 | "auto"
10175 | "fit-content"
10176 | "max-content"
10177 | "min-content"
10178 | (string & {});
10179
10180 export type MinWidth<TLength = (string & {}) | 0> =
10181 | Globals
10182 | TLength
10183 | "-moz-fit-content"
10184 | "-moz-max-content"
10185 | "-moz-min-content"
10186 | "-webkit-fill-available"
10187 | "-webkit-fit-content"
10188 | "-webkit-max-content"
10189 | "-webkit-min-content"
10190 | "auto"
10191 | "fit-content"
10192 | "intrinsic"
10193 | "max-content"
10194 | "min-content"
10195 | "min-intrinsic"
10196 | (string & {});
10197
10198 export type MixBlendMode = Globals | DataType.BlendMode | "plus-lighter";
10199
10200 export type Offset<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | "auto" | "none" | "normal" | (string & {});
10201
10202 export type OffsetDistance<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10203
10204 export type OffsetPath = Globals | "none" | (string & {});
10205
10206 export type OffsetRotate = Globals | "auto" | "reverse" | (string & {});
10207
10208 export type ObjectFit = Globals | "contain" | "cover" | "fill" | "none" | "scale-down";
10209
10210 export type ObjectPosition<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength>;
10211
10212 export type OffsetAnchor<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | "auto";
10213
10214 export type OffsetPosition<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | "auto" | "normal";
10215
10216 export type Opacity = Globals | (string & {}) | (number & {});
10217
10218 export type Order = Globals | (number & {}) | (string & {});
10219
10220 export type Orphans = Globals | (number & {}) | (string & {});
10221
10222 export type Outline<TLength = (string & {}) | 0> = Globals | DataType.Color | DataType.LineStyle | DataType.LineWidth<TLength> | "auto" | "invert" | (string & {});
10223
10224 export type OutlineColor = Globals | DataType.Color | "invert";
10225
10226 export type OutlineOffset<TLength = (string & {}) | 0> = Globals | TLength;
10227
10228 export type OutlineStyle = Globals | DataType.LineStyle | "auto" | (string & {});
10229
10230 export type OutlineWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength>;
10231
10232 export type Overflow = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible" | (string & {});
10233
10234 export type OverflowAnchor = Globals | "auto" | "none";
10235
10236 export type OverflowBlock = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
10237
10238 export type OverflowClipBox = Globals | "content-box" | "padding-box";
10239
10240 export type OverflowClipMargin<TLength = (string & {}) | 0> = Globals | DataType.VisualBox | TLength | (string & {});
10241
10242 export type OverflowInline = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
10243
10244 export type OverflowWrap = Globals | "anywhere" | "break-word" | "normal";
10245
10246 export type OverflowX = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible";
10247
10248 export type OverflowY = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible";
10249
10250 export type Overlay = Globals | "auto" | "none";
10251
10252 export type OverscrollBehavior = Globals | "auto" | "contain" | "none" | (string & {});
10253
10254 export type OverscrollBehaviorBlock = Globals | "auto" | "contain" | "none";
10255
10256 export type OverscrollBehaviorInline = Globals | "auto" | "contain" | "none";
10257
10258 export type OverscrollBehaviorX = Globals | "auto" | "contain" | "none";
10259
10260 export type OverscrollBehaviorY = Globals | "auto" | "contain" | "none";
10261
10262 export type Padding<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10263
10264 export type PaddingBlock<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10265
10266 export type PaddingBlockEnd<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10267
10268 export type PaddingBlockStart<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10269
10270 export type PaddingBottom<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10271
10272 export type PaddingInline<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10273
10274 export type PaddingInlineEnd<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10275
10276 export type PaddingInlineStart<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10277
10278 export type PaddingLeft<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10279
10280 export type PaddingRight<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10281
10282 export type PaddingTop<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10283
10284 export type Page = Globals | "auto" | (string & {});
10285
10286 export type PageBreakAfter = Globals | "always" | "auto" | "avoid" | "left" | "recto" | "right" | "verso";
10287
10288 export type PageBreakBefore = Globals | "always" | "auto" | "avoid" | "left" | "recto" | "right" | "verso";
10289
10290 export type PageBreakInside = Globals | "auto" | "avoid";
10291
10292 export type PaintOrder = Globals | "fill" | "markers" | "normal" | "stroke" | (string & {});
10293
10294 export type Perspective<TLength = (string & {}) | 0> = Globals | TLength | "none";
10295
10296 export type PerspectiveOrigin<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength>;
10297
10298 export type PlaceContent = Globals | DataType.ContentDistribution | DataType.ContentPosition | "baseline" | "normal" | (string & {});
10299
10300 export type PlaceItems = Globals | DataType.SelfPosition | "baseline" | "normal" | "stretch" | (string & {});
10301
10302 export type PlaceSelf = Globals | DataType.SelfPosition | "auto" | "baseline" | "normal" | "stretch" | (string & {});
10303
10304 export type PointerEvents = Globals | "all" | "auto" | "fill" | "inherit" | "none" | "painted" | "stroke" | "visible" | "visibleFill" | "visiblePainted" | "visibleStroke";
10305
10306 export type Position = Globals | "-webkit-sticky" | "absolute" | "fixed" | "relative" | "static" | "sticky";
10307
10308 export type Quotes = Globals | "auto" | "none" | (string & {});
10309
10310 export type Resize = Globals | "block" | "both" | "horizontal" | "inline" | "none" | "vertical";
10311
10312 export type Right<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10313
10314 export type Rotate = Globals | "none" | (string & {});
10315
10316 export type RowGap<TLength = (string & {}) | 0> = Globals | TLength | "normal" | (string & {});
10317
10318 export type RubyAlign = Globals | "center" | "space-around" | "space-between" | "start";
10319
10320 export type RubyMerge = Globals | "auto" | "collapse" | "separate";
10321
10322 export type RubyPosition = Globals | "alternate" | "inter-character" | "over" | "under" | (string & {});
10323
10324 export type Scale = Globals | "none" | (string & {}) | (number & {});
10325
10326 export type ScrollBehavior = Globals | "auto" | "smooth";
10327
10328 export type ScrollMargin<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10329
10330 export type ScrollMarginBlock<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10331
10332 export type ScrollMarginBlockEnd<TLength = (string & {}) | 0> = Globals | TLength;
10333
10334 export type ScrollMarginBlockStart<TLength = (string & {}) | 0> = Globals | TLength;
10335
10336 export type ScrollMarginBottom<TLength = (string & {}) | 0> = Globals | TLength;
10337
10338 export type ScrollMarginInline<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10339
10340 export type ScrollMarginInlineEnd<TLength = (string & {}) | 0> = Globals | TLength;
10341
10342 export type ScrollMarginInlineStart<TLength = (string & {}) | 0> = Globals | TLength;
10343
10344 export type ScrollMarginLeft<TLength = (string & {}) | 0> = Globals | TLength;
10345
10346 export type ScrollMarginRight<TLength = (string & {}) | 0> = Globals | TLength;
10347
10348 export type ScrollMarginTop<TLength = (string & {}) | 0> = Globals | TLength;
10349
10350 export type ScrollPadding<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10351
10352 export type ScrollPaddingBlock<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10353
10354 export type ScrollPaddingBlockEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10355
10356 export type ScrollPaddingBlockStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10357
10358 export type ScrollPaddingBottom<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10359
10360 export type ScrollPaddingInline<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10361
10362 export type ScrollPaddingInlineEnd<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10363
10364 export type ScrollPaddingInlineStart<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10365
10366 export type ScrollPaddingLeft<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10367
10368 export type ScrollPaddingRight<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10369
10370 export type ScrollPaddingTop<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10371
10372 export type ScrollSnapAlign = Globals | "center" | "end" | "none" | "start" | (string & {});
10373
10374 export type ScrollSnapCoordinate<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | "none" | (string & {});
10375
10376 export type ScrollSnapDestination<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength>;
10377
10378 export type ScrollSnapPointsX = Globals | "none" | (string & {});
10379
10380 export type ScrollSnapPointsY = Globals | "none" | (string & {});
10381
10382 export type ScrollSnapStop = Globals | "always" | "normal";
10383
10384 export type ScrollSnapType = Globals | "block" | "both" | "inline" | "none" | "x" | "y" | (string & {});
10385
10386 export type ScrollSnapTypeX = Globals | "mandatory" | "none" | "proximity";
10387
10388 export type ScrollSnapTypeY = Globals | "mandatory" | "none" | "proximity";
10389
10390 export type ScrollTimeline = Globals | "none" | (string & {});
10391
10392 export type ScrollTimelineAxis = Globals | "block" | "inline" | "x" | "y" | (string & {});
10393
10394 export type ScrollTimelineName = Globals | "none" | (string & {});
10395
10396 export type ScrollbarColor = Globals | "auto" | (string & {});
10397
10398 export type ScrollbarGutter = Globals | "auto" | "stable" | (string & {});
10399
10400 export type ScrollbarWidth = Globals | "auto" | "none" | "thin";
10401
10402 export type ShapeImageThreshold = Globals | (string & {}) | (number & {});
10403
10404 export type ShapeMargin<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10405
10406 export type ShapeOutside = Globals | DataType.Box | "margin-box" | "none" | (string & {});
10407
10408 export type TabSize<TLength = (string & {}) | 0> = Globals | TLength | (number & {}) | (string & {});
10409
10410 export type TableLayout = Globals | "auto" | "fixed";
10411
10412 export type TextAlign = Globals | "-webkit-match-parent" | "center" | "end" | "justify" | "left" | "match-parent" | "right" | "start";
10413
10414 export type TextAlignLast = Globals | "auto" | "center" | "end" | "justify" | "left" | "right" | "start";
10415
10416 export type TextCombineUpright = Globals | "all" | "none" | (string & {});
10417
10418 export type TextDecoration<TLength = (string & {}) | 0> =
10419 | Globals
10420 | DataType.Color
10421 | TLength
10422 | "auto"
10423 | "blink"
10424 | "dashed"
10425 | "dotted"
10426 | "double"
10427 | "from-font"
10428 | "grammar-error"
10429 | "line-through"
10430 | "none"
10431 | "overline"
10432 | "solid"
10433 | "spelling-error"
10434 | "underline"
10435 | "wavy"
10436 | (string & {});
10437
10438 export type TextDecorationColor = Globals | DataType.Color;
10439
10440 export type TextDecorationLine = Globals | "blink" | "grammar-error" | "line-through" | "none" | "overline" | "spelling-error" | "underline" | (string & {});
10441
10442 export type TextDecorationSkip = Globals | "box-decoration" | "edges" | "leading-spaces" | "none" | "objects" | "spaces" | "trailing-spaces" | (string & {});
10443
10444 export type TextDecorationSkipInk = Globals | "all" | "auto" | "none";
10445
10446 export type TextDecorationStyle = Globals | "dashed" | "dotted" | "double" | "solid" | "wavy";
10447
10448 export type TextDecorationThickness<TLength = (string & {}) | 0> = Globals | TLength | "auto" | "from-font" | (string & {});
10449
10450 export type TextEmphasis = Globals | DataType.Color | "circle" | "dot" | "double-circle" | "filled" | "none" | "open" | "sesame" | "triangle" | (string & {});
10451
10452 export type TextEmphasisColor = Globals | DataType.Color;
10453
10454 export type TextEmphasisPosition = Globals | (string & {});
10455
10456 export type TextEmphasisStyle = Globals | "circle" | "dot" | "double-circle" | "filled" | "none" | "open" | "sesame" | "triangle" | (string & {});
10457
10458 export type TextIndent<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10459
10460 export type TextJustify = Globals | "auto" | "inter-character" | "inter-word" | "none";
10461
10462 export type TextOrientation = Globals | "mixed" | "sideways" | "upright";
10463
10464 export type TextOverflow = Globals | "clip" | "ellipsis" | (string & {});
10465
10466 export type TextRendering = Globals | "auto" | "geometricPrecision" | "optimizeLegibility" | "optimizeSpeed";
10467
10468 export type TextShadow = Globals | "none" | (string & {});
10469
10470 export type TextSizeAdjust = Globals | "auto" | "none" | (string & {});
10471
10472 export type TextTransform = Globals | "capitalize" | "full-size-kana" | "full-width" | "lowercase" | "none" | "uppercase";
10473
10474 export type TextUnderlineOffset<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10475
10476 export type TextUnderlinePosition = Globals | "auto" | "from-font" | "left" | "right" | "under" | (string & {});
10477
10478 export type TextWrap = Globals | "balance" | "nowrap" | "pretty" | "stable" | "wrap";
10479
10480 export type TimelineScope = Globals | "none" | (string & {});
10481
10482 export type Top<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10483
10484 export type TouchAction =
10485 | Globals
10486 | "-ms-manipulation"
10487 | "-ms-none"
10488 | "-ms-pinch-zoom"
10489 | "auto"
10490 | "manipulation"
10491 | "none"
10492 | "pan-down"
10493 | "pan-left"
10494 | "pan-right"
10495 | "pan-up"
10496 | "pan-x"
10497 | "pan-y"
10498 | "pinch-zoom"
10499 | (string & {});
10500
10501 export type Transform = Globals | "none" | (string & {});
10502
10503 export type TransformBox = Globals | "border-box" | "content-box" | "fill-box" | "stroke-box" | "view-box";
10504
10505 export type TransformOrigin<TLength = (string & {}) | 0> = Globals | TLength | "bottom" | "center" | "left" | "right" | "top" | (string & {});
10506
10507 export type TransformStyle = Globals | "flat" | "preserve-3d";
10508
10509 export type Transition<TTime = string & {}> = Globals | DataType.SingleTransition<TTime> | (string & {});
10510
10511 export type TransitionBehavior = Globals | "allow-discrete" | "normal" | (string & {});
10512
10513 export type TransitionDelay<TTime = string & {}> = Globals | TTime | (string & {});
10514
10515 export type TransitionDuration<TTime = string & {}> = Globals | TTime | (string & {});
10516
10517 export type TransitionProperty = Globals | "all" | "none" | (string & {});
10518
10519 export type TransitionTimingFunction = Globals | DataType.EasingFunction | (string & {});
10520
10521 export type Translate<TLength = (string & {}) | 0> = Globals | TLength | "none" | (string & {});
10522
10523 export type UnicodeBidi =
10524 | Globals
10525 | "-moz-isolate"
10526 | "-moz-isolate-override"
10527 | "-moz-plaintext"
10528 | "-webkit-isolate"
10529 | "-webkit-isolate-override"
10530 | "-webkit-plaintext"
10531 | "bidi-override"
10532 | "embed"
10533 | "isolate"
10534 | "isolate-override"
10535 | "normal"
10536 | "plaintext";
10537
10538 export type UserSelect = Globals | "-moz-none" | "all" | "auto" | "contain" | "element" | "none" | "text";
10539
10540 export type VerticalAlign<TLength = (string & {}) | 0> =
10541 | Globals
10542 | TLength
10543 | "baseline"
10544 | "bottom"
10545 | "middle"
10546 | "sub"
10547 | "super"
10548 | "text-bottom"
10549 | "text-top"
10550 | "top"
10551 | (string & {});
10552
10553 export type ViewTimeline = Globals | "none" | (string & {});
10554
10555 export type ViewTimelineAxis = Globals | "block" | "inline" | "x" | "y" | (string & {});
10556
10557 export type ViewTimelineInset<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
10558
10559 export type ViewTimelineName = Globals | "none" | (string & {});
10560
10561 export type ViewTransitionName = Globals | "none" | (string & {});
10562
10563 export type Visibility = Globals | "collapse" | "hidden" | "visible";
10564
10565 export type WhiteSpace =
10566 | Globals
10567 | "-moz-pre-wrap"
10568 | "balance"
10569 | "break-spaces"
10570 | "collapse"
10571 | "discard"
10572 | "discard-after"
10573 | "discard-before"
10574 | "discard-inner"
10575 | "none"
10576 | "normal"
10577 | "nowrap"
10578 | "pre"
10579 | "pre-line"
10580 | "pre-wrap"
10581 | "preserve"
10582 | "preserve-breaks"
10583 | "preserve-spaces"
10584 | "pretty"
10585 | "stable"
10586 | "wrap"
10587 | (string & {});
10588
10589 export type WhiteSpaceCollapse = Globals | "break-spaces" | "collapse" | "discard" | "preserve" | "preserve-breaks" | "preserve-spaces";
10590
10591 export type WhiteSpaceTrim = Globals | "discard-after" | "discard-before" | "discard-inner" | "none" | (string & {});
10592
10593 export type Widows = Globals | (number & {}) | (string & {});
10594
10595 export type Width<TLength = (string & {}) | 0> =
10596 | Globals
10597 | TLength
10598 | "-moz-fit-content"
10599 | "-moz-max-content"
10600 | "-moz-min-content"
10601 | "-webkit-fit-content"
10602 | "-webkit-max-content"
10603 | "auto"
10604 | "fit-content"
10605 | "intrinsic"
10606 | "max-content"
10607 | "min-content"
10608 | "min-intrinsic"
10609 | (string & {});
10610
10611 export type WillChange = Globals | DataType.AnimateableFeature | "auto" | (string & {});
10612
10613 export type WordBreak = Globals | "break-all" | "break-word" | "keep-all" | "normal";
10614
10615 export type WordSpacing<TLength = (string & {}) | 0> = Globals | TLength | "normal";
10616
10617 export type WordWrap = Globals | "break-word" | "normal";
10618
10619 export type WritingMode = Globals | "horizontal-tb" | "sideways-lr" | "sideways-rl" | "vertical-lr" | "vertical-rl";
10620
10621 export type ZIndex = Globals | "auto" | (number & {}) | (string & {});
10622
10623 export type Zoom = Globals | "normal" | "reset" | (string & {}) | (number & {});
10624
10625 export type MozAppearance =
10626 | Globals
10627 | "-moz-mac-unified-toolbar"
10628 | "-moz-win-borderless-glass"
10629 | "-moz-win-browsertabbar-toolbox"
10630 | "-moz-win-communications-toolbox"
10631 | "-moz-win-communicationstext"
10632 | "-moz-win-exclude-glass"
10633 | "-moz-win-glass"
10634 | "-moz-win-media-toolbox"
10635 | "-moz-win-mediatext"
10636 | "-moz-window-button-box"
10637 | "-moz-window-button-box-maximized"
10638 | "-moz-window-button-close"
10639 | "-moz-window-button-maximize"
10640 | "-moz-window-button-minimize"
10641 | "-moz-window-button-restore"
10642 | "-moz-window-frame-bottom"
10643 | "-moz-window-frame-left"
10644 | "-moz-window-frame-right"
10645 | "-moz-window-titlebar"
10646 | "-moz-window-titlebar-maximized"
10647 | "button"
10648 | "button-arrow-down"
10649 | "button-arrow-next"
10650 | "button-arrow-previous"
10651 | "button-arrow-up"
10652 | "button-bevel"
10653 | "button-focus"
10654 | "caret"
10655 | "checkbox"
10656 | "checkbox-container"
10657 | "checkbox-label"
10658 | "checkmenuitem"
10659 | "dualbutton"
10660 | "groupbox"
10661 | "listbox"
10662 | "listitem"
10663 | "menuarrow"
10664 | "menubar"
10665 | "menucheckbox"
10666 | "menuimage"
10667 | "menuitem"
10668 | "menuitemtext"
10669 | "menulist"
10670 | "menulist-button"
10671 | "menulist-text"
10672 | "menulist-textfield"
10673 | "menupopup"
10674 | "menuradio"
10675 | "menuseparator"
10676 | "meterbar"
10677 | "meterchunk"
10678 | "none"
10679 | "progressbar"
10680 | "progressbar-vertical"
10681 | "progresschunk"
10682 | "progresschunk-vertical"
10683 | "radio"
10684 | "radio-container"
10685 | "radio-label"
10686 | "radiomenuitem"
10687 | "range"
10688 | "range-thumb"
10689 | "resizer"
10690 | "resizerpanel"
10691 | "scale-horizontal"
10692 | "scale-vertical"
10693 | "scalethumb-horizontal"
10694 | "scalethumb-vertical"
10695 | "scalethumbend"
10696 | "scalethumbstart"
10697 | "scalethumbtick"
10698 | "scrollbarbutton-down"
10699 | "scrollbarbutton-left"
10700 | "scrollbarbutton-right"
10701 | "scrollbarbutton-up"
10702 | "scrollbarthumb-horizontal"
10703 | "scrollbarthumb-vertical"
10704 | "scrollbartrack-horizontal"
10705 | "scrollbartrack-vertical"
10706 | "searchfield"
10707 | "separator"
10708 | "sheet"
10709 | "spinner"
10710 | "spinner-downbutton"
10711 | "spinner-textfield"
10712 | "spinner-upbutton"
10713 | "splitter"
10714 | "statusbar"
10715 | "statusbarpanel"
10716 | "tab"
10717 | "tab-scroll-arrow-back"
10718 | "tab-scroll-arrow-forward"
10719 | "tabpanel"
10720 | "tabpanels"
10721 | "textfield"
10722 | "textfield-multiline"
10723 | "toolbar"
10724 | "toolbarbutton"
10725 | "toolbarbutton-dropdown"
10726 | "toolbargripper"
10727 | "toolbox"
10728 | "tooltip"
10729 | "treeheader"
10730 | "treeheadercell"
10731 | "treeheadersortarrow"
10732 | "treeitem"
10733 | "treeline"
10734 | "treetwisty"
10735 | "treetwistyopen"
10736 | "treeview";
10737
10738 export type MozBinding = Globals | "none" | (string & {});
10739
10740 export type MozBorderBottomColors = Globals | DataType.Color | "none" | (string & {});
10741
10742 export type MozBorderLeftColors = Globals | DataType.Color | "none" | (string & {});
10743
10744 export type MozBorderRightColors = Globals | DataType.Color | "none" | (string & {});
10745
10746 export type MozBorderTopColors = Globals | DataType.Color | "none" | (string & {});
10747
10748 export type MozContextProperties = Globals | "fill" | "fill-opacity" | "none" | "stroke" | "stroke-opacity" | (string & {});
10749
10750 export type MozFloatEdge = Globals | "border-box" | "content-box" | "margin-box" | "padding-box";
10751
10752 export type MozForceBrokenImageIcon = Globals | 0 | (string & {}) | 1;
10753
10754 export type MozImageRegion = Globals | "auto" | (string & {});
10755
10756 export type MozOrient = Globals | "block" | "horizontal" | "inline" | "vertical";
10757
10758 export type MozOutlineRadius<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10759
10760 export type MozOutlineRadiusBottomleft<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10761
10762 export type MozOutlineRadiusBottomright<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10763
10764 export type MozOutlineRadiusTopleft<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10765
10766 export type MozOutlineRadiusTopright<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10767
10768 export type MozStackSizing = Globals | "ignore" | "stretch-to-fit";
10769
10770 export type MozTextBlink = Globals | "blink" | "none";
10771
10772 export type MozUserFocus = Globals | "ignore" | "none" | "normal" | "select-after" | "select-all" | "select-before" | "select-menu" | "select-same";
10773
10774 export type MozUserInput = Globals | "auto" | "disabled" | "enabled" | "none";
10775
10776 export type MozUserModify = Globals | "read-only" | "read-write" | "write-only";
10777
10778 export type MozWindowDragging = Globals | "drag" | "no-drag";
10779
10780 export type MozWindowShadow = Globals | "default" | "menu" | "none" | "sheet" | "tooltip";
10781
10782 export type MsAccelerator = Globals | "false" | "true";
10783
10784 export type MsBlockProgression = Globals | "bt" | "lr" | "rl" | "tb";
10785
10786 export type MsContentZoomChaining = Globals | "chained" | "none";
10787
10788 export type MsContentZoomLimit = Globals | (string & {});
10789
10790 export type MsContentZoomLimitMax = Globals | (string & {});
10791
10792 export type MsContentZoomLimitMin = Globals | (string & {});
10793
10794 export type MsContentZoomSnap = Globals | "mandatory" | "none" | "proximity" | (string & {});
10795
10796 export type MsContentZoomSnapPoints = Globals | (string & {});
10797
10798 export type MsContentZoomSnapType = Globals | "mandatory" | "none" | "proximity";
10799
10800 export type MsContentZooming = Globals | "none" | "zoom";
10801
10802 export type MsFilter = Globals | (string & {});
10803
10804 export type MsFlowFrom = Globals | "none" | (string & {});
10805
10806 export type MsFlowInto = Globals | "none" | (string & {});
10807
10808 export type MsGridColumns<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | "none" | (string & {});
10809
10810 export type MsGridRows<TLength = (string & {}) | 0> = Globals | DataType.TrackBreadth<TLength> | "none" | (string & {});
10811
10812 export type MsHighContrastAdjust = Globals | "auto" | "none";
10813
10814 export type MsHyphenateLimitChars = Globals | "auto" | (string & {}) | (number & {});
10815
10816 export type MsHyphenateLimitLines = Globals | "no-limit" | (number & {}) | (string & {});
10817
10818 export type MsHyphenateLimitZone<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
10819
10820 export type MsImeAlign = Globals | "after" | "auto";
10821
10822 export type MsOverflowStyle = Globals | "-ms-autohiding-scrollbar" | "auto" | "none" | "scrollbar";
10823
10824 export type MsScrollChaining = Globals | "chained" | "none";
10825
10826 export type MsScrollLimit = Globals | (string & {});
10827
10828 export type MsScrollLimitXMax<TLength = (string & {}) | 0> = Globals | TLength | "auto";
10829
10830 export type MsScrollLimitXMin<TLength = (string & {}) | 0> = Globals | TLength;
10831
10832 export type MsScrollLimitYMax<TLength = (string & {}) | 0> = Globals | TLength | "auto";
10833
10834 export type MsScrollLimitYMin<TLength = (string & {}) | 0> = Globals | TLength;
10835
10836 export type MsScrollRails = Globals | "none" | "railed";
10837
10838 export type MsScrollSnapPointsX = Globals | (string & {});
10839
10840 export type MsScrollSnapPointsY = Globals | (string & {});
10841
10842 export type MsScrollSnapType = Globals | "mandatory" | "none" | "proximity";
10843
10844 export type MsScrollSnapX = Globals | (string & {});
10845
10846 export type MsScrollSnapY = Globals | (string & {});
10847
10848 export type MsScrollTranslation = Globals | "none" | "vertical-to-horizontal";
10849
10850 export type MsScrollbar3dlightColor = Globals | DataType.Color;
10851
10852 export type MsScrollbarArrowColor = Globals | DataType.Color;
10853
10854 export type MsScrollbarBaseColor = Globals | DataType.Color;
10855
10856 export type MsScrollbarDarkshadowColor = Globals | DataType.Color;
10857
10858 export type MsScrollbarFaceColor = Globals | DataType.Color;
10859
10860 export type MsScrollbarHighlightColor = Globals | DataType.Color;
10861
10862 export type MsScrollbarShadowColor = Globals | DataType.Color;
10863
10864 export type MsScrollbarTrackColor = Globals | DataType.Color;
10865
10866 export type MsTextAutospace = Globals | "ideograph-alpha" | "ideograph-numeric" | "ideograph-parenthesis" | "ideograph-space" | "none";
10867
10868 export type MsTouchSelect = Globals | "grippers" | "none";
10869
10870 export type MsUserSelect = Globals | "element" | "none" | "text";
10871
10872 export type MsWrapFlow = Globals | "auto" | "both" | "clear" | "end" | "maximum" | "start";
10873
10874 export type MsWrapMargin<TLength = (string & {}) | 0> = Globals | TLength;
10875
10876 export type MsWrapThrough = Globals | "none" | "wrap";
10877
10878 export type WebkitAppearance =
10879 | Globals
10880 | "-apple-pay-button"
10881 | "button"
10882 | "button-bevel"
10883 | "caret"
10884 | "checkbox"
10885 | "default-button"
10886 | "inner-spin-button"
10887 | "listbox"
10888 | "listitem"
10889 | "media-controls-background"
10890 | "media-controls-fullscreen-background"
10891 | "media-current-time-display"
10892 | "media-enter-fullscreen-button"
10893 | "media-exit-fullscreen-button"
10894 | "media-fullscreen-button"
10895 | "media-mute-button"
10896 | "media-overlay-play-button"
10897 | "media-play-button"
10898 | "media-seek-back-button"
10899 | "media-seek-forward-button"
10900 | "media-slider"
10901 | "media-sliderthumb"
10902 | "media-time-remaining-display"
10903 | "media-toggle-closed-captions-button"
10904 | "media-volume-slider"
10905 | "media-volume-slider-container"
10906 | "media-volume-sliderthumb"
10907 | "menulist"
10908 | "menulist-button"
10909 | "menulist-text"
10910 | "menulist-textfield"
10911 | "meter"
10912 | "none"
10913 | "progress-bar"
10914 | "progress-bar-value"
10915 | "push-button"
10916 | "radio"
10917 | "searchfield"
10918 | "searchfield-cancel-button"
10919 | "searchfield-decoration"
10920 | "searchfield-results-button"
10921 | "searchfield-results-decoration"
10922 | "slider-horizontal"
10923 | "slider-vertical"
10924 | "sliderthumb-horizontal"
10925 | "sliderthumb-vertical"
10926 | "square-button"
10927 | "textarea"
10928 | "textfield";
10929
10930 export type WebkitBorderBefore<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color | (string & {});
10931
10932 export type WebkitBorderBeforeColor = Globals | DataType.Color;
10933
10934 export type WebkitBorderBeforeStyle = Globals | DataType.LineStyle | (string & {});
10935
10936 export type WebkitBorderBeforeWidth<TLength = (string & {}) | 0> = Globals | DataType.LineWidth<TLength> | (string & {});
10937
10938 export type WebkitBoxReflect<TLength = (string & {}) | 0> = Globals | TLength | "above" | "below" | "left" | "right" | (string & {});
10939
10940 export type WebkitLineClamp = Globals | "none" | (number & {}) | (string & {});
10941
10942 export type WebkitMask<TLength = (string & {}) | 0> =
10943 | Globals
10944 | DataType.Position<TLength>
10945 | DataType.RepeatStyle
10946 | DataType.Box
10947 | "border"
10948 | "content"
10949 | "none"
10950 | "padding"
10951 | "text"
10952 | (string & {});
10953
10954 export type WebkitMaskAttachment = Globals | DataType.Attachment | (string & {});
10955
10956 export type WebkitMaskClip = Globals | DataType.Box | "border" | "content" | "padding" | "text" | (string & {});
10957
10958 export type WebkitMaskComposite = Globals | DataType.CompositeStyle | (string & {});
10959
10960 export type WebkitMaskImage = Globals | "none" | (string & {});
10961
10962 export type WebkitMaskOrigin = Globals | DataType.Box | "border" | "content" | "padding" | (string & {});
10963
10964 export type WebkitMaskPosition<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | (string & {});
10965
10966 export type WebkitMaskPositionX<TLength = (string & {}) | 0> = Globals | TLength | "center" | "left" | "right" | (string & {});
10967
10968 export type WebkitMaskPositionY<TLength = (string & {}) | 0> = Globals | TLength | "bottom" | "center" | "top" | (string & {});
10969
10970 export type WebkitMaskRepeat = Globals | DataType.RepeatStyle | (string & {});
10971
10972 export type WebkitMaskRepeatX = Globals | "no-repeat" | "repeat" | "round" | "space";
10973
10974 export type WebkitMaskRepeatY = Globals | "no-repeat" | "repeat" | "round" | "space";
10975
10976 export type WebkitMaskSize<TLength = (string & {}) | 0> = Globals | DataType.BgSize<TLength> | (string & {});
10977
10978 export type WebkitOverflowScrolling = Globals | "auto" | "touch";
10979
10980 export type WebkitTapHighlightColor = Globals | DataType.Color;
10981
10982 export type WebkitTextFillColor = Globals | DataType.Color;
10983
10984 export type WebkitTextStroke<TLength = (string & {}) | 0> = Globals | DataType.Color | TLength | (string & {});
10985
10986 export type WebkitTextStrokeColor = Globals | DataType.Color;
10987
10988 export type WebkitTextStrokeWidth<TLength = (string & {}) | 0> = Globals | TLength;
10989
10990 export type WebkitTouchCallout = Globals | "default" | "none";
10991
10992 export type WebkitUserModify = Globals | "read-only" | "read-write" | "read-write-plaintext-only";
10993
10994 export type AlignmentBaseline =
10995 | Globals
10996 | "after-edge"
10997 | "alphabetic"
10998 | "auto"
10999 | "baseline"
11000 | "before-edge"
11001 | "central"
11002 | "hanging"
11003 | "ideographic"
11004 | "mathematical"
11005 | "middle"
11006 | "text-after-edge"
11007 | "text-before-edge";
11008
11009 export type BaselineShift<TLength = (string & {}) | 0> = Globals | TLength | "baseline" | "sub" | "super" | (string & {});
11010
11011 export type ClipRule = Globals | "evenodd" | "nonzero";
11012
11013 export type ColorInterpolation = Globals | "auto" | "linearRGB" | "sRGB";
11014
11015 export type ColorRendering = Globals | "auto" | "optimizeQuality" | "optimizeSpeed";
11016
11017 export type DominantBaseline =
11018 | Globals
11019 | "alphabetic"
11020 | "auto"
11021 | "central"
11022 | "hanging"
11023 | "ideographic"
11024 | "mathematical"
11025 | "middle"
11026 | "no-change"
11027 | "reset-size"
11028 | "text-after-edge"
11029 | "text-before-edge"
11030 | "use-script";
11031
11032 export type Fill = Globals | DataType.Paint;
11033
11034 export type FillOpacity = Globals | (number & {}) | (string & {});
11035
11036 export type FillRule = Globals | "evenodd" | "nonzero";
11037
11038 export type FloodColor = Globals | DataType.Color | "currentColor";
11039
11040 export type FloodOpacity = Globals | (number & {}) | (string & {});
11041
11042 export type GlyphOrientationVertical = Globals | "auto" | (string & {}) | (number & {});
11043
11044 export type LightingColor = Globals | DataType.Color | "currentColor";
11045
11046 export type Marker = Globals | "none" | (string & {});
11047
11048 export type MarkerEnd = Globals | "none" | (string & {});
11049
11050 export type MarkerMid = Globals | "none" | (string & {});
11051
11052 export type MarkerStart = Globals | "none" | (string & {});
11053
11054 export type ShapeRendering = Globals | "auto" | "crispEdges" | "geometricPrecision" | "optimizeSpeed";
11055
11056 export type StopColor = Globals | DataType.Color | "currentColor";
11057
11058 export type StopOpacity = Globals | (number & {}) | (string & {});
11059
11060 export type Stroke = Globals | DataType.Paint;
11061
11062 export type StrokeDasharray<TLength = (string & {}) | 0> = Globals | DataType.Dasharray<TLength> | "none";
11063
11064 export type StrokeDashoffset<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
11065
11066 export type StrokeLinecap = Globals | "butt" | "round" | "square";
11067
11068 export type StrokeLinejoin = Globals | "bevel" | "miter" | "round";
11069
11070 export type StrokeMiterlimit = Globals | (number & {}) | (string & {});
11071
11072 export type StrokeOpacity = Globals | (number & {}) | (string & {});
11073
11074 export type StrokeWidth<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
11075
11076 export type TextAnchor = Globals | "end" | "middle" | "start";
11077
11078 export type VectorEffect = Globals | "non-scaling-stroke" | "none";
11079}
11080
11081/**
11082 * **Attention!** Data types receives its name from the spec. E.g. `<color>` becomes `DataType.Color` and
11083 * `<content-distribution>` becomes `DataType.ContentDistribution`. It happens quite frequent that these data types
11084 * are split into several data types or/and name changes as the spec develops. So there's a risk that a minor/patch
11085 * update from `csstype` can break your typing if you're using the `DataType` namespace.
11086 */
11087declare namespace DataType {
11088 type AbsoluteSize = "large" | "medium" | "small" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large";
11089
11090 type AnimateableFeature = "contents" | "scroll-position" | (string & {});
11091
11092 type Attachment = "fixed" | "local" | "scroll";
11093
11094 type BgPosition<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top" | (string & {});
11095
11096 type BgSize<TLength> = TLength | "auto" | "contain" | "cover" | (string & {});
11097
11098 type BlendMode =
11099 | "color"
11100 | "color-burn"
11101 | "color-dodge"
11102 | "darken"
11103 | "difference"
11104 | "exclusion"
11105 | "hard-light"
11106 | "hue"
11107 | "lighten"
11108 | "luminosity"
11109 | "multiply"
11110 | "normal"
11111 | "overlay"
11112 | "saturation"
11113 | "screen"
11114 | "soft-light";
11115
11116 type Box = "border-box" | "content-box" | "padding-box";
11117
11118 type Color = NamedColor | DeprecatedSystemColor | "currentcolor" | (string & {});
11119
11120 type CompatAuto =
11121 | "button"
11122 | "checkbox"
11123 | "listbox"
11124 | "menulist"
11125 | "meter"
11126 | "progress-bar"
11127 | "push-button"
11128 | "radio"
11129 | "searchfield"
11130 | "slider-horizontal"
11131 | "square-button"
11132 | "textarea";
11133
11134 type CompositeStyle =
11135 | "clear"
11136 | "copy"
11137 | "destination-atop"
11138 | "destination-in"
11139 | "destination-out"
11140 | "destination-over"
11141 | "source-atop"
11142 | "source-in"
11143 | "source-out"
11144 | "source-over"
11145 | "xor";
11146
11147 type CompositingOperator = "add" | "exclude" | "intersect" | "subtract";
11148
11149 type ContentDistribution = "space-around" | "space-between" | "space-evenly" | "stretch";
11150
11151 type ContentList = Quote | "contents" | (string & {});
11152
11153 type ContentPosition = "center" | "end" | "flex-end" | "flex-start" | "start";
11154
11155 type CubicBezierTimingFunction = "ease" | "ease-in" | "ease-in-out" | "ease-out" | (string & {});
11156
11157 type Dasharray<TLength> = TLength | (string & {}) | (number & {});
11158
11159 type DeprecatedSystemColor =
11160 | "ActiveBorder"
11161 | "ActiveCaption"
11162 | "AppWorkspace"
11163 | "Background"
11164 | "ButtonFace"
11165 | "ButtonHighlight"
11166 | "ButtonShadow"
11167 | "ButtonText"
11168 | "CaptionText"
11169 | "GrayText"
11170 | "Highlight"
11171 | "HighlightText"
11172 | "InactiveBorder"
11173 | "InactiveCaption"
11174 | "InactiveCaptionText"
11175 | "InfoBackground"
11176 | "InfoText"
11177 | "Menu"
11178 | "MenuText"
11179 | "Scrollbar"
11180 | "ThreeDDarkShadow"
11181 | "ThreeDFace"
11182 | "ThreeDHighlight"
11183 | "ThreeDLightShadow"
11184 | "ThreeDShadow"
11185 | "Window"
11186 | "WindowFrame"
11187 | "WindowText";
11188
11189 type DisplayInside = "-ms-flexbox" | "-ms-grid" | "-webkit-flex" | "flex" | "flow" | "flow-root" | "grid" | "ruby" | "table";
11190
11191 type DisplayInternal =
11192 | "ruby-base"
11193 | "ruby-base-container"
11194 | "ruby-text"
11195 | "ruby-text-container"
11196 | "table-caption"
11197 | "table-cell"
11198 | "table-column"
11199 | "table-column-group"
11200 | "table-footer-group"
11201 | "table-header-group"
11202 | "table-row"
11203 | "table-row-group";
11204
11205 type DisplayLegacy = "-ms-inline-flexbox" | "-ms-inline-grid" | "-webkit-inline-flex" | "inline-block" | "inline-flex" | "inline-grid" | "inline-list-item" | "inline-table";
11206
11207 type DisplayOutside = "block" | "inline" | "run-in";
11208
11209 type EasingFunction = CubicBezierTimingFunction | StepTimingFunction | "linear";
11210
11211 type EastAsianVariantValues = "jis04" | "jis78" | "jis83" | "jis90" | "simplified" | "traditional";
11212
11213 type FinalBgLayer<TLength> = Color | BgPosition<TLength> | RepeatStyle | Attachment | Box | "none" | (string & {});
11214
11215 type FontStretchAbsolute =
11216 | "condensed"
11217 | "expanded"
11218 | "extra-condensed"
11219 | "extra-expanded"
11220 | "normal"
11221 | "semi-condensed"
11222 | "semi-expanded"
11223 | "ultra-condensed"
11224 | "ultra-expanded"
11225 | (string & {});
11226
11227 type FontWeightAbsolute = "bold" | "normal" | (number & {}) | (string & {});
11228
11229 type GenericFamily = "cursive" | "fantasy" | "monospace" | "sans-serif" | "serif";
11230
11231 type GeometryBox = Box | "fill-box" | "margin-box" | "stroke-box" | "view-box";
11232
11233 type GridLine = "auto" | (string & {}) | (number & {});
11234
11235 type LineStyle = "dashed" | "dotted" | "double" | "groove" | "hidden" | "inset" | "none" | "outset" | "ridge" | "solid";
11236
11237 type LineWidth<TLength> = TLength | "medium" | "thick" | "thin";
11238
11239 type MaskLayer<TLength> = Position<TLength> | RepeatStyle | GeometryBox | CompositingOperator | MaskingMode | "no-clip" | "none" | (string & {});
11240
11241 type MaskingMode = "alpha" | "luminance" | "match-source";
11242
11243 type NamedColor =
11244 | "aliceblue"
11245 | "antiquewhite"
11246 | "aqua"
11247 | "aquamarine"
11248 | "azure"
11249 | "beige"
11250 | "bisque"
11251 | "black"
11252 | "blanchedalmond"
11253 | "blue"
11254 | "blueviolet"
11255 | "brown"
11256 | "burlywood"
11257 | "cadetblue"
11258 | "chartreuse"
11259 | "chocolate"
11260 | "coral"
11261 | "cornflowerblue"
11262 | "cornsilk"
11263 | "crimson"
11264 | "cyan"
11265 | "darkblue"
11266 | "darkcyan"
11267 | "darkgoldenrod"
11268 | "darkgray"
11269 | "darkgreen"
11270 | "darkgrey"
11271 | "darkkhaki"
11272 | "darkmagenta"
11273 | "darkolivegreen"
11274 | "darkorange"
11275 | "darkorchid"
11276 | "darkred"
11277 | "darksalmon"
11278 | "darkseagreen"
11279 | "darkslateblue"
11280 | "darkslategray"
11281 | "darkslategrey"
11282 | "darkturquoise"
11283 | "darkviolet"
11284 | "deeppink"
11285 | "deepskyblue"
11286 | "dimgray"
11287 | "dimgrey"
11288 | "dodgerblue"
11289 | "firebrick"
11290 | "floralwhite"
11291 | "forestgreen"
11292 | "fuchsia"
11293 | "gainsboro"
11294 | "ghostwhite"
11295 | "gold"
11296 | "goldenrod"
11297 | "gray"
11298 | "green"
11299 | "greenyellow"
11300 | "grey"
11301 | "honeydew"
11302 | "hotpink"
11303 | "indianred"
11304 | "indigo"
11305 | "ivory"
11306 | "khaki"
11307 | "lavender"
11308 | "lavenderblush"
11309 | "lawngreen"
11310 | "lemonchiffon"
11311 | "lightblue"
11312 | "lightcoral"
11313 | "lightcyan"
11314 | "lightgoldenrodyellow"
11315 | "lightgray"
11316 | "lightgreen"
11317 | "lightgrey"
11318 | "lightpink"
11319 | "lightsalmon"
11320 | "lightseagreen"
11321 | "lightskyblue"
11322 | "lightslategray"
11323 | "lightslategrey"
11324 | "lightsteelblue"
11325 | "lightyellow"
11326 | "lime"
11327 | "limegreen"
11328 | "linen"
11329 | "magenta"
11330 | "maroon"
11331 | "mediumaquamarine"
11332 | "mediumblue"
11333 | "mediumorchid"
11334 | "mediumpurple"
11335 | "mediumseagreen"
11336 | "mediumslateblue"
11337 | "mediumspringgreen"
11338 | "mediumturquoise"
11339 | "mediumvioletred"
11340 | "midnightblue"
11341 | "mintcream"
11342 | "mistyrose"
11343 | "moccasin"
11344 | "navajowhite"
11345 | "navy"
11346 | "oldlace"
11347 | "olive"
11348 | "olivedrab"
11349 | "orange"
11350 | "orangered"
11351 | "orchid"
11352 | "palegoldenrod"
11353 | "palegreen"
11354 | "paleturquoise"
11355 | "palevioletred"
11356 | "papayawhip"
11357 | "peachpuff"
11358 | "peru"
11359 | "pink"
11360 | "plum"
11361 | "powderblue"
11362 | "purple"
11363 | "rebeccapurple"
11364 | "red"
11365 | "rosybrown"
11366 | "royalblue"
11367 | "saddlebrown"
11368 | "salmon"
11369 | "sandybrown"
11370 | "seagreen"
11371 | "seashell"
11372 | "sienna"
11373 | "silver"
11374 | "skyblue"
11375 | "slateblue"
11376 | "slategray"
11377 | "slategrey"
11378 | "snow"
11379 | "springgreen"
11380 | "steelblue"
11381 | "tan"
11382 | "teal"
11383 | "thistle"
11384 | "tomato"
11385 | "transparent"
11386 | "turquoise"
11387 | "violet"
11388 | "wheat"
11389 | "white"
11390 | "whitesmoke"
11391 | "yellow"
11392 | "yellowgreen";
11393
11394 type PageSize = "A3" | "A4" | "A5" | "B4" | "B5" | "JIS-B4" | "JIS-B5" | "ledger" | "legal" | "letter";
11395
11396 type Paint = Color | "child" | "context-fill" | "context-stroke" | "none" | (string & {});
11397
11398 type Position<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top" | (string & {});
11399
11400 type Quote = "close-quote" | "no-close-quote" | "no-open-quote" | "open-quote";
11401
11402 type RepeatStyle = "no-repeat" | "repeat" | "repeat-x" | "repeat-y" | "round" | "space" | (string & {});
11403
11404 type SelfPosition = "center" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "start";
11405
11406 type SingleAnimation<TTime> =
11407 | EasingFunction
11408 | SingleAnimationDirection
11409 | SingleAnimationFillMode
11410 | SingleAnimationTimeline
11411 | TTime
11412 | "infinite"
11413 | "none"
11414 | "paused"
11415 | "running"
11416 | (string & {})
11417 | (number & {});
11418
11419 type SingleAnimationComposition = "accumulate" | "add" | "replace";
11420
11421 type SingleAnimationDirection = "alternate" | "alternate-reverse" | "normal" | "reverse";
11422
11423 type SingleAnimationFillMode = "backwards" | "both" | "forwards" | "none";
11424
11425 type SingleAnimationTimeline = "auto" | "none" | (string & {});
11426
11427 type SingleTransition<TTime> = EasingFunction | TTime | "all" | "allow-discrete" | "none" | "normal" | (string & {});
11428
11429 type StepTimingFunction = "step-end" | "step-start" | (string & {});
11430
11431 type TimelineRangeName = "contain" | "cover" | "entry" | "entry-crossing" | "exit" | "exit-crossing";
11432
11433 type TrackBreadth<TLength> = TLength | "auto" | "max-content" | "min-content" | (string & {});
11434
11435 type ViewportLength<TLength> = TLength | "auto" | (string & {});
11436
11437 type VisualBox = "border-box" | "content-box" | "padding-box";
11438}
11439
11440// Definitions by: Junyoung Clare Jang <https://github.com/Ailrun>
11441// TypeScript Version: 2.8
11442
11443
11444
11445type CSSProperties = PropertiesFallback<number | string>
11446type CSSPropertiesWithMultiValues = {
11447 [K in keyof CSSProperties]:
11448 | CSSProperties[K]
11449 | ReadonlyArray<Extract<CSSProperties[K], string>>
11450}
11451
11452type CSSPseudos = { [K in Pseudos]?: CSSObject }
11453
11454interface ArrayCSSInterpolation
11455 extends ReadonlyArray<CSSInterpolation> {}
11456
11457type InterpolationPrimitive =
11458 | null
11459 | undefined
11460 | boolean
11461 | number
11462 | string
11463 | ComponentSelector
11464 | Keyframes
11465 | SerializedStyles
11466 | CSSObject
11467
11468type CSSInterpolation = InterpolationPrimitive | ArrayCSSInterpolation
11469
11470interface CSSOthersObject {
11471 [propertiesName: string]: CSSInterpolation
11472}
11473
11474interface CSSObject
11475 extends CSSPropertiesWithMultiValues,
11476 CSSPseudos,
11477 CSSOthersObject {}
11478
11479interface ComponentSelector {
11480 __emotion_styles: any
11481}
11482
11483type Keyframes = {
11484 name: string
11485 styles: string
11486 anim: number
11487 toString: () => string
11488} & string
11489
11490interface ArrayInterpolation<Props>
11491 extends Array<Interpolation<Props>> {}
11492
11493interface FunctionInterpolation<Props> {
11494 (props: Props): Interpolation<Props>
11495}
11496
11497type Interpolation<Props> =
11498 | InterpolationPrimitive
11499 | ArrayInterpolation<Props>
11500 | FunctionInterpolation<Props>
11501
11502declare const easing: {
11503 rubber: string;
11504};
11505declare const animation: {
11506 readonly rotate360: Keyframes;
11507 readonly glow: Keyframes;
11508 readonly float: Keyframes;
11509 readonly jiggle: Keyframes;
11510 readonly inlineGlow: SerializedStyles;
11511 readonly hoverable: SerializedStyles;
11512};
11513
11514declare const color: {
11515 primary: string;
11516 secondary: string;
11517 tertiary: string;
11518 ancillary: string;
11519 orange: string;
11520 gold: string;
11521 green: string;
11522 seafoam: string;
11523 purple: string;
11524 ultraviolet: string;
11525 lightest: string;
11526 lighter: string;
11527 light: string;
11528 mediumlight: string;
11529 medium: string;
11530 mediumdark: string;
11531 dark: string;
11532 darker: string;
11533 darkest: string;
11534 border: string;
11535 positive: string;
11536 negative: string;
11537 warning: string;
11538 critical: string;
11539 defaultText: string;
11540 inverseText: string;
11541 positiveText: string;
11542 negativeText: string;
11543 warningText: string;
11544};
11545declare const background: {
11546 app: string;
11547 bar: string;
11548 content: string;
11549 preview: string;
11550 gridCellSize: number;
11551 hoverable: string;
11552 positive: string;
11553 negative: string;
11554 warning: string;
11555 critical: string;
11556};
11557declare const typography: {
11558 fonts: {
11559 base: string;
11560 mono: string;
11561 };
11562 weight: {
11563 regular: number;
11564 bold: number;
11565 };
11566 size: {
11567 s1: number;
11568 s2: number;
11569 s3: number;
11570 m1: number;
11571 m2: number;
11572 m3: number;
11573 l1: number;
11574 l2: number;
11575 l3: number;
11576 code: number;
11577 };
11578};
11579
11580interface ThemeVars extends ThemeVarsBase, ThemeVarsColors {
11581}
11582interface ThemeVarsPartial extends ThemeVarsBase, Partial<ThemeVarsColors> {
11583}
11584interface ThemeVarsBase {
11585 base: 'light' | 'dark';
11586}
11587interface ThemeVarsColors {
11588 colorPrimary: string;
11589 colorSecondary: string;
11590 appBg: string;
11591 appContentBg: string;
11592 appPreviewBg: string;
11593 appBorderColor: string;
11594 appBorderRadius: number;
11595 fontBase: string;
11596 fontCode: string;
11597 textColor: string;
11598 textInverseColor: string;
11599 textMutedColor: string;
11600 barTextColor: string;
11601 barHoverColor: string;
11602 barSelectedColor: string;
11603 barBg: string;
11604 buttonBg: string;
11605 buttonBorder: string;
11606 booleanBg: string;
11607 booleanSelectedBg: string;
11608 inputBg: string;
11609 inputBorder: string;
11610 inputTextColor: string;
11611 inputBorderRadius: number;
11612 brandTitle?: string;
11613 brandUrl?: string;
11614 brandImage?: string;
11615 brandTarget?: string;
11616 gridCellSize?: number;
11617}
11618type Color = typeof color;
11619type Background = typeof background;
11620type Typography = typeof typography;
11621type Animation = typeof animation;
11622type Easing = typeof easing;
11623type TextSize = number | string;
11624interface Brand {
11625 title: string | undefined;
11626 url: string | null | undefined;
11627 image: string | null | undefined;
11628 target: string | null | undefined;
11629}
11630interface StorybookTheme {
11631 color: Color;
11632 background: Background;
11633 typography: Typography;
11634 animation: Animation;
11635 easing: Easing;
11636 input: {
11637 border: string;
11638 background: string;
11639 color: string;
11640 borderRadius: number;
11641 };
11642 layoutMargin: number;
11643 appBorderColor: string;
11644 appBorderRadius: number;
11645 barTextColor: string;
11646 barHoverColor: string;
11647 barSelectedColor: string;
11648 barBg: string;
11649 brand: Brand;
11650 code: {
11651 [key: string]: string | object;
11652 };
11653 [key: string]: any;
11654}
11655
11656declare const themes: {
11657 light: ThemeVars;
11658 dark: ThemeVars;
11659 normal: ThemeVars;
11660};
11661interface Rest {
11662 [key: string]: any;
11663}
11664declare const create: (vars?: ThemeVarsPartial, rest?: Rest) => ThemeVars;
11665
11666export { Animation as A, Background as B, CSSInterpolation as C, EmotionCache as E, FunctionInterpolation as F, Interpolation as I, Keyframes as K, SerializedStyles as S, Typography as T, ComponentSelector as a, StorybookTheme as b, Color as c, ThemeVars as d, CSSObject as e, color as f, background as g, ThemeVarsPartial as h, ThemeVarsColors as i, Easing as j, TextSize as k, Brand as l, themes as m, create as n, typography as t };