芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/csstype/index.d.ts
export {}; export type PropertyValue
= TValue extends Array
? Array
: TValue extends infer TUnpacked & {} ? TUnpacked : TValue; export type Fallback
= { [P in keyof T]: T[P] | T[P][] }; export interface StandardLonghandProperties
{ /** * The **`accent-color`** CSS property sets the color of the elements accent. An accent appears in elements such as `
` of `type="checkbox"`, or `type="radio"`. * * **Syntax**: `auto |
` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **93** | **92** | No | **93** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/accent-color */ accentColor?: Property.AccentColor; /** * 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. * * **Syntax**: `normal |
|
|
?
` * * **Initial value**: `normal` * * --- * * _Supported in Flex Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :-----: | :-----: | :----: | :----: | * | **29** | **28** | **9** | **12** | **11** | * | 21 _-x-_ | | 7 _-x-_ | | | * * --- * * _Supported in Grid Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **52** | **10.1** | **16** | No | * * --- * * @see https://developer.mozilla.org/docs/Web/CSS/align-content */ alignContent?: Property.AlignContent; /** * 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. * * **Syntax**: `normal | stretch |
| [
?
]` * * **Initial value**: `normal` * * --- * * _Supported in Flex Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :-----: | :-----: | :----: | :----: | * | **52** | **20** | **9** | **12** | **11** | * | 21 _-x-_ | | 7 _-x-_ | | | * * --- * * _Supported in Grid Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **52** | **10.1** | **16** | No | * * --- * * @see https://developer.mozilla.org/docs/Web/CSS/align-items */ alignItems?: Property.AlignItems; /** * 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. * * **Syntax**: `auto | normal | stretch |
|
?
` * * **Initial value**: `auto` * * --- * * _Supported in Flex Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :-----: | :-------: | :----: | :----: | * | **36** | **20** | **9** | **12** | **11** | * | 21 _-x-_ | | 6.1 _-x-_ | | | * * --- * * _Supported in Grid Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :----------: | * | **57** | **52** | **10.1** | **16** | **10** _-x-_ | * * --- * * @see https://developer.mozilla.org/docs/Web/CSS/align-self */ alignSelf?: Property.AlignSelf; /** * The **`align-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their block axis. * * **Syntax**: `[ normal |
|
|
?
]#` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | No | n/a | No | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/align-tracks */ alignTracks?: Property.AlignTracks; /** * 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. * * **Syntax**: `
#` * * **Initial value**: `0s` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :----: | * | **43** | **16** | **9** | **12** | **10** | * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/animation-delay */ animationDelay?: Property.AnimationDelay
; /** * 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. * * **Syntax**: `
#` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :----: | * | **43** | **16** | **9** | **12** | **10** | * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/animation-direction */ animationDirection?: Property.AnimationDirection; /** * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle. * * **Syntax**: `
#` * * **Initial value**: `0s` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :----: | * | **43** | **16** | **9** | **12** | **10** | * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/animation-duration */ animationDuration?: Property.AnimationDuration
; /** * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution. * * **Syntax**: `
#` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :----: | * | **43** | **16** | **9** | **12** | **10** | * | 3 _-x-_ | 5 _-x-_ | 5 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode */ animationFillMode?: Property.AnimationFillMode; /** * The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping. * * **Syntax**: `
#` * * **Initial value**: `1` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :----: | * | **43** | **16** | **9** | **12** | **10** | * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count */ animationIterationCount?: Property.AnimationIterationCount; /** * The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element. * * **Syntax**: `[ none |
]#` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :----: | * | **43** | **16** | **9** | **12** | **10** | * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/animation-name */ animationName?: Property.AnimationName; /** * The **`animation-play-state`** CSS property sets whether an animation is running or paused. * * **Syntax**: `
#` * * **Initial value**: `running` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :----: | * | **43** | **16** | **9** | **12** | **10** | * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/animation-play-state */ animationPlayState?: Property.AnimationPlayState; /** * The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle. * * **Syntax**: `
#` * * **Initial value**: `ease` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :----: | * | **43** | **16** | **9** | **12** | **10** | * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/animation-timing-function */ animationTimingFunction?: Property.AnimationTimingFunction; /** * The `**appearance**` CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons. * * **Syntax**: `none | auto | textfield | menulist-button |
` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :---------: | :------: | :-: | * | **84** | **80** | **3** _-x-_ | **84** | No | * | 1 _-x-_ | 1 _-x-_ | | 12 _-x-_ | | * * @see https://developer.mozilla.org/docs/Web/CSS/appearance */ appearance?: Property.Appearance; /** * 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. * * **Syntax**: `auto |
` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **88** | **89** | **15** | **88** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/aspect-ratio */ aspectRatio?: Property.AspectRatio; /** * 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. * * **Syntax**: `none |
` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :---------: | :----: | :-: | * | **76** | n/a | **9** _-x-_ | **17** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/backdrop-filter */ backdropFilter?: Property.BackdropFilter; /** * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user. * * **Syntax**: `visible | hidden` * * **Initial value**: `visible` * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :------: | :-----------: | :----: | :----: | * | **36** | **16** | **5.1** _-x-_ | **12** | **10** | * | 12 _-x-_ | 10 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/backface-visibility */ backfaceVisibility?: Property.BackfaceVisibility; /** * The **`background-attachment`** CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block. * * **Syntax**: `
#` * * **Initial value**: `scroll` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/background-attachment */ backgroundAttachment?: Property.BackgroundAttachment; /** * 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. * * **Syntax**: `
#` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **35** | **30** | **8** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/background-blend-mode */ backgroundBlendMode?: Property.BackgroundBlendMode; /** * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box. * * **Syntax**: `
#` * * **Initial value**: `border-box` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :---------: | :----: | :---: | * | **1** | **4** | **3** _-x-_ | **12** | **9** | * * @see https://developer.mozilla.org/docs/Web/CSS/background-clip */ backgroundClip?: Property.BackgroundClip; /** * The **`background-color`** CSS property sets the background color of an element. * * **Syntax**: `
` * * **Initial value**: `transparent` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/background-color */ backgroundColor?: Property.BackgroundColor; /** * The **`background-image`** CSS property sets one or more background images on an element. * * **Syntax**: `
#` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/background-image */ backgroundImage?: Property.BackgroundImage; /** * The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding. * * **Syntax**: `
#` * * **Initial value**: `padding-box` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **4** | **3** | **12** | **9** | * * @see https://developer.mozilla.org/docs/Web/CSS/background-origin */ backgroundOrigin?: Property.BackgroundOrigin; /** * 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`. * * **Syntax**: `[ center | [ [ left | right | x-start | x-end ]?
? ]! ]#` * * **Initial value**: `left` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **49** | **1** | **12** | **6** | * * @see https://developer.mozilla.org/docs/Web/CSS/background-position-x */ backgroundPositionX?: Property.BackgroundPositionX
; /** * 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`. * * **Syntax**: `[ center | [ [ top | bottom | y-start | y-end ]?
? ]! ]#` * * **Initial value**: `top` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **49** | **1** | **12** | **6** | * * @see https://developer.mozilla.org/docs/Web/CSS/background-position-y */ backgroundPositionY?: Property.BackgroundPositionY
; /** * 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. * * **Syntax**: `
#` * * **Initial value**: `repeat` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/background-repeat */ backgroundRepeat?: Property.BackgroundRepeat; /** * 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. * * **Syntax**: `
#` * * **Initial value**: `auto auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :---: | * | **3** | **4** | **5** | **12** | **9** | * | 1 _-x-_ | | 3 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/background-size */ backgroundSize?: Property.BackgroundSize
; /** * **Syntax**: `clip | ellipsis |
` * * **Initial value**: `clip` */ blockOverflow?: Property.BlockOverflow; /** * 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`. * * **Syntax**: `<'width'>` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **41** | **12.1** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/block-size */ blockSize?: Property.BlockSize
; /** * 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`. * * **Syntax**: `<'border-top-color'>{1,2}` * * **Initial value**: `currentcolor` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **87** | **66** | **14.1** | **87** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-block-color */ borderBlockColor?: Property.BorderBlockColor; /** * 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`. * * **Syntax**: `<'border-top-color'>` * * **Initial value**: `currentcolor` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-color */ borderBlockEndColor?: Property.BorderBlockEndColor; /** * 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`. * * **Syntax**: `<'border-top-style'>` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-style */ borderBlockEndStyle?: Property.BorderBlockEndStyle; /** * 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`. * * **Syntax**: `<'border-top-width'>` * * **Initial value**: `medium` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-width */ borderBlockEndWidth?: Property.BorderBlockEndWidth
; /** * 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`. * * **Syntax**: `<'border-top-color'>` * * **Initial value**: `currentcolor` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-color */ borderBlockStartColor?: Property.BorderBlockStartColor; /** * 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`. * * **Syntax**: `<'border-top-style'>` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-style */ borderBlockStartStyle?: Property.BorderBlockStartStyle; /** * 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`. * * **Syntax**: `<'border-top-width'>` * * **Initial value**: `medium` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-width */ borderBlockStartWidth?: Property.BorderBlockStartWidth
; /** * 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`. * * **Syntax**: `<'border-top-style'>` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **87** | **66** | **14.1** | **87** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-block-style */ borderBlockStyle?: Property.BorderBlockStyle; /** * 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`. * * **Syntax**: `<'border-top-width'>` * * **Initial value**: `medium` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **87** | **66** | **14.1** | **87** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-block-width */ borderBlockWidth?: Property.BorderBlockWidth
; /** * 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`. * * **Syntax**: `<'border-top-color'>` * * **Initial value**: `currentcolor` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-color */ borderBottomColor?: Property.BorderBottomColor; /** * 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. * * **Syntax**: `
{1,2}` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :---: | * | **4** | **4** | **5** | **12** | **9** | * | 1 _-x-_ | | 3 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius */ borderBottomLeftRadius?: Property.BorderBottomLeftRadius
; /** * 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. * * **Syntax**: `
{1,2}` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :---: | * | **4** | **4** | **5** | **12** | **9** | * | 1 _-x-_ | | 3 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius */ borderBottomRightRadius?: Property.BorderBottomRightRadius
; /** * The **`border-bottom-style`** CSS property sets the line style of an element's bottom `border`. * * **Syntax**: `
` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-----: | * | **1** | **1** | **1** | **12** | **5.5** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-style */ borderBottomStyle?: Property.BorderBottomStyle; /** * The **`border-bottom-width`** CSS property sets the width of the bottom border of an element. * * **Syntax**: `
` * * **Initial value**: `medium` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-width */ borderBottomWidth?: Property.BorderBottomWidth
; /** * The **`border-collapse`** CSS property sets whether cells inside a `
` have shared or separate borders. * * **Syntax**: `collapse | separate` * * **Initial value**: `separate` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :-----: | :----: | :---: | * | **1** | **1** | **1.2** | **12** | **5** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-collapse */ borderCollapse?: Property.BorderCollapse; /** * 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. * * **Syntax**: `
{1,2}` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **89** | **66** | **15** | **89** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius */ borderEndEndRadius?: Property.BorderEndEndRadius
; /** * 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. * * **Syntax**: `
{1,2}` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **89** | **66** | **15** | **89** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius */ borderEndStartRadius?: Property.BorderEndStartRadius
; /** * The **`border-image-outset`** CSS property sets the distance by which an element's border image is set out from its border box. * * **Syntax**: `[
|
]{1,4}` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **15** | **15** | **6** | **12** | **11** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-image-outset */ borderImageOutset?: Property.BorderImageOutset
; /** * The **`border-image-repeat`** CSS property defines how the edge regions of a source image are adjusted to fit the dimensions of an element's border image. * * **Syntax**: `[ stretch | repeat | round | space ]{1,2}` * * **Initial value**: `stretch` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **15** | **15** | **6** | **12** | **11** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-image-repeat */ borderImageRepeat?: Property.BorderImageRepeat; /** * 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. * * **Syntax**: `
{1,4} && fill?` * * **Initial value**: `100%` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **15** | **15** | **6** | **12** | **11** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice */ borderImageSlice?: Property.BorderImageSlice; /** * The **`border-image-source`** CSS property sets the source image used to create an element's border image. * * **Syntax**: `none |
` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **15** | **15** | **6** | **12** | **11** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-image-source */ borderImageSource?: Property.BorderImageSource; /** * The **`border-image-width`** CSS property sets the width of an element's border image. * * **Syntax**: `[
|
| auto ]{1,4}` * * **Initial value**: `1` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **15** | **13** | **6** | **12** | **11** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-image-width */ borderImageWidth?: Property.BorderImageWidth
; /** * 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`. * * **Syntax**: `<'border-top-color'>{1,2}` * * **Initial value**: `currentcolor` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **87** | **66** | **14.1** | **87** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color */ borderInlineColor?: Property.BorderInlineColor; /** * 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`. * * **Syntax**: `<'border-top-color'>` * * **Initial value**: `currentcolor` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-------------------------: | :------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * | | 3 _(-moz-border-end-color)_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color */ borderInlineEndColor?: Property.BorderInlineEndColor; /** * 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`. * * **Syntax**: `<'border-top-style'>` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-------------------------: | :------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * | | 3 _(-moz-border-end-style)_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style */ borderInlineEndStyle?: Property.BorderInlineEndStyle; /** * 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`. * * **Syntax**: `<'border-top-width'>` * * **Initial value**: `medium` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-------------------------: | :------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * | | 3 _(-moz-border-end-width)_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width */ borderInlineEndWidth?: Property.BorderInlineEndWidth
; /** * 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`. * * **Syntax**: `<'border-top-color'>` * * **Initial value**: `currentcolor` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :---------------------------: | :------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * | | 3 _(-moz-border-start-color)_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color */ borderInlineStartColor?: Property.BorderInlineStartColor; /** * 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`. * * **Syntax**: `<'border-top-style'>` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :---------------------------: | :------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * | | 3 _(-moz-border-start-style)_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style */ borderInlineStartStyle?: Property.BorderInlineStartStyle; /** * 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`. * * **Syntax**: `<'border-top-width'>` * * **Initial value**: `medium` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width */ borderInlineStartWidth?: Property.BorderInlineStartWidth
; /** * 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`. * * **Syntax**: `<'border-top-style'>` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **87** | **66** | **14.1** | **87** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style */ borderInlineStyle?: Property.BorderInlineStyle; /** * 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`. * * **Syntax**: `<'border-top-width'>` * * **Initial value**: `medium` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **87** | **66** | **14.1** | **87** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width */ borderInlineWidth?: Property.BorderInlineWidth
; /** * 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`. * * **Syntax**: `
` * * **Initial value**: `currentcolor` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-left-color */ borderLeftColor?: Property.BorderLeftColor; /** * The **`border-left-style`** CSS property sets the line style of an element's left `border`. * * **Syntax**: `
` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-----: | * | **1** | **1** | **1** | **12** | **5.5** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-left-style */ borderLeftStyle?: Property.BorderLeftStyle; /** * The **`border-left-width`** CSS property sets the width of the left border of an element. * * **Syntax**: `
` * * **Initial value**: `medium` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-left-width */ borderLeftWidth?: Property.BorderLeftWidth
; /** * 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`. * * **Syntax**: `
` * * **Initial value**: `currentcolor` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-right-color */ borderRightColor?: Property.BorderRightColor; /** * The **`border-right-style`** CSS property sets the line style of an element's right `border`. * * **Syntax**: `
` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-----: | * | **1** | **1** | **1** | **12** | **5.5** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-right-style */ borderRightStyle?: Property.BorderRightStyle; /** * The **`border-right-width`** CSS property sets the width of the right border of an element. * * **Syntax**: `
` * * **Initial value**: `medium` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-right-width */ borderRightWidth?: Property.BorderRightWidth
; /** * The **`border-spacing`** CSS property sets the distance between the borders of adjacent `
` cells. This property applies only when `border-collapse` is `separate`. * * **Syntax**: `
?` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **8** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-spacing */ borderSpacing?: Property.BorderSpacing
; /** * 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. * * **Syntax**: `
{1,2}` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **89** | **66** | **15** | **89** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius */ borderStartEndRadius?: Property.BorderStartEndRadius
; /** * 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. * * **Syntax**: `
{1,2}` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **89** | **66** | **15** | **89** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius */ borderStartStartRadius?: Property.BorderStartStartRadius
; /** * 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`. * * **Syntax**: `
` * * **Initial value**: `currentcolor` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-top-color */ borderTopColor?: Property.BorderTopColor; /** * 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. * * **Syntax**: `
{1,2}` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :---: | * | **4** | **4** | **5** | **12** | **9** | * | 1 _-x-_ | | 3 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius */ borderTopLeftRadius?: Property.BorderTopLeftRadius
; /** * 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. * * **Syntax**: `
{1,2}` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :---: | * | **4** | **4** | **5** | **12** | **9** | * | 1 _-x-_ | | 3 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius */ borderTopRightRadius?: Property.BorderTopRightRadius
; /** * The **`border-top-style`** CSS property sets the line style of an element's top `border`. * * **Syntax**: `
` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-----: | * | **1** | **1** | **1** | **12** | **5.5** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-top-style */ borderTopStyle?: Property.BorderTopStyle; /** * The **`border-top-width`** CSS property sets the width of the top border of an element. * * **Syntax**: `
` * * **Initial value**: `medium` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-top-width */ borderTopWidth?: Property.BorderTopWidth
; /** * The **`bottom`** CSS property participates in setting the vertical position of a positioned element. It has no effect on non-positioned elements. * * **Syntax**: `
|
| auto` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **5** | * * @see https://developer.mozilla.org/docs/Web/CSS/bottom */ bottom?: Property.Bottom
; /** * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages. * * **Syntax**: `slice | clone` * * **Initial value**: `slice` * * | Chrome | Firefox | Safari | Edge | IE | * | :----------: | :-----: | :---------: | :----------: | :-: | * | **22** _-x-_ | **32** | **7** _-x-_ | **79** _-x-_ | No | * * @see https://developer.mozilla.org/docs/Web/CSS/box-decoration-break */ boxDecorationBreak?: Property.BoxDecorationBreak; /** * 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. * * **Syntax**: `none |
#` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :---: | * | **10** | **4** | **5.1** | **12** | **9** | * | 1 _-x-_ | | 3 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/box-shadow */ boxShadow?: Property.BoxShadow; /** * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated. * * **Syntax**: `content-box | border-box` * * **Initial value**: `content-box` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :---: | * | **10** | **29** | **5.1** | **12** | **8** | * | 1 _-x-_ | 1 _-x-_ | 3 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/box-sizing */ boxSizing?: Property.BoxSizing; /** * 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. * * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region` * * **Initial value**: `auto` * * --- * * _Supported in Multi-column Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **50** | **65** | No | **12** | **10** | * * --- * * _Supported in Paged Media_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **50** | **65** | **10** | **12** | **10** | * * --- * * @see https://developer.mozilla.org/docs/Web/CSS/break-after */ breakAfter?: Property.BreakAfter; /** * 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. * * **Syntax**: `auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region` * * **Initial value**: `auto` * * --- * * _Supported in Multi-column Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **50** | **65** | No | **12** | **10** | * * --- * * _Supported in Paged Media_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **50** | **65** | **10** | **12** | **10** | * * --- * * @see https://developer.mozilla.org/docs/Web/CSS/break-before */ breakBefore?: Property.BreakBefore; /** * 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. * * **Syntax**: `auto | avoid | avoid-page | avoid-column | avoid-region` * * **Initial value**: `auto` * * --- * * _Supported in Multi-column Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **50** | **65** | **10** | **12** | **10** | * * --- * * _Supported in Paged Media_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **50** | **65** | **10** | **12** | **10** | * * --- * * @see https://developer.mozilla.org/docs/Web/CSS/break-inside */ breakInside?: Property.BreakInside; /** * The **`caption-side`** CSS property puts the content of a table's `
` on the specified side. The values are relative to the `writing-mode` of the table. * * **Syntax**: `top | bottom | block-start | block-end | inline-start | inline-end` * * **Initial value**: `top` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **8** | * * @see https://developer.mozilla.org/docs/Web/CSS/caption-side */ captionSide?: Property.CaptionSide; /** * 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 `
` 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. * * **Syntax**: `auto |
` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **53** | **11.1** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/caret-color */ caretColor?: Property.CaretColor; /** * 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. * * **Syntax**: `none | left | right | both | inline-start | inline-end` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/clear */ clear?: Property.Clear; /** * 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. * * **Syntax**: `
| [
||
] | none` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :-----: | :-------: | :----: | :----: | * | **55** | **3.5** | **9.1** | **12** | **10** | * | 23 _-x-_ | | 6.1 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/clip-path */ clipPath?: Property.ClipPath; /** * The **`color`** CSS property sets the foreground color value of an element's text and text decorations, and sets the `
` value. `currentcolor` may be used as an indirect value on _other_ properties and is the default for other color properties, such as `border-color`. * * **Syntax**: `
` * * **Initial value**: Varies from one browser to another * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **3** | * * @see https://developer.mozilla.org/docs/Web/CSS/color */ color?: Property.Color; /** * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device. * * **Syntax**: `economy | exact` * * **Initial value**: `economy` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----------------------------------: | :-----: | :----------------------------------: | :-----------------------------------: | :-: | * | **49** _(-webkit-print-color-adjust)_ | **48** | **6** _(-webkit-print-color-adjust)_ | **79** _(-webkit-print-color-adjust)_ | No | * * @see https://developer.mozilla.org/docs/Web/CSS/color-adjust */ colorAdjust?: Property.ColorAdjust; /** * The **`color-scheme`** CSS property allows an element to indicate which color schemes it can comfortably be rendered in. * * **Syntax**: `normal | [ light | dark |
]+` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **81** | No | **13** | **81** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/color-scheme */ colorScheme?: Property.ColorScheme; /** * The **`column-count`** CSS property breaks an element's content into the specified number of columns. * * **Syntax**: `
| auto` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :----: | * | **50** | **52** | **9** | **12** | **10** | * | 1 _-x-_ | | 3 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/column-count */ columnCount?: Property.ColumnCount; /** * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns. * * **Syntax**: `auto | balance | balance-all` * * **Initial value**: `balance` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :-----: | :----: | :----: | * | **50** | **52** | **9** | **12** | **10** | * | | | 8 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/column-fill */ columnFill?: Property.ColumnFill; /** * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns. * * **Syntax**: `normal |
` * * **Initial value**: `normal` * * --- * * _Supported in Flex Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **84** | **63** | **14.1** | **84** | No | * * --- * * _Supported in Grid Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :--------------------: | :--------------------: | :----------------------: | :----: | :-: | * | **66** | **61** | **12** | **16** | No | * | 57 _(grid-column-gap)_ | 52 _(grid-column-gap)_ | 10.1 _(grid-column-gap)_ | | | * * --- * * _Supported in Multi-column Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :----: | * | **50** | **52** | **10** | **12** | **10** | * | 1 _-x-_ | | 3 _-x-_ | | | * * --- * * @see https://developer.mozilla.org/docs/Web/CSS/column-gap */ columnGap?: Property.ColumnGap
; /** * The **`column-rule-color`** CSS property sets the color of the line drawn between columns in a multi-column layout. * * **Syntax**: `
` * * **Initial value**: `currentcolor` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :----: | * | **50** | **52** | **9** | **12** | **10** | * | 1 _-x-_ | | 3 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-color */ columnRuleColor?: Property.ColumnRuleColor; /** * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout. * * **Syntax**: `<'border-style'>` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :----: | * | **50** | **52** | **9** | **12** | **10** | * | 1 _-x-_ | | 3 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-style */ columnRuleStyle?: Property.ColumnRuleStyle; /** * The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout. * * **Syntax**: `<'border-width'>` * * **Initial value**: `medium` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :----: | * | **50** | **52** | **9** | **12** | **10** | * | 1 _-x-_ | | 3 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-width */ columnRuleWidth?: Property.ColumnRuleWidth
; /** * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`. * * **Syntax**: `none | all` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-------: | :----: | :----: | * | **50** | **71** | **9** | **12** | **10** | * | 6 _-x-_ | | 5.1 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/column-span */ columnSpan?: Property.ColumnSpan; /** * 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. * * **Syntax**: `
| auto` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :----: | * | **50** | **50** | **9** | **12** | **10** | * | 1 _-x-_ | | 3 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/column-width */ columnWidth?: Property.ColumnWidth
; /** * The **`contain`** CSS property allows an author to indicate that an element and its contents are, as much as possible, _independent_ of the rest of the document tree. This allows the browser to recalculate layout, style, paint, size, or any combination of them for a limited area of the DOM and not the entire page, leading to obvious performance benefits. * * **Syntax**: `none | strict | content | [ size || layout || style || paint ]` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **52** | **69** | No | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/contain */ contain?: Property.Contain; /** * The **`content`** CSS property replaces an element with a generated value. Objects inserted using the `content` property are **anonymous replaced elements**_._ * * **Syntax**: `normal | none | [
|
] [/
]?` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **8** | * * @see https://developer.mozilla.org/docs/Web/CSS/content */ content?: Property.Content; /** * The **`content-visibility`** CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. Basically it enables the user agent to skip an element's rendering work, including layout and painting, until it is needed, makes the initial page load much faster. * * **Syntax**: `visible | auto | hidden` * * **Initial value**: `visible` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **85** | No | No | **85** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/content-visibility */ contentVisibility?: Property.ContentVisibility; /** * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value. * * **Syntax**: `[
? ]+ | none` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **2** | **1** | **3** | **12** | **8** | * * @see https://developer.mozilla.org/docs/Web/CSS/counter-increment */ counterIncrement?: Property.CounterIncrement; /** * The **`counter-reset`** CSS property resets a CSS counter to a given value. * * **Syntax**: `[
? ]+ | none` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **2** | **1** | **3** | **12** | **8** | * * @see https://developer.mozilla.org/docs/Web/CSS/counter-reset */ counterReset?: Property.CounterReset; /** * 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. * * **Syntax**: `[
? ]+ | none` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **85** | **68** | No | **85** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/counter-set */ counterSet?: Property.CounterSet; /** * The **`cursor`** CSS property sets the type of mouse cursor, if any, to show when the mouse pointer is over an element. * * **Syntax**: `[ [
[
]? , ]* [ 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 ] ]` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :-----: | :----: | :---: | * | **1** | **1** | **1.2** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/cursor */ cursor?: Property.Cursor; /** * 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). * * **Syntax**: `ltr | rtl` * * **Initial value**: `ltr` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-----: | * | **2** | **1** | **1** | **12** | **5.5** | * * @see https://developer.mozilla.org/docs/Web/CSS/direction */ direction?: Property.Direction; /** * 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. * * **Syntax**: `[
||
] |
|
|
|
` * * **Initial value**: `inline` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/display */ display?: Property.Display; /** * The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `
` cells that have no visible content. * * **Syntax**: `show | hide` * * **Initial value**: `show` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :-----: | :----: | :---: | * | **1** | **1** | **1.2** | **12** | **8** | * * @see https://developer.mozilla.org/docs/Web/CSS/empty-cells */ emptyCells?: Property.EmptyCells; /** * 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. * * **Syntax**: `none |
` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :-----: | :-----: | :----: | :-: | * | **53** | **35** | **9.1** | **12** | No | * | 18 _-x-_ | | 6 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/filter */ filter?: Property.Filter; /** * 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`. * * **Syntax**: `content | <'width'>` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :-----: | :-----: | :----: | :----: | * | **29** | **22** | **9** | **12** | **11** | * | 22 _-x-_ | | 7 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/flex-basis */ flexBasis?: Property.FlexBasis
; /** * 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). * * **Syntax**: `row | row-reverse | column | column-reverse` * * **Initial value**: `row` * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :-----: | :-----: | :----: | :------: | * | **29** | **20** | **9** | **12** | **11** | * | 21 _-x-_ | | 7 _-x-_ | | 10 _-x-_ | * * @see https://developer.mozilla.org/docs/Web/CSS/flex-direction */ flexDirection?: Property.FlexDirection; /** * The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size. * * **Syntax**: `
` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :-----: | :-----: | :----: | :----------------------: | * | **29** | **20** | **9** | **12** | **11** | * | 22 _-x-_ | | 7 _-x-_ | | 10 _(-ms-flex-positive)_ | * * @see https://developer.mozilla.org/docs/Web/CSS/flex-grow */ flexGrow?: Property.FlexGrow; /** * 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`. * * **Syntax**: `
` * * **Initial value**: `1` * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :-----: | :-----: | :----: | :----: | * | **29** | **20** | **9** | **12** | **10** | * | 22 _-x-_ | | 8 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/flex-shrink */ flexShrink?: Property.FlexShrink; /** * 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. * * **Syntax**: `nowrap | wrap | wrap-reverse` * * **Initial value**: `nowrap` * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :-----: | :-------: | :----: | :----: | * | **29** | **28** | **9** | **12** | **11** | * | 21 _-x-_ | | 6.1 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/flex-wrap */ flexWrap?: Property.FlexWrap; /** * 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). * * **Syntax**: `left | right | none | inline-start | inline-end` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/float */ float?: Property.Float; /** * 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. * * **Syntax**: `[
|
]#` * * **Initial value**: depends on user agent * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **3** | * * @see https://developer.mozilla.org/docs/Web/CSS/font-family */ fontFamily?: Property.FontFamily; /** * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts. * * **Syntax**: `normal |
#` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :------: | :-----: | :----: | :----: | * | **48** | **34** | **9.1** | **15** | **10** | * | 16 _-x-_ | 15 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/font-feature-settings */ fontFeatureSettings?: Property.FontFeatureSettings; /** * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font. * * **Syntax**: `auto | normal | none` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :-----: | :----: | :-: | * | **33** | **32** | **9** | **79** | No | * | | | 6 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/font-kerning */ fontKerning?: Property.FontKerning; /** * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface. * * **Syntax**: `normal |
` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | No | **34** | No | No | No | * | | 4 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/font-language-override */ fontLanguageOverride?: Property.FontLanguageOverride; /** * The **`font-optical-sizing`** CSS property sets whether text rendering is optimized for viewing at different sizes. * * **Syntax**: `auto | none` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **79** | **62** | **11** | **17** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing */ fontOpticalSizing?: Property.FontOpticalSizing; /** * The **`font-size`** CSS property sets the size of the font. Changing the font size also updates the sizes of the font size-relative `
` units, such as `em`, `ex`, and so forth. * * **Syntax**: `
|
|
` * * **Initial value**: `medium` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-----: | * | **1** | **1** | **1** | **12** | **5.5** | * * @see https://developer.mozilla.org/docs/Web/CSS/font-size */ fontSize?: Property.FontSize
; /** * 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). * * **Syntax**: `none | [ ex-height | cap-height | ch-width | ic-width | ic-height ]? [ from-font |
]` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | n/a | **1** | No | n/a | No | * * @see https://developer.mozilla.org/docs/Web/CSS/font-size-adjust */ fontSizeAdjust?: Property.FontSizeAdjust; /** * The **`font-smooth`** CSS property controls the application of anti-aliasing when fonts are rendered. * * **Syntax**: `auto | never | always |
|
` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :------------------------------: | :--------------------------------: | :------------------------------: | :-------------------------------: | :-: | * | **5** _(-webkit-font-smoothing)_ | **25** _(-moz-osx-font-smoothing)_ | **4** _(-webkit-font-smoothing)_ | **79** _(-webkit-font-smoothing)_ | No | * * @see https://developer.mozilla.org/docs/Web/CSS/font-smooth */ fontSmooth?: Property.FontSmooth
; /** * The **`font-stretch`** CSS property selects a normal, condensed, or expanded face from a font. * * **Syntax**: `
` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **60** | **9** | **11** | **12** | **9** | * * @see https://developer.mozilla.org/docs/Web/CSS/font-stretch */ fontStretch?: Property.FontStretch; /** * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`. * * **Syntax**: `normal | italic | oblique
?` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/font-style */ fontStyle?: Property.FontStyle; /** * The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser. * * **Syntax**: `none | [ weight || style || small-caps ]` * * **Initial value**: `weight style` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | No | **34** | **9** | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis */ fontSynthesis?: Property.FontSynthesis; /** * The **`font-variant`** CSS shorthand property allows you to set all the font variants for a font. * * **Syntax**: `normal | none | [
||
||
||
|| stylistic(
) || historical-forms || styleset(
# ) || character-variant(
# ) || swash(
) || ornaments(
) || annotation(
) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] ||
||
||
|| ordinal || slashed-zero ||
||
|| ruby ]` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/font-variant */ fontVariant?: Property.FontVariant; /** * The **`font-variant-caps`** CSS property controls the use of alternate glyphs for capital letters. * * **Syntax**: `normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :-----: | :----: | :-: | * | **52** | **34** | **9.1** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-caps */ fontVariantCaps?: Property.FontVariantCaps; /** * The **`font-variant-east-asian`** CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese. * * **Syntax**: `normal | [
||
|| ruby ]` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :-----: | :----: | :-: | * | **63** | **34** | **9.1** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian */ fontVariantEastAsian?: Property.FontVariantEastAsian; /** * 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. * * **Syntax**: `normal | none | [
||
||
||
]` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :-----: | :-----: | :----: | :-: | * | **34** | **34** | **9.1** | **79** | No | * | 31 _-x-_ | | 7 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures */ fontVariantLigatures?: Property.FontVariantLigatures; /** * The **`font-variant-numeric`** CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers. * * **Syntax**: `normal | [
||
||
|| ordinal || slashed-zero ]` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :-----: | :----: | :-: | * | **52** | **34** | **9.1** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric */ fontVariantNumeric?: Property.FontVariantNumeric; /** * The **`font-variant-position`** CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript. * * **Syntax**: `normal | sub | super` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :-----: | :--: | :-: | * | No | **34** | **9.1** | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position */ fontVariantPosition?: Property.FontVariantPosition; /** * 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. * * **Syntax**: `normal | [
]#` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **62** | **62** | **11** | **17** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/font-variation-settings */ fontVariationSettings?: Property.FontVariationSettings; /** * 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. * * **Syntax**: `
| bolder | lighter` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **2** | **1** | **1** | **12** | **3** | * * @see https://developer.mozilla.org/docs/Web/CSS/font-weight */ fontWeight?: Property.FontWeight; /** * 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. * * **Syntax**: `auto | none` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :-----------------------------: | :---------------------------------: | * | **89** | No | No | **79** | **10** _(-ms-high-contrast-adjust)_ | * | | | | 12 _(-ms-high-contrast-adjust)_ | | * * @see https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust */ forcedColorAdjust?: Property.ForcedColorAdjust; /** * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track or pattern of tracks. * * **Syntax**: `
+` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-------------------------: | * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-columns)_ | * * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns */ gridAutoColumns?: Property.GridAutoColumns
; /** * The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid. * * **Syntax**: `[ row | column ] || dense` * * **Initial value**: `row` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **52** | **10.1** | **16** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow */ gridAutoFlow?: Property.GridAutoFlow; /** * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track or pattern of tracks. * * **Syntax**: `
+` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :----------------------: | * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-rows)_ | * * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows */ gridAutoRows?: Property.GridAutoRows
; /** * 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. * * **Syntax**: `
` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **52** | **10.1** | **16** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-end */ gridColumnEnd?: Property.GridColumnEnd; /** * 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. * * **Syntax**: `
` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **52** | **10.1** | **16** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-start */ gridColumnStart?: Property.GridColumnStart; /** * 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. * * **Syntax**: `
` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **52** | **10.1** | **16** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-end */ gridRowEnd?: Property.GridRowEnd; /** * 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. * * **Syntax**: `
` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **52** | **10.1** | **16** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-start */ gridRowStart?: Property.GridRowStart; /** * The **`grid-template-areas`** CSS property specifies named grid areas, establishing the cells in the grid and assigning them names. * * **Syntax**: `none |
+` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **52** | **10.1** | **16** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-areas */ gridTemplateAreas?: Property.GridTemplateAreas; /** * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns. * * **Syntax**: `none |
|
| subgrid
?` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-------------------------: | * | **57** | **52** | **10.1** | **16** | **10** _(-ms-grid-columns)_ | * * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-columns */ gridTemplateColumns?: Property.GridTemplateColumns
; /** * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows. * * **Syntax**: `none |
|
| subgrid
?` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :----------------------: | * | **57** | **52** | **10.1** | **16** | **10** _(-ms-grid-rows)_ | * * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-rows */ gridTemplateRows?: Property.GridTemplateRows
; /** * 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. * * **Syntax**: `none | [ first || [ force-end | allow-end ] || last ]` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | No | No | **10** | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/hanging-punctuation */ hangingPunctuation?: Property.HangingPunctuation; /** * 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. * * **Syntax**: `auto |
|
| min-content | max-content | fit-content | fit-content(
)` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/height */ height?: Property.Height
; /** * 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. * * **Syntax**: `none | manual | auto` * * **Initial value**: `manual` * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :-----: | :-----------: | :----: | :----------: | * | **55** | **43** | **5.1** _-x-_ | **79** | **10** _-x-_ | * | 13 _-x-_ | 6 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/hyphens */ hyphens?: Property.Hyphens; /** * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image. It should _not_ be used for any other orientation adjustments; instead, the `transform` property should be used with the `rotate` `
`. * * **Syntax**: `from-image |
| [
? flip ]` * * **Initial value**: `from-image` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **81** | **26** | **13.1** | **81** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/image-orientation */ imageOrientation?: Property.ImageOrientation; /** * 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. * * **Syntax**: `auto | crisp-edges | pixelated` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **13** | **3.6** | **6** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/image-rendering */ imageRendering?: Property.ImageRendering; /** * **Syntax**: `[ from-image ||
] && snap?` * * **Initial value**: `1dppx` */ imageResolution?: Property.ImageResolution; /** * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters. * * **Syntax**: `normal | [
? ]` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | No | No | **9** | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/initial-letter */ initialLetter?: Property.InitialLetter; /** * 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`. * * **Syntax**: `<'width'>` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **41** | **12.1** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/inline-size */ inlineSize?: Property.InlineSize
; /** * 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. * * **Syntax**: `<'top'>{1,4}` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **87** | **66** | **14.1** | **87** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/inset */ inset?: Property.Inset
; /** * 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`. * * **Syntax**: `<'top'>{1,2}` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **87** | **63** | **14.1** | **87** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/inset-block */ insetBlock?: Property.InsetBlock
; /** * 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`. * * **Syntax**: `<'top'>` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **87** | **63** | **14.1** | **87** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end */ insetBlockEnd?: Property.InsetBlockEnd
; /** * 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`. * * **Syntax**: `<'top'>` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **87** | **63** | **14.1** | **87** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start */ insetBlockStart?: Property.InsetBlockStart
; /** * 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`. * * **Syntax**: `<'top'>{1,2}` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **87** | **63** | **14.1** | **87** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline */ insetInline?: Property.InsetInline
; /** * 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`. * * **Syntax**: `<'top'>` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **87** | **63** | **14.1** | **87** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end */ insetInlineEnd?: Property.InsetInlineEnd
; /** * 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`. * * **Syntax**: `<'top'>` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **87** | **63** | **14.1** | **87** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start */ insetInlineStart?: Property.InsetInlineStart
; /** * The **`isolation`** CSS property determines whether an element must create a new stacking context. * * **Syntax**: `auto | isolate` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **41** | **36** | **8** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/isolation */ isolation?: Property.Isolation; /** * 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. * * **Syntax**: `normal |
|
? [
| left | right ]` * * **Initial value**: `normal` * * --- * * _Supported in Flex Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :-----: | :-------: | :----: | :----: | * | **52** | **20** | **9** | **12** | **11** | * | 21 _-x-_ | | 6.1 _-x-_ | | | * * --- * * _Supported in Grid Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **52** | **10.1** | **16** | No | * * --- * * @see https://developer.mozilla.org/docs/Web/CSS/justify-content */ justifyContent?: Property.JustifyContent; /** * 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. * * **Syntax**: `normal | stretch |
|
? [
| left | right ] | legacy | legacy && [ left | right | center ]` * * **Initial value**: `legacy` * * --- * * _Supported in Flex Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **52** | **20** | **9** | **12** | **11** | * * --- * * _Supported in Grid Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **45** | **10.1** | **16** | No | * * --- * * @see https://developer.mozilla.org/docs/Web/CSS/justify-items */ justifyItems?: Property.JustifyItems; /** * The CSS **`justify-self`** property sets the way a box is justified inside its alignment container along the appropriate axis. * * **Syntax**: `auto | normal | stretch |
|
? [
| left | right ]` * * **Initial value**: `auto` * * --- * * _Supported in Flex Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **45** | **10.1** | **16** | No | * * --- * * _Supported in Grid Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :----------: | * | **57** | **45** | **10.1** | **16** | **10** _-x-_ | * * --- * * @see https://developer.mozilla.org/docs/Web/CSS/justify-self */ justifySelf?: Property.JustifySelf; /** * The **`justify-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their inline axis. * * **Syntax**: `[ normal |
|
? [
| left | right ] ]#` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | No | n/a | No | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/justify-tracks */ justifyTracks?: Property.JustifyTracks; /** * The **`left`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements. * * **Syntax**: `
|
| auto` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-----: | * | **1** | **1** | **1** | **12** | **5.5** | * * @see https://developer.mozilla.org/docs/Web/CSS/left */ left?: Property.Left
; /** * 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. * * **Syntax**: `normal |
` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/letter-spacing */ letterSpacing?: Property.LetterSpacing
; /** * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols. * * **Syntax**: `auto | loose | normal | strict | anywhere` * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :-----: | * | **58** | **69** | **11** | **14** | **5.5** | * | 1 _-x-_ | | 3 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/line-break */ lineBreak?: Property.LineBreak; /** * 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. * * **Syntax**: `normal |
|
|
` * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/line-height */ lineHeight?: Property.LineHeight
; /** * 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. * * **Syntax**: `
` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | n/a | No | No | n/a | No | * * @see https://developer.mozilla.org/docs/Web/CSS/line-height-step */ lineHeightStep?: Property.LineHeightStep
; /** * The **`list-style-image`** CSS property sets an image to be used as the list item marker. * * **Syntax**: `
| none` * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/list-style-image */ listStyleImage?: Property.ListStyleImage; /** * The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item. * * **Syntax**: `inside | outside` * * **Initial value**: `outside` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/list-style-position */ listStylePosition?: Property.ListStylePosition; /** * The **`list-style-type`** CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element. * * **Syntax**: `
|
| none` * * **Initial value**: `disc` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/list-style-type */ listStyleType?: Property.ListStyleType; /** * 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. * * **Syntax**: `<'margin-left'>{1,2}` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **87** | **66** | **14.1** | **87** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/margin-block */ marginBlock?: Property.MarginBlock
; /** * 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. * * **Syntax**: `<'margin-left'>` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end */ marginBlockEnd?: Property.MarginBlockEnd
; /** * 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. * * **Syntax**: `<'margin-left'>` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start */ marginBlockStart?: Property.MarginBlockStart
; /** * 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. * * **Syntax**: `
|
| auto` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **3** | * * @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom */ marginBottom?: Property.MarginBottom
; /** * 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. * * **Syntax**: `<'margin-left'>{1,2}` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **87** | **66** | **14.1** | **87** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline */ marginInline?: Property.MarginInline
; /** * 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`. * * **Syntax**: `<'margin-left'>` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----------------------: | :-------------------: | :----------------------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * | 2 _(-webkit-margin-end)_ | 3 _(-moz-margin-end)_ | 3 _(-webkit-margin-end)_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end */ marginInlineEnd?: Property.MarginInlineEnd
; /** * 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`. * * **Syntax**: `<'margin-left'>` * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :------------------------: | :---------------------: | :------------------------: | :----: | :-: | * | **69** | **41** | **12.1** | **79** | No | * | 2 _(-webkit-margin-start)_ | 3 _(-moz-margin-start)_ | 3 _(-webkit-margin-start)_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start */ marginInlineStart?: Property.MarginInlineStart
; /** * 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. * * **Syntax**: `