@types/web 0.0.288 → 0.0.290
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.d.ts +2323 -521
- package/package.json +1 -1
- package/ts5.5/index.d.ts +2323 -521
- package/ts5.6/index.d.ts +2323 -521
- package/ts5.9/index.d.ts +2323 -521
package/ts5.6/index.d.ts
CHANGED
|
@@ -6070,292 +6070,849 @@ declare var CSSStyleDeclaration: {
|
|
|
6070
6070
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleProperties)
|
|
6071
6071
|
*/
|
|
6072
6072
|
interface CSSStyleProperties extends CSSStyleDeclarationBase {
|
|
6073
|
-
/**
|
|
6073
|
+
/**
|
|
6074
|
+
* The accent-color CSS property sets the accent color for user-interface controls generated by some elements.
|
|
6075
|
+
*
|
|
6076
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/accent-color)
|
|
6077
|
+
*/
|
|
6074
6078
|
accentColor: string;
|
|
6075
|
-
/**
|
|
6079
|
+
/**
|
|
6080
|
+
* The CSS align-content property sets the distribution of space between and around content items along a flexbox's cross axis, or a grid or block-level element's block axis.
|
|
6081
|
+
*
|
|
6082
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/align-content)
|
|
6083
|
+
*/
|
|
6076
6084
|
alignContent: string;
|
|
6077
|
-
/**
|
|
6085
|
+
/**
|
|
6086
|
+
* 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 areas.
|
|
6087
|
+
*
|
|
6088
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/align-items)
|
|
6089
|
+
*/
|
|
6078
6090
|
alignItems: string;
|
|
6079
|
-
/**
|
|
6091
|
+
/**
|
|
6092
|
+
* 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.
|
|
6093
|
+
*
|
|
6094
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/align-self)
|
|
6095
|
+
*/
|
|
6080
6096
|
alignSelf: string;
|
|
6081
|
-
/**
|
|
6097
|
+
/**
|
|
6098
|
+
* The alignment-baseline CSS property specifies the specific baseline used to align the box's text and inline-level contents. Baseline alignment is the relationship among the baselines of multiple alignment subjects within an alignment context. When performing baseline alignment, the alignment-baseline property value specifies which baseline of the box is aligned to the corresponding baseline of its alignment context.
|
|
6099
|
+
*
|
|
6100
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/alignment-baseline)
|
|
6101
|
+
*/
|
|
6082
6102
|
alignmentBaseline: string;
|
|
6083
|
-
/**
|
|
6103
|
+
/**
|
|
6104
|
+
* The **`all`** shorthand CSS property resets all of an element's properties except unicode-bidi, direction, and CSS Custom Properties. It can set properties to their initial or inherited values, or to the values specified in another cascade layer or stylesheet origin.
|
|
6105
|
+
*
|
|
6106
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/all)
|
|
6107
|
+
*/
|
|
6084
6108
|
all: string;
|
|
6085
|
-
/**
|
|
6109
|
+
/**
|
|
6110
|
+
* The anchor-name CSS property enables defining an element as an anchor element by giving it one or more identifying anchor names. Each name can then be set as the value of a positioned element's position-anchor property to associate it with the anchor.
|
|
6111
|
+
*
|
|
6112
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/anchor-name)
|
|
6113
|
+
*/
|
|
6086
6114
|
anchorName: string;
|
|
6087
6115
|
anchorScope: string;
|
|
6088
|
-
/**
|
|
6116
|
+
/**
|
|
6117
|
+
* The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for animation-name, animation-duration, animation-timing-function, animation-delay, animation-iteration-count, animation-direction, animation-fill-mode, animation-play-state, and animation-timeline.
|
|
6118
|
+
*
|
|
6119
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation)
|
|
6120
|
+
*/
|
|
6089
6121
|
animation: string;
|
|
6090
|
-
/**
|
|
6122
|
+
/**
|
|
6123
|
+
* The animation-composition CSS property specifies the composite operation to use when multiple animations affect the same property simultaneously.
|
|
6124
|
+
*
|
|
6125
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-composition)
|
|
6126
|
+
*/
|
|
6091
6127
|
animationComposition: string;
|
|
6092
|
-
/**
|
|
6128
|
+
/**
|
|
6129
|
+
* 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.
|
|
6130
|
+
*
|
|
6131
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-delay)
|
|
6132
|
+
*/
|
|
6093
6133
|
animationDelay: string;
|
|
6094
|
-
/**
|
|
6134
|
+
/**
|
|
6135
|
+
* 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.
|
|
6136
|
+
*
|
|
6137
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-direction)
|
|
6138
|
+
*/
|
|
6095
6139
|
animationDirection: string;
|
|
6096
|
-
/**
|
|
6140
|
+
/**
|
|
6141
|
+
* The animation-duration CSS property sets the length of time that an animation takes to complete one cycle.
|
|
6142
|
+
*
|
|
6143
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-duration)
|
|
6144
|
+
*/
|
|
6097
6145
|
animationDuration: string;
|
|
6098
|
-
/**
|
|
6146
|
+
/**
|
|
6147
|
+
* The animation-fill-mode CSS property sets how a CSS animation applies styles to its target before and after its execution.
|
|
6148
|
+
*
|
|
6149
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-fill-mode)
|
|
6150
|
+
*/
|
|
6099
6151
|
animationFillMode: string;
|
|
6100
|
-
/**
|
|
6152
|
+
/**
|
|
6153
|
+
* The animation-iteration-count CSS property sets the number of times an animation sequence should be played before stopping.
|
|
6154
|
+
*
|
|
6155
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-iteration-count)
|
|
6156
|
+
*/
|
|
6101
6157
|
animationIterationCount: string;
|
|
6102
|
-
/**
|
|
6158
|
+
/**
|
|
6159
|
+
* The animation-name CSS property specifies the names of one or more @keyframes at-rules that describe the animation to apply to an element. Multiple @keyframes at-rules are specified as a comma-separated list of names. If the specified name does not match any @keyframes at-rule, no properties are animated.
|
|
6160
|
+
*
|
|
6161
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-name)
|
|
6162
|
+
*/
|
|
6103
6163
|
animationName: string;
|
|
6104
|
-
/**
|
|
6164
|
+
/**
|
|
6165
|
+
* The animation-play-state CSS property sets whether an animation is running or paused.
|
|
6166
|
+
*
|
|
6167
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-play-state)
|
|
6168
|
+
*/
|
|
6105
6169
|
animationPlayState: string;
|
|
6106
|
-
/**
|
|
6170
|
+
/**
|
|
6171
|
+
* The animation-range CSS shorthand property is used to set the start and end of an animation's attachment range along its timeline, i.e., where along the timeline an animation will start and end.
|
|
6172
|
+
*
|
|
6173
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-range)
|
|
6174
|
+
*/
|
|
6107
6175
|
animationRange: string;
|
|
6108
|
-
/**
|
|
6176
|
+
/**
|
|
6177
|
+
* The animation-range-end CSS property is used to set the end of an animation's attachment range along its timeline, i.e., where along the timeline an animation will end.
|
|
6178
|
+
*
|
|
6179
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-range-end)
|
|
6180
|
+
*/
|
|
6109
6181
|
animationRangeEnd: string;
|
|
6110
|
-
/**
|
|
6182
|
+
/**
|
|
6183
|
+
* The animation-range-start CSS property is used to set the start of an animation's attachment range along its timeline, i.e., where along the timeline an animation will start.
|
|
6184
|
+
*
|
|
6185
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-range-start)
|
|
6186
|
+
*/
|
|
6111
6187
|
animationRangeStart: string;
|
|
6112
|
-
/**
|
|
6188
|
+
/**
|
|
6189
|
+
* The animation-timeline CSS property specifies the timeline that is used to control the progress of a CSS animation.
|
|
6190
|
+
*
|
|
6191
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-timeline)
|
|
6192
|
+
*/
|
|
6113
6193
|
animationTimeline: string;
|
|
6114
|
-
/**
|
|
6194
|
+
/**
|
|
6195
|
+
* The animation-timing-function CSS property sets how an animation progresses through the duration of each cycle.
|
|
6196
|
+
*
|
|
6197
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-timing-function)
|
|
6198
|
+
*/
|
|
6115
6199
|
animationTimingFunction: string;
|
|
6116
|
-
/**
|
|
6200
|
+
/**
|
|
6201
|
+
* The **`appearance`** CSS property specifies the rendered appearance of replaced UI widget elements such as form controls. Most commonly, such elements are given native, platform-specific styling based on the operating system's theme, or a primitive appearance with styles that can be overridden using CSS.
|
|
6202
|
+
*
|
|
6203
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/appearance)
|
|
6204
|
+
*/
|
|
6117
6205
|
appearance: string;
|
|
6118
|
-
/**
|
|
6206
|
+
/**
|
|
6207
|
+
* The aspect-ratio CSS property allows you to define the desired width-to-height ratio of an element's box. This means that even if the parent container or viewport size changes, the browser will adjust the element's dimensions to maintain the specified width-to-height ratio. The specified aspect ratio is used in the calculation of auto sizes and some other layout functions.
|
|
6208
|
+
*
|
|
6209
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/aspect-ratio)
|
|
6210
|
+
*/
|
|
6119
6211
|
aspectRatio: string;
|
|
6120
|
-
/**
|
|
6212
|
+
/**
|
|
6213
|
+
* 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 the element or its background needs to be transparent or partially transparent.
|
|
6214
|
+
*
|
|
6215
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/backdrop-filter)
|
|
6216
|
+
*/
|
|
6121
6217
|
backdropFilter: string;
|
|
6122
|
-
/**
|
|
6218
|
+
/**
|
|
6219
|
+
* The backface-visibility CSS property sets whether the back face of an element is visible when turned towards the user.
|
|
6220
|
+
*
|
|
6221
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/backface-visibility)
|
|
6222
|
+
*/
|
|
6123
6223
|
backfaceVisibility: string;
|
|
6124
|
-
/**
|
|
6224
|
+
/**
|
|
6225
|
+
* The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method. Component properties not set in the background shorthand property value declaration are set to their default values.
|
|
6226
|
+
*
|
|
6227
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background)
|
|
6228
|
+
*/
|
|
6125
6229
|
background: string;
|
|
6126
|
-
/**
|
|
6230
|
+
/**
|
|
6231
|
+
* The background-attachment CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block.
|
|
6232
|
+
*
|
|
6233
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-attachment)
|
|
6234
|
+
*/
|
|
6127
6235
|
backgroundAttachment: string;
|
|
6128
|
-
/**
|
|
6236
|
+
/**
|
|
6237
|
+
* 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.
|
|
6238
|
+
*
|
|
6239
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-blend-mode)
|
|
6240
|
+
*/
|
|
6129
6241
|
backgroundBlendMode: string;
|
|
6130
|
-
/**
|
|
6242
|
+
/**
|
|
6243
|
+
* The background-clip CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
|
|
6244
|
+
*
|
|
6245
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-clip)
|
|
6246
|
+
*/
|
|
6131
6247
|
backgroundClip: string;
|
|
6132
|
-
/**
|
|
6248
|
+
/**
|
|
6249
|
+
* The background-color CSS property sets the background color of an element.
|
|
6250
|
+
*
|
|
6251
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-color)
|
|
6252
|
+
*/
|
|
6133
6253
|
backgroundColor: string;
|
|
6134
|
-
/**
|
|
6254
|
+
/**
|
|
6255
|
+
* The background-image CSS property sets one or more background images on an element.
|
|
6256
|
+
*
|
|
6257
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-image)
|
|
6258
|
+
*/
|
|
6135
6259
|
backgroundImage: string;
|
|
6136
|
-
/**
|
|
6260
|
+
/**
|
|
6261
|
+
* The background-origin CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
|
|
6262
|
+
*
|
|
6263
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-origin)
|
|
6264
|
+
*/
|
|
6137
6265
|
backgroundOrigin: string;
|
|
6138
|
-
/**
|
|
6266
|
+
/**
|
|
6267
|
+
* The background-position CSS property sets the initial position for each background image. The position is relative to the position layer set by background-origin.
|
|
6268
|
+
*
|
|
6269
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-position)
|
|
6270
|
+
*/
|
|
6139
6271
|
backgroundPosition: string;
|
|
6140
|
-
/**
|
|
6272
|
+
/**
|
|
6273
|
+
* 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.
|
|
6274
|
+
*
|
|
6275
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-position-x)
|
|
6276
|
+
*/
|
|
6141
6277
|
backgroundPositionX: string;
|
|
6142
|
-
/**
|
|
6278
|
+
/**
|
|
6279
|
+
* 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.
|
|
6280
|
+
*
|
|
6281
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-position-y)
|
|
6282
|
+
*/
|
|
6143
6283
|
backgroundPositionY: string;
|
|
6144
|
-
/**
|
|
6284
|
+
/**
|
|
6285
|
+
* 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.
|
|
6286
|
+
*
|
|
6287
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-repeat)
|
|
6288
|
+
*/
|
|
6145
6289
|
backgroundRepeat: string;
|
|
6146
|
-
/**
|
|
6290
|
+
/**
|
|
6291
|
+
* 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.
|
|
6292
|
+
*
|
|
6293
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-size)
|
|
6294
|
+
*/
|
|
6147
6295
|
backgroundSize: string;
|
|
6148
6296
|
baselineShift: string;
|
|
6149
6297
|
baselineSource: string;
|
|
6150
|
-
/**
|
|
6298
|
+
/**
|
|
6299
|
+
* The block-size CSS property defines the size of an element's block along the block axis. If the writing-mode is horizontal, it corresponds to the height; if the writing mode is vertical, it corresponds to the width. A related property is inline-size, which defines the other dimension of the element.
|
|
6300
|
+
*
|
|
6301
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/block-size)
|
|
6302
|
+
*/
|
|
6151
6303
|
blockSize: string;
|
|
6152
|
-
/**
|
|
6304
|
+
/**
|
|
6305
|
+
* The **`border`** shorthand CSS property sets an element's border. It sets the values of border-width, border-style, and border-color.
|
|
6306
|
+
*
|
|
6307
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border)
|
|
6308
|
+
*/
|
|
6153
6309
|
border: string;
|
|
6154
|
-
/**
|
|
6310
|
+
/**
|
|
6311
|
+
* The border-block CSS property is a shorthand property for setting the individual logical block border property values in a single place in the style sheet.
|
|
6312
|
+
*
|
|
6313
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-block)
|
|
6314
|
+
*/
|
|
6155
6315
|
borderBlock: string;
|
|
6156
|
-
/**
|
|
6316
|
+
/**
|
|
6317
|
+
* 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.
|
|
6318
|
+
*
|
|
6319
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-block-color)
|
|
6320
|
+
*/
|
|
6157
6321
|
borderBlockColor: string;
|
|
6158
|
-
/**
|
|
6322
|
+
/**
|
|
6323
|
+
* The border-block-end CSS property is a shorthand property for setting the individual logical block-end border property values in a single place in the style sheet.
|
|
6324
|
+
*
|
|
6325
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-block-end)
|
|
6326
|
+
*/
|
|
6159
6327
|
borderBlockEnd: string;
|
|
6160
|
-
/**
|
|
6328
|
+
/**
|
|
6329
|
+
* 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.
|
|
6330
|
+
*
|
|
6331
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-block-end-color)
|
|
6332
|
+
*/
|
|
6161
6333
|
borderBlockEndColor: string;
|
|
6162
|
-
/**
|
|
6334
|
+
/**
|
|
6335
|
+
* 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.
|
|
6336
|
+
*
|
|
6337
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-block-end-style)
|
|
6338
|
+
*/
|
|
6163
6339
|
borderBlockEndStyle: string;
|
|
6164
|
-
/**
|
|
6340
|
+
/**
|
|
6341
|
+
* 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.
|
|
6342
|
+
*
|
|
6343
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-block-end-width)
|
|
6344
|
+
*/
|
|
6165
6345
|
borderBlockEndWidth: string;
|
|
6166
|
-
/**
|
|
6346
|
+
/**
|
|
6347
|
+
* The border-block-start CSS property is a shorthand property for setting the individual logical block-start border property values in a single place in the style sheet.
|
|
6348
|
+
*
|
|
6349
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-block-start)
|
|
6350
|
+
*/
|
|
6167
6351
|
borderBlockStart: string;
|
|
6168
|
-
/**
|
|
6352
|
+
/**
|
|
6353
|
+
* 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.
|
|
6354
|
+
*
|
|
6355
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-block-start-color)
|
|
6356
|
+
*/
|
|
6169
6357
|
borderBlockStartColor: string;
|
|
6170
|
-
/**
|
|
6358
|
+
/**
|
|
6359
|
+
* 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.
|
|
6360
|
+
*
|
|
6361
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-block-start-style)
|
|
6362
|
+
*/
|
|
6171
6363
|
borderBlockStartStyle: string;
|
|
6172
|
-
/**
|
|
6364
|
+
/**
|
|
6365
|
+
* 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.
|
|
6366
|
+
*
|
|
6367
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-block-start-width)
|
|
6368
|
+
*/
|
|
6173
6369
|
borderBlockStartWidth: string;
|
|
6174
|
-
/**
|
|
6370
|
+
/**
|
|
6371
|
+
* 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.
|
|
6372
|
+
*
|
|
6373
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-block-style)
|
|
6374
|
+
*/
|
|
6175
6375
|
borderBlockStyle: string;
|
|
6176
|
-
/**
|
|
6376
|
+
/**
|
|
6377
|
+
* 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.
|
|
6378
|
+
*
|
|
6379
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-block-width)
|
|
6380
|
+
*/
|
|
6177
6381
|
borderBlockWidth: string;
|
|
6178
|
-
/**
|
|
6382
|
+
/**
|
|
6383
|
+
* The border-bottom shorthand CSS property sets an element's bottom border. It sets the values of border-bottom-width, border-bottom-style and border-bottom-color.
|
|
6384
|
+
*
|
|
6385
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-bottom)
|
|
6386
|
+
*/
|
|
6179
6387
|
borderBottom: string;
|
|
6180
|
-
/**
|
|
6388
|
+
/**
|
|
6389
|
+
* 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.
|
|
6390
|
+
*
|
|
6391
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-bottom-color)
|
|
6392
|
+
*/
|
|
6181
6393
|
borderBottomColor: string;
|
|
6182
|
-
/**
|
|
6394
|
+
/**
|
|
6395
|
+
* 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.
|
|
6396
|
+
*
|
|
6397
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-bottom-left-radius)
|
|
6398
|
+
*/
|
|
6183
6399
|
borderBottomLeftRadius: string;
|
|
6184
|
-
/**
|
|
6400
|
+
/**
|
|
6401
|
+
* 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.
|
|
6402
|
+
*
|
|
6403
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-bottom-right-radius)
|
|
6404
|
+
*/
|
|
6185
6405
|
borderBottomRightRadius: string;
|
|
6186
|
-
/**
|
|
6406
|
+
/**
|
|
6407
|
+
* The border-bottom-style CSS property sets the line style of an element's bottom border.
|
|
6408
|
+
*
|
|
6409
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-bottom-style)
|
|
6410
|
+
*/
|
|
6187
6411
|
borderBottomStyle: string;
|
|
6188
|
-
/**
|
|
6412
|
+
/**
|
|
6413
|
+
* The border-bottom-width CSS property sets the width of the bottom border of an element.
|
|
6414
|
+
*
|
|
6415
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-bottom-width)
|
|
6416
|
+
*/
|
|
6189
6417
|
borderBottomWidth: string;
|
|
6190
|
-
/**
|
|
6418
|
+
/**
|
|
6419
|
+
* The border-collapse CSS property sets whether cells inside a <table> have shared or separate borders.
|
|
6420
|
+
*
|
|
6421
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-collapse)
|
|
6422
|
+
*/
|
|
6191
6423
|
borderCollapse: string;
|
|
6192
|
-
/**
|
|
6424
|
+
/**
|
|
6425
|
+
* The border-color shorthand CSS property sets the color of an element's border.
|
|
6426
|
+
*
|
|
6427
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-color)
|
|
6428
|
+
*/
|
|
6193
6429
|
borderColor: string;
|
|
6194
|
-
/**
|
|
6430
|
+
/**
|
|
6431
|
+
* 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.
|
|
6432
|
+
*
|
|
6433
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-end-end-radius)
|
|
6434
|
+
*/
|
|
6195
6435
|
borderEndEndRadius: string;
|
|
6196
|
-
/**
|
|
6436
|
+
/**
|
|
6437
|
+
* 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.
|
|
6438
|
+
*
|
|
6439
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-end-start-radius)
|
|
6440
|
+
*/
|
|
6197
6441
|
borderEndStartRadius: string;
|
|
6198
|
-
/**
|
|
6442
|
+
/**
|
|
6443
|
+
* The border-image CSS property draws an image around a given element. It replaces the element's regular border.
|
|
6444
|
+
*
|
|
6445
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-image)
|
|
6446
|
+
*/
|
|
6199
6447
|
borderImage: string;
|
|
6200
|
-
/**
|
|
6448
|
+
/**
|
|
6449
|
+
* The border-image-outset CSS property sets the distance by which an element's border image is set out from its border box.
|
|
6450
|
+
*
|
|
6451
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-image-outset)
|
|
6452
|
+
*/
|
|
6201
6453
|
borderImageOutset: string;
|
|
6202
|
-
/**
|
|
6454
|
+
/**
|
|
6455
|
+
* The border-image-repeat CSS property defines how the images for the sides and the middle part of the border image are scaled and tiled. The middle region can be displayed by using the keyword "fill" in the border-image-slice property.
|
|
6456
|
+
*
|
|
6457
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-image-repeat)
|
|
6458
|
+
*/
|
|
6203
6459
|
borderImageRepeat: string;
|
|
6204
|
-
/**
|
|
6460
|
+
/**
|
|
6461
|
+
* 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.
|
|
6462
|
+
*
|
|
6463
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-image-slice)
|
|
6464
|
+
*/
|
|
6205
6465
|
borderImageSlice: string;
|
|
6206
|
-
/**
|
|
6466
|
+
/**
|
|
6467
|
+
* The border-image-source CSS property sets the source image used to create an element's border image.
|
|
6468
|
+
*
|
|
6469
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-image-source)
|
|
6470
|
+
*/
|
|
6207
6471
|
borderImageSource: string;
|
|
6208
|
-
/**
|
|
6472
|
+
/**
|
|
6473
|
+
* The border-image-width CSS property sets the width of an element's border image.
|
|
6474
|
+
*
|
|
6475
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-image-width)
|
|
6476
|
+
*/
|
|
6209
6477
|
borderImageWidth: string;
|
|
6210
|
-
/**
|
|
6478
|
+
/**
|
|
6479
|
+
* The border-inline CSS property is a shorthand property for setting the individual logical inline border property values in a single place in the style sheet.
|
|
6480
|
+
*
|
|
6481
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-inline)
|
|
6482
|
+
*/
|
|
6211
6483
|
borderInline: string;
|
|
6212
|
-
/**
|
|
6484
|
+
/**
|
|
6485
|
+
* 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.
|
|
6486
|
+
*
|
|
6487
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-inline-color)
|
|
6488
|
+
*/
|
|
6213
6489
|
borderInlineColor: string;
|
|
6214
|
-
/**
|
|
6490
|
+
/**
|
|
6491
|
+
* The border-inline-end CSS property is a shorthand property for setting the individual logical inline-end border property values in a single place in the style sheet.
|
|
6492
|
+
*
|
|
6493
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-inline-end)
|
|
6494
|
+
*/
|
|
6215
6495
|
borderInlineEnd: string;
|
|
6216
|
-
/**
|
|
6496
|
+
/**
|
|
6497
|
+
* 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.
|
|
6498
|
+
*
|
|
6499
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-inline-end-color)
|
|
6500
|
+
*/
|
|
6217
6501
|
borderInlineEndColor: string;
|
|
6218
|
-
/**
|
|
6502
|
+
/**
|
|
6503
|
+
* 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.
|
|
6504
|
+
*
|
|
6505
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-inline-end-style)
|
|
6506
|
+
*/
|
|
6219
6507
|
borderInlineEndStyle: string;
|
|
6220
|
-
/**
|
|
6508
|
+
/**
|
|
6509
|
+
* 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.
|
|
6510
|
+
*
|
|
6511
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-inline-end-width)
|
|
6512
|
+
*/
|
|
6221
6513
|
borderInlineEndWidth: string;
|
|
6222
|
-
/**
|
|
6514
|
+
/**
|
|
6515
|
+
* The border-inline-start CSS property is a shorthand property for setting the individual logical inline-start border property values in a single place in the style sheet.
|
|
6516
|
+
*
|
|
6517
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-inline-start)
|
|
6518
|
+
*/
|
|
6223
6519
|
borderInlineStart: string;
|
|
6224
|
-
/**
|
|
6520
|
+
/**
|
|
6521
|
+
* 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.
|
|
6522
|
+
*
|
|
6523
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-inline-start-color)
|
|
6524
|
+
*/
|
|
6225
6525
|
borderInlineStartColor: string;
|
|
6226
|
-
/**
|
|
6526
|
+
/**
|
|
6527
|
+
* 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.
|
|
6528
|
+
*
|
|
6529
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-inline-start-style)
|
|
6530
|
+
*/
|
|
6227
6531
|
borderInlineStartStyle: string;
|
|
6228
|
-
/**
|
|
6532
|
+
/**
|
|
6533
|
+
* 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.
|
|
6534
|
+
*
|
|
6535
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-inline-start-width)
|
|
6536
|
+
*/
|
|
6229
6537
|
borderInlineStartWidth: string;
|
|
6230
|
-
/**
|
|
6538
|
+
/**
|
|
6539
|
+
* 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.
|
|
6540
|
+
*
|
|
6541
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-inline-style)
|
|
6542
|
+
*/
|
|
6231
6543
|
borderInlineStyle: string;
|
|
6232
|
-
/**
|
|
6544
|
+
/**
|
|
6545
|
+
* 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.
|
|
6546
|
+
*
|
|
6547
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-inline-width)
|
|
6548
|
+
*/
|
|
6233
6549
|
borderInlineWidth: string;
|
|
6234
|
-
/**
|
|
6550
|
+
/**
|
|
6551
|
+
* The border-left shorthand CSS property sets all the properties of an element's left border.
|
|
6552
|
+
*
|
|
6553
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-left)
|
|
6554
|
+
*/
|
|
6235
6555
|
borderLeft: string;
|
|
6236
|
-
/**
|
|
6556
|
+
/**
|
|
6557
|
+
* 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.
|
|
6558
|
+
*
|
|
6559
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-left-color)
|
|
6560
|
+
*/
|
|
6237
6561
|
borderLeftColor: string;
|
|
6238
|
-
/**
|
|
6562
|
+
/**
|
|
6563
|
+
* The border-left-style CSS property sets the line style of an element's left border.
|
|
6564
|
+
*
|
|
6565
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-left-style)
|
|
6566
|
+
*/
|
|
6239
6567
|
borderLeftStyle: string;
|
|
6240
|
-
/**
|
|
6568
|
+
/**
|
|
6569
|
+
* The border-left-width CSS property sets the width of the left border of an element.
|
|
6570
|
+
*
|
|
6571
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-left-width)
|
|
6572
|
+
*/
|
|
6241
6573
|
borderLeftWidth: string;
|
|
6242
|
-
/**
|
|
6574
|
+
/**
|
|
6575
|
+
* The border-radius CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
|
|
6576
|
+
*
|
|
6577
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-radius)
|
|
6578
|
+
*/
|
|
6243
6579
|
borderRadius: string;
|
|
6244
|
-
/**
|
|
6580
|
+
/**
|
|
6581
|
+
* The border-right shorthand CSS property sets all the properties of an element's right border.
|
|
6582
|
+
*
|
|
6583
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-right)
|
|
6584
|
+
*/
|
|
6245
6585
|
borderRight: string;
|
|
6246
|
-
/**
|
|
6586
|
+
/**
|
|
6587
|
+
* 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.
|
|
6588
|
+
*
|
|
6589
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-right-color)
|
|
6590
|
+
*/
|
|
6247
6591
|
borderRightColor: string;
|
|
6248
|
-
/**
|
|
6592
|
+
/**
|
|
6593
|
+
* The border-right-style CSS property sets the line style of an element's right border.
|
|
6594
|
+
*
|
|
6595
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-right-style)
|
|
6596
|
+
*/
|
|
6249
6597
|
borderRightStyle: string;
|
|
6250
|
-
/**
|
|
6598
|
+
/**
|
|
6599
|
+
* The border-right-width CSS property sets the width of the right border of an element.
|
|
6600
|
+
*
|
|
6601
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-right-width)
|
|
6602
|
+
*/
|
|
6251
6603
|
borderRightWidth: string;
|
|
6252
|
-
/**
|
|
6604
|
+
/**
|
|
6605
|
+
* The border-spacing CSS property sets the distance between the borders of adjacent cells in a <table>. This property applies only when border-collapse is separate.
|
|
6606
|
+
*
|
|
6607
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-spacing)
|
|
6608
|
+
*/
|
|
6253
6609
|
borderSpacing: string;
|
|
6254
|
-
/**
|
|
6610
|
+
/**
|
|
6611
|
+
* 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.
|
|
6612
|
+
*
|
|
6613
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-start-end-radius)
|
|
6614
|
+
*/
|
|
6255
6615
|
borderStartEndRadius: string;
|
|
6256
|
-
/**
|
|
6616
|
+
/**
|
|
6617
|
+
* 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.
|
|
6618
|
+
*
|
|
6619
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-start-start-radius)
|
|
6620
|
+
*/
|
|
6257
6621
|
borderStartStartRadius: string;
|
|
6258
|
-
/**
|
|
6622
|
+
/**
|
|
6623
|
+
* The border-style shorthand CSS property sets the line style for all four sides of an element's border.
|
|
6624
|
+
*
|
|
6625
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-style)
|
|
6626
|
+
*/
|
|
6259
6627
|
borderStyle: string;
|
|
6260
|
-
/**
|
|
6628
|
+
/**
|
|
6629
|
+
* The border-top shorthand CSS property sets all the properties of an element's top border.
|
|
6630
|
+
*
|
|
6631
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-top)
|
|
6632
|
+
*/
|
|
6261
6633
|
borderTop: string;
|
|
6262
|
-
/**
|
|
6634
|
+
/**
|
|
6635
|
+
* 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.
|
|
6636
|
+
*
|
|
6637
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-top-color)
|
|
6638
|
+
*/
|
|
6263
6639
|
borderTopColor: string;
|
|
6264
|
-
/**
|
|
6640
|
+
/**
|
|
6641
|
+
* 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.
|
|
6642
|
+
*
|
|
6643
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-top-left-radius)
|
|
6644
|
+
*/
|
|
6265
6645
|
borderTopLeftRadius: string;
|
|
6266
|
-
/**
|
|
6646
|
+
/**
|
|
6647
|
+
* 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.
|
|
6648
|
+
*
|
|
6649
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-top-right-radius)
|
|
6650
|
+
*/
|
|
6267
6651
|
borderTopRightRadius: string;
|
|
6268
|
-
/**
|
|
6652
|
+
/**
|
|
6653
|
+
* The border-top-style CSS property sets the line style of an element's top border.
|
|
6654
|
+
*
|
|
6655
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-top-style)
|
|
6656
|
+
*/
|
|
6269
6657
|
borderTopStyle: string;
|
|
6270
|
-
/**
|
|
6658
|
+
/**
|
|
6659
|
+
* The border-top-width CSS property sets the width of the top border of an element.
|
|
6660
|
+
*
|
|
6661
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-top-width)
|
|
6662
|
+
*/
|
|
6271
6663
|
borderTopWidth: string;
|
|
6272
|
-
/**
|
|
6664
|
+
/**
|
|
6665
|
+
* The border-width shorthand CSS property sets the width of an element's border.
|
|
6666
|
+
*
|
|
6667
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-width)
|
|
6668
|
+
*/
|
|
6273
6669
|
borderWidth: string;
|
|
6274
|
-
/**
|
|
6670
|
+
/**
|
|
6671
|
+
* The **`bottom`** CSS property participates in setting the vertical position of a positioned element. This inset property has no effect on non-positioned elements.
|
|
6672
|
+
*
|
|
6673
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/bottom)
|
|
6674
|
+
*/
|
|
6275
6675
|
bottom: string;
|
|
6276
|
-
/**
|
|
6676
|
+
/**
|
|
6677
|
+
* The box-decoration-break CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
|
|
6678
|
+
*
|
|
6679
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/box-decoration-break)
|
|
6680
|
+
*/
|
|
6277
6681
|
boxDecorationBreak: string;
|
|
6278
|
-
/**
|
|
6682
|
+
/**
|
|
6683
|
+
* 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.
|
|
6684
|
+
*
|
|
6685
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/box-shadow)
|
|
6686
|
+
*/
|
|
6279
6687
|
boxShadow: string;
|
|
6280
|
-
/**
|
|
6688
|
+
/**
|
|
6689
|
+
* The box-sizing CSS property sets how the total width and height of an element is calculated.
|
|
6690
|
+
*
|
|
6691
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/box-sizing)
|
|
6692
|
+
*/
|
|
6281
6693
|
boxSizing: string;
|
|
6282
|
-
/**
|
|
6694
|
+
/**
|
|
6695
|
+
* 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.
|
|
6696
|
+
*
|
|
6697
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/break-after)
|
|
6698
|
+
*/
|
|
6283
6699
|
breakAfter: string;
|
|
6284
|
-
/**
|
|
6700
|
+
/**
|
|
6701
|
+
* 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.
|
|
6702
|
+
*
|
|
6703
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/break-before)
|
|
6704
|
+
*/
|
|
6285
6705
|
breakBefore: string;
|
|
6286
|
-
/**
|
|
6706
|
+
/**
|
|
6707
|
+
* 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.
|
|
6708
|
+
*
|
|
6709
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/break-inside)
|
|
6710
|
+
*/
|
|
6287
6711
|
breakInside: string;
|
|
6288
|
-
/**
|
|
6712
|
+
/**
|
|
6713
|
+
* The caption-side CSS property puts the content of a table's <caption> on the specified side. The values are relative to the writing-mode of the table.
|
|
6714
|
+
*
|
|
6715
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/caption-side)
|
|
6716
|
+
*/
|
|
6289
6717
|
captionSide: string;
|
|
6290
|
-
/**
|
|
6718
|
+
/**
|
|
6719
|
+
* The caret-color CSS property sets the color of the insertion caret, sometimes referred to as the text input cursor. This is the visible marker appearing at the insertion point where the next character typed will be added or where the next character deleted will be removed.
|
|
6720
|
+
*
|
|
6721
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/caret-color)
|
|
6722
|
+
*/
|
|
6291
6723
|
caretColor: string;
|
|
6292
|
-
/**
|
|
6724
|
+
/**
|
|
6725
|
+
* 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.
|
|
6726
|
+
*
|
|
6727
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/clear)
|
|
6728
|
+
*/
|
|
6293
6729
|
clear: string;
|
|
6294
6730
|
/**
|
|
6731
|
+
* The **`clip`** CSS property defines a visible portion of an element. The clip property applies only to absolutely positioned elements — that is, elements with position:absolute or position:fixed.
|
|
6295
6732
|
* @deprecated
|
|
6296
6733
|
*
|
|
6297
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/clip)
|
|
6734
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/clip)
|
|
6298
6735
|
*/
|
|
6299
6736
|
clip: string;
|
|
6300
|
-
/**
|
|
6737
|
+
/**
|
|
6738
|
+
* 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.
|
|
6739
|
+
*
|
|
6740
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/clip-path)
|
|
6741
|
+
*/
|
|
6301
6742
|
clipPath: string;
|
|
6302
|
-
/**
|
|
6743
|
+
/**
|
|
6744
|
+
* The clip-rule CSS property determines, when parts of the path overlap other parts, which pixels in a mask's box are inside the clipping shape defined by a clip path and which are outside.
|
|
6745
|
+
*
|
|
6746
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/clip-rule)
|
|
6747
|
+
*/
|
|
6303
6748
|
clipRule: string;
|
|
6304
|
-
/**
|
|
6749
|
+
/**
|
|
6750
|
+
* The **`color`** CSS property sets the foreground color value of an element's text and text decorations, and sets the currentColor value. currentColor may be used as an indirect value on other properties and is the default for other color properties, such as border-color.
|
|
6751
|
+
*
|
|
6752
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/color)
|
|
6753
|
+
*/
|
|
6305
6754
|
color: string;
|
|
6306
|
-
/**
|
|
6755
|
+
/**
|
|
6756
|
+
* The color-interpolation CSS property is used in SVG to specify which color space to use for <linearGradient> and <radialGradient> SVG elements.
|
|
6757
|
+
*
|
|
6758
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/color-interpolation)
|
|
6759
|
+
*/
|
|
6307
6760
|
colorInterpolation: string;
|
|
6308
|
-
/**
|
|
6761
|
+
/**
|
|
6762
|
+
* The color-interpolation-filters CSS property specifies the color space for imaging operations performed via SVG filter effects. If explicitly declared, the value of the CSS property overrides any value given in the element's color-interpolation-filters attribute.
|
|
6763
|
+
*
|
|
6764
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/color-interpolation-filters)
|
|
6765
|
+
*/
|
|
6309
6766
|
colorInterpolationFilters: string;
|
|
6310
|
-
/**
|
|
6767
|
+
/**
|
|
6768
|
+
* The color-scheme CSS property allows an element to indicate which color schemes it can comfortably be rendered in. User agents change the following aspects of the UI chrome to match the used color scheme:
|
|
6769
|
+
*
|
|
6770
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/color-scheme)
|
|
6771
|
+
*/
|
|
6311
6772
|
colorScheme: string;
|
|
6312
|
-
/**
|
|
6773
|
+
/**
|
|
6774
|
+
* The column-count CSS property breaks an element's content into the specified number of columns.
|
|
6775
|
+
*
|
|
6776
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/column-count)
|
|
6777
|
+
*/
|
|
6313
6778
|
columnCount: string;
|
|
6314
|
-
/**
|
|
6779
|
+
/**
|
|
6780
|
+
* The column-fill CSS property controls how an element's contents are balanced when broken into columns.
|
|
6781
|
+
*
|
|
6782
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/column-fill)
|
|
6783
|
+
*/
|
|
6315
6784
|
columnFill: string;
|
|
6316
|
-
/**
|
|
6785
|
+
/**
|
|
6786
|
+
* The column-gap CSS property sets the size of the gap (gutter) between an element's columns.
|
|
6787
|
+
*
|
|
6788
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/column-gap)
|
|
6789
|
+
*/
|
|
6317
6790
|
columnGap: string;
|
|
6318
|
-
/**
|
|
6791
|
+
/**
|
|
6792
|
+
* The column-rule shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
|
|
6793
|
+
*
|
|
6794
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/column-rule)
|
|
6795
|
+
*/
|
|
6319
6796
|
columnRule: string;
|
|
6320
|
-
/**
|
|
6797
|
+
/**
|
|
6798
|
+
* The column-rule-color CSS property sets the color of the line drawn between columns in a multi-column layout.
|
|
6799
|
+
*
|
|
6800
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/column-rule-color)
|
|
6801
|
+
*/
|
|
6321
6802
|
columnRuleColor: string;
|
|
6322
|
-
/**
|
|
6803
|
+
/**
|
|
6804
|
+
* The column-rule-style CSS property sets the style of the line drawn between columns in a multi-column layout.
|
|
6805
|
+
*
|
|
6806
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/column-rule-style)
|
|
6807
|
+
*/
|
|
6323
6808
|
columnRuleStyle: string;
|
|
6324
|
-
/**
|
|
6809
|
+
/**
|
|
6810
|
+
* The column-rule-width CSS property sets the width of the line drawn between columns in a multi-column layout.
|
|
6811
|
+
*
|
|
6812
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/column-rule-width)
|
|
6813
|
+
*/
|
|
6325
6814
|
columnRuleWidth: string;
|
|
6326
|
-
/**
|
|
6815
|
+
/**
|
|
6816
|
+
* The column-span CSS property makes it possible for an element to span across all columns when its value is set to all.
|
|
6817
|
+
*
|
|
6818
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/column-span)
|
|
6819
|
+
*/
|
|
6327
6820
|
columnSpan: string;
|
|
6328
|
-
/**
|
|
6821
|
+
/**
|
|
6822
|
+
* 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.
|
|
6823
|
+
*
|
|
6824
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/column-width)
|
|
6825
|
+
*/
|
|
6329
6826
|
columnWidth: string;
|
|
6330
|
-
/**
|
|
6827
|
+
/**
|
|
6828
|
+
* The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
|
|
6829
|
+
*
|
|
6830
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/columns)
|
|
6831
|
+
*/
|
|
6331
6832
|
columns: string;
|
|
6332
|
-
/**
|
|
6833
|
+
/**
|
|
6834
|
+
* The **`contain`** CSS property indicates that an element and its contents are, as much as possible, independent from the rest of the document tree. Containment enables isolating a subsection of the DOM, providing performance benefits by limiting calculations of layout, style, paint, size, or any combination to a DOM subtree rather than the entire page. Containment can also be used to scope CSS counters and quotes.
|
|
6835
|
+
*
|
|
6836
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/contain)
|
|
6837
|
+
*/
|
|
6333
6838
|
contain: string;
|
|
6334
|
-
/**
|
|
6839
|
+
/**
|
|
6840
|
+
* The contain-intrinsic-block-size CSS logical property defines the block size of an element that a browser can use for layout when the element is subject to size containment.
|
|
6841
|
+
*
|
|
6842
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/contain-intrinsic-block-size)
|
|
6843
|
+
*/
|
|
6335
6844
|
containIntrinsicBlockSize: string;
|
|
6336
|
-
/**
|
|
6845
|
+
/**
|
|
6846
|
+
* The contain-intrinsic-height CSS property sets the height of an element that a browser can use for layout when the element is subject to size containment.
|
|
6847
|
+
*
|
|
6848
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/contain-intrinsic-height)
|
|
6849
|
+
*/
|
|
6337
6850
|
containIntrinsicHeight: string;
|
|
6338
|
-
/**
|
|
6851
|
+
/**
|
|
6852
|
+
* The contain-intrinsic-inline-size CSS logical property defines the inline-size of an element that a browser can use for layout when the element is subject to size containment.
|
|
6853
|
+
*
|
|
6854
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/contain-intrinsic-inline-size)
|
|
6855
|
+
*/
|
|
6339
6856
|
containIntrinsicInlineSize: string;
|
|
6340
|
-
/**
|
|
6857
|
+
/**
|
|
6858
|
+
* The contain-intrinsic-size CSS shorthand property sets the size of an element that a browser will use for layout when the element is subject to size containment.
|
|
6859
|
+
*
|
|
6860
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/contain-intrinsic-size)
|
|
6861
|
+
*/
|
|
6341
6862
|
containIntrinsicSize: string;
|
|
6342
|
-
/**
|
|
6863
|
+
/**
|
|
6864
|
+
* The contain-intrinsic-width CSS property sets the width of an element that a browser will use for layout when the element is subject to size containment.
|
|
6865
|
+
*
|
|
6866
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/contain-intrinsic-width)
|
|
6867
|
+
*/
|
|
6343
6868
|
containIntrinsicWidth: string;
|
|
6344
|
-
/**
|
|
6869
|
+
/**
|
|
6870
|
+
* The **`container`** shorthand CSS property establishes the element as a query container and specifies the name and type of the containment context used in a container query.
|
|
6871
|
+
*
|
|
6872
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/container)
|
|
6873
|
+
*/
|
|
6345
6874
|
container: string;
|
|
6346
|
-
/**
|
|
6875
|
+
/**
|
|
6876
|
+
* The container-name CSS property specifies a list of query container names used by the @container at-rule in a container query. A container query will apply styles to elements based on the size or scroll-state of the nearest ancestor with a containment context. When a containment context is given a name, it can be specifically targeted using the @container at-rule instead of the nearest ancestor with containment.
|
|
6877
|
+
*
|
|
6878
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/container-name)
|
|
6879
|
+
*/
|
|
6347
6880
|
containerName: string;
|
|
6348
|
-
/**
|
|
6881
|
+
/**
|
|
6882
|
+
* An element can be established as a query container using the container-type CSS property. container-type is used to define the type of container context used in a container query. The available container contexts are:
|
|
6883
|
+
*
|
|
6884
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/container-type)
|
|
6885
|
+
*/
|
|
6349
6886
|
containerType: string;
|
|
6350
|
-
/**
|
|
6887
|
+
/**
|
|
6888
|
+
* The **`content`** CSS property replaces content with a generated value. It can be used to define what is rendered inside an element or pseudo-element. For elements, the content property specifies whether the element renders normally (normal or none) or is replaced with an image (and associated "alt" text). For pseudo-elements and margin boxes, content defines the content as images, text, both, or none, which determines whether the element renders at all.
|
|
6889
|
+
*
|
|
6890
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/content)
|
|
6891
|
+
*/
|
|
6351
6892
|
content: string;
|
|
6352
|
-
/**
|
|
6893
|
+
/**
|
|
6894
|
+
* The content-visibility CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. It enables the user agent to skip an element's rendering work (including layout and painting) until it is needed — which makes the initial page load much faster.
|
|
6895
|
+
*
|
|
6896
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/content-visibility)
|
|
6897
|
+
*/
|
|
6353
6898
|
contentVisibility: string;
|
|
6354
|
-
/**
|
|
6899
|
+
/**
|
|
6900
|
+
* The counter-increment CSS property can be used to increase or decrease the value of the named CSS counters by the specified values, or to prevent all counters or an individual counter's value from being changed.
|
|
6901
|
+
*
|
|
6902
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/counter-increment)
|
|
6903
|
+
*/
|
|
6355
6904
|
counterIncrement: string;
|
|
6356
|
-
/**
|
|
6905
|
+
/**
|
|
6906
|
+
* The counter-reset CSS property creates named CSS counters and initializes them to a specific value. It supports creating counters that count up from one to the number of elements, as well as those that count down from the number of elements to one.
|
|
6907
|
+
*
|
|
6908
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/counter-reset)
|
|
6909
|
+
*/
|
|
6357
6910
|
counterReset: string;
|
|
6358
|
-
/**
|
|
6911
|
+
/**
|
|
6912
|
+
* The counter-set CSS property sets CSS counters on the element to the given values.
|
|
6913
|
+
*
|
|
6914
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/counter-set)
|
|
6915
|
+
*/
|
|
6359
6916
|
counterSet: string;
|
|
6360
6917
|
/**
|
|
6361
6918
|
* The **`cssFloat`** property of the CSSStyleProperties interface returns the CSS float property.
|
|
@@ -6363,1057 +6920,2302 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
|
|
|
6363
6920
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssFloat)
|
|
6364
6921
|
*/
|
|
6365
6922
|
cssFloat: string;
|
|
6366
|
-
/**
|
|
6923
|
+
/**
|
|
6924
|
+
* The **`cursor`** CSS property sets the mouse cursor, if any, to show when the mouse pointer is over an element.
|
|
6925
|
+
*
|
|
6926
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/cursor)
|
|
6927
|
+
*/
|
|
6367
6928
|
cursor: string;
|
|
6368
|
-
/**
|
|
6929
|
+
/**
|
|
6930
|
+
* The **`cx`** CSS property defines the x-axis center point of an SVG <circle> or <ellipse> element. If present, it overrides the element's cx attribute.
|
|
6931
|
+
*
|
|
6932
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/cx)
|
|
6933
|
+
*/
|
|
6369
6934
|
cx: string;
|
|
6370
|
-
/**
|
|
6935
|
+
/**
|
|
6936
|
+
* The **`cy`** CSS property defines the y-axis center point of an SVG <circle> or <ellipse> elements. If present, it overrides the element's cy attribute.
|
|
6937
|
+
*
|
|
6938
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/cy)
|
|
6939
|
+
*/
|
|
6371
6940
|
cy: string;
|
|
6372
|
-
/**
|
|
6941
|
+
/**
|
|
6942
|
+
* The **`d`** CSS property defines a path to be drawn by the SVG <path> element. If present, it overrides the element's d attribute.
|
|
6943
|
+
*
|
|
6944
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/d)
|
|
6945
|
+
*/
|
|
6373
6946
|
d: string;
|
|
6374
|
-
/**
|
|
6947
|
+
/**
|
|
6948
|
+
* The **`direction`** CSS property sets the direction of text, table and grid 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).
|
|
6949
|
+
*
|
|
6950
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/direction)
|
|
6951
|
+
*/
|
|
6375
6952
|
direction: string;
|
|
6376
|
-
/**
|
|
6953
|
+
/**
|
|
6954
|
+
* The **`display`** CSS property sets whether an element is treated as a block or inline box and the layout used for its children, such as flow layout, grid or flex.
|
|
6955
|
+
*
|
|
6956
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/display)
|
|
6957
|
+
*/
|
|
6377
6958
|
display: string;
|
|
6378
|
-
/**
|
|
6959
|
+
/**
|
|
6960
|
+
* The dominant-baseline CSS property specifies the specific baseline used to align the box's text and inline-level contents. It also indicates the default alignment baseline of any boxes participating in baseline alignment in the box's alignment context. If present, it overrides the shape's dominant-baseline attribute.
|
|
6961
|
+
*
|
|
6962
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/dominant-baseline)
|
|
6963
|
+
*/
|
|
6379
6964
|
dominantBaseline: string;
|
|
6380
|
-
/**
|
|
6965
|
+
/**
|
|
6966
|
+
* The dynamic-range-limit CSS property specifies the maximum luminance allowed for High Dynamic Range (HDR) content.
|
|
6967
|
+
*
|
|
6968
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/dynamic-range-limit)
|
|
6969
|
+
*/
|
|
6381
6970
|
dynamicRangeLimit: string;
|
|
6382
|
-
/**
|
|
6971
|
+
/**
|
|
6972
|
+
* The empty-cells CSS property sets whether borders and backgrounds appear around <table> cells that have no visible content.
|
|
6973
|
+
*
|
|
6974
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/empty-cells)
|
|
6975
|
+
*/
|
|
6383
6976
|
emptyCells: string;
|
|
6384
|
-
/**
|
|
6977
|
+
/**
|
|
6978
|
+
* The **`fill`** CSS property defines how SVG text content and the interior canvas of SVG shapes are filled or painted. If present, it overrides the element's fill attribute.
|
|
6979
|
+
*
|
|
6980
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/fill)
|
|
6981
|
+
*/
|
|
6385
6982
|
fill: string;
|
|
6386
|
-
/**
|
|
6983
|
+
/**
|
|
6984
|
+
* The fill-opacity CSS property defines the opacity of the painting operation (color, gradient, pattern, etc.) applied to SVG shapes or text content elements to fill the element. The property defines the opacity of the element's fill only; it does not affect the stroke. If present, it overrides the element's fill-opacity attribute.
|
|
6985
|
+
*
|
|
6986
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/fill-opacity)
|
|
6987
|
+
*/
|
|
6387
6988
|
fillOpacity: string;
|
|
6388
|
-
/**
|
|
6989
|
+
/**
|
|
6990
|
+
* The fill-rule CSS property defines the rule used to determine which parts of the SVG shape's canvas are included inside a shape to be filled. If present, it overrides the element's fill-rule attribute.
|
|
6991
|
+
*
|
|
6992
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/fill-rule)
|
|
6993
|
+
*/
|
|
6389
6994
|
fillRule: string;
|
|
6390
|
-
/**
|
|
6995
|
+
/**
|
|
6996
|
+
* 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.
|
|
6997
|
+
*
|
|
6998
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/filter)
|
|
6999
|
+
*/
|
|
6391
7000
|
filter: string;
|
|
6392
|
-
/**
|
|
7001
|
+
/**
|
|
7002
|
+
* The **`flex`** CSS shorthand property sets how a flex item will grow or shrink to fit the space available in its flex container.
|
|
7003
|
+
*
|
|
7004
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flex)
|
|
7005
|
+
*/
|
|
6393
7006
|
flex: string;
|
|
6394
|
-
/**
|
|
7007
|
+
/**
|
|
7008
|
+
* 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.
|
|
7009
|
+
*
|
|
7010
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flex-basis)
|
|
7011
|
+
*/
|
|
6395
7012
|
flexBasis: string;
|
|
6396
|
-
/**
|
|
7013
|
+
/**
|
|
7014
|
+
* 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).
|
|
7015
|
+
*
|
|
7016
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flex-direction)
|
|
7017
|
+
*/
|
|
6397
7018
|
flexDirection: string;
|
|
6398
|
-
/**
|
|
7019
|
+
/**
|
|
7020
|
+
* The flex-flow CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.
|
|
7021
|
+
*
|
|
7022
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flex-flow)
|
|
7023
|
+
*/
|
|
6399
7024
|
flexFlow: string;
|
|
6400
|
-
/**
|
|
7025
|
+
/**
|
|
7026
|
+
* The flex-grow CSS property sets the flex grow factor, which specifies how much of the flex container's positive free space, if any, should be assigned to the flex item's main size.
|
|
7027
|
+
*
|
|
7028
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flex-grow)
|
|
7029
|
+
*/
|
|
6401
7030
|
flexGrow: string;
|
|
6402
|
-
/**
|
|
7031
|
+
/**
|
|
7032
|
+
* 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, the flex items can shrink to fit according to their flex-shrink value. Each flex line's negative free space is distributed between the line's flex items that have a flex-shrink value greater than 0.
|
|
7033
|
+
*
|
|
7034
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flex-shrink)
|
|
7035
|
+
*/
|
|
6403
7036
|
flexShrink: string;
|
|
6404
|
-
/**
|
|
7037
|
+
/**
|
|
7038
|
+
* 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.
|
|
7039
|
+
*
|
|
7040
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flex-wrap)
|
|
7041
|
+
*/
|
|
6405
7042
|
flexWrap: string;
|
|
6406
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/float) */
|
|
7043
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/float) */
|
|
6407
7044
|
float: string;
|
|
6408
|
-
/**
|
|
7045
|
+
/**
|
|
7046
|
+
* The flood-color CSS property defines the color of the current filter primitive subregion in <feFlood> and <feDropShadow> elements within a <filter>. If present, it overrides the element's flood-color attribute.
|
|
7047
|
+
*
|
|
7048
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flood-color)
|
|
7049
|
+
*/
|
|
6409
7050
|
floodColor: string;
|
|
6410
|
-
/**
|
|
7051
|
+
/**
|
|
7052
|
+
* The flood-opacity CSS property defines the opacity of the current filter primitive subregion in <feFlood> and <feDropShadow> elements within a <filter>. If present, it overrides the element's flood-opacity attribute.
|
|
7053
|
+
*
|
|
7054
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flood-opacity)
|
|
7055
|
+
*/
|
|
6411
7056
|
floodOpacity: string;
|
|
6412
|
-
/**
|
|
7057
|
+
/**
|
|
7058
|
+
* The **`font`** CSS shorthand property sets all the different properties of an element's font. Alternatively, it sets an element's font to a system font.
|
|
7059
|
+
*
|
|
7060
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font)
|
|
7061
|
+
*/
|
|
6413
7062
|
font: string;
|
|
6414
|
-
/**
|
|
7063
|
+
/**
|
|
7064
|
+
* 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.
|
|
7065
|
+
*
|
|
7066
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-family)
|
|
7067
|
+
*/
|
|
6415
7068
|
fontFamily: string;
|
|
6416
|
-
/**
|
|
7069
|
+
/**
|
|
7070
|
+
* The font-feature-settings CSS property controls advanced typographic features in OpenType fonts.
|
|
7071
|
+
*
|
|
7072
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-feature-settings)
|
|
7073
|
+
*/
|
|
6417
7074
|
fontFeatureSettings: string;
|
|
6418
|
-
/**
|
|
7075
|
+
/**
|
|
7076
|
+
* The font-kerning CSS property sets the use of the kerning information stored in a font.
|
|
7077
|
+
*
|
|
7078
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-kerning)
|
|
7079
|
+
*/
|
|
6419
7080
|
fontKerning: string;
|
|
6420
|
-
/**
|
|
7081
|
+
/**
|
|
7082
|
+
* The font-language-override CSS property controls the use of language-specific glyphs in a typeface.
|
|
7083
|
+
*
|
|
7084
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-language-override)
|
|
7085
|
+
*/
|
|
7086
|
+
fontLanguageOverride: string;
|
|
7087
|
+
/**
|
|
7088
|
+
* The font-optical-sizing CSS property sets whether text rendering is optimized for viewing at different sizes.
|
|
7089
|
+
*
|
|
7090
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-optical-sizing)
|
|
7091
|
+
*/
|
|
6421
7092
|
fontOpticalSizing: string;
|
|
6422
|
-
/**
|
|
7093
|
+
/**
|
|
7094
|
+
* The font-palette CSS property allows specifying one of the many palettes contained in a color font that a user agent may use for the font. Users can also override the values in a palette or create a new palette by using the @font-palette-values at-rule.
|
|
7095
|
+
*
|
|
7096
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-palette)
|
|
7097
|
+
*/
|
|
6423
7098
|
fontPalette: string;
|
|
6424
|
-
/**
|
|
7099
|
+
/**
|
|
7100
|
+
* The font-size CSS property sets the size of the font. Changing the font size also updates the sizes of the font size-relative <length> units, such as em, ex, and so forth.
|
|
7101
|
+
*
|
|
7102
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-size)
|
|
7103
|
+
*/
|
|
6425
7104
|
fontSize: string;
|
|
6426
|
-
/**
|
|
7105
|
+
/**
|
|
7106
|
+
* The font-size-adjust CSS property provides a way to modify the size of lowercase letters relative to the size of uppercase letters, which defines the overall font-size. This property is useful for situations where font fallback can occur.
|
|
7107
|
+
*
|
|
7108
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-size-adjust)
|
|
7109
|
+
*/
|
|
6427
7110
|
fontSizeAdjust: string;
|
|
6428
7111
|
/**
|
|
7112
|
+
* The font-stretch CSS property selects a normal, condensed, or expanded face from a font.
|
|
6429
7113
|
* @deprecated
|
|
6430
7114
|
*
|
|
6431
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-stretch)
|
|
7115
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-stretch)
|
|
6432
7116
|
*/
|
|
6433
7117
|
fontStretch: string;
|
|
6434
|
-
/**
|
|
7118
|
+
/**
|
|
7119
|
+
* The font-style CSS property sets whether a font should be styled with a normal, italic, or oblique face from its font-family.
|
|
7120
|
+
*
|
|
7121
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-style)
|
|
7122
|
+
*/
|
|
6435
7123
|
fontStyle: string;
|
|
6436
|
-
/**
|
|
7124
|
+
/**
|
|
7125
|
+
* The font-synthesis shorthand CSS property lets you specify whether or not the browser may synthesize the bold, italic, small-caps, and/or subscript and superscript typefaces when they are missing in the specified font-family.
|
|
7126
|
+
*
|
|
7127
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-synthesis)
|
|
7128
|
+
*/
|
|
6437
7129
|
fontSynthesis: string;
|
|
6438
|
-
/**
|
|
7130
|
+
/**
|
|
7131
|
+
* The font-synthesis-small-caps CSS property lets you specify whether or not the browser may synthesize small-caps typeface when it is missing in a font family. Small-caps glyphs typically use the form of uppercase letters but are reduced to the size of lowercase letters.
|
|
7132
|
+
*
|
|
7133
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-synthesis-small-caps)
|
|
7134
|
+
*/
|
|
6439
7135
|
fontSynthesisSmallCaps: string;
|
|
6440
|
-
/**
|
|
7136
|
+
/**
|
|
7137
|
+
* The font-synthesis-style CSS property lets you specify whether or not the browser may synthesize the oblique typeface when it is missing in a font family.
|
|
7138
|
+
*
|
|
7139
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-synthesis-style)
|
|
7140
|
+
*/
|
|
6441
7141
|
fontSynthesisStyle: string;
|
|
6442
|
-
/**
|
|
7142
|
+
/**
|
|
7143
|
+
* The font-synthesis-weight CSS property lets you specify whether or not the browser may synthesize the bold typeface when it is missing in a font family.
|
|
7144
|
+
*
|
|
7145
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-synthesis-weight)
|
|
7146
|
+
*/
|
|
6443
7147
|
fontSynthesisWeight: string;
|
|
6444
|
-
/**
|
|
7148
|
+
/**
|
|
7149
|
+
* The font-variant CSS shorthand property allows you to set all the font variants for a font.
|
|
7150
|
+
*
|
|
7151
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-variant)
|
|
7152
|
+
*/
|
|
6445
7153
|
fontVariant: string;
|
|
6446
|
-
/**
|
|
7154
|
+
/**
|
|
7155
|
+
* The font-variant-alternates CSS property controls the usage of alternate glyphs. These alternate glyphs may be referenced by alternative names defined in @font-feature-values.
|
|
7156
|
+
*
|
|
7157
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-variant-alternates)
|
|
7158
|
+
*/
|
|
6447
7159
|
fontVariantAlternates: string;
|
|
6448
|
-
/**
|
|
7160
|
+
/**
|
|
7161
|
+
* The font-variant-caps CSS property controls the use of alternate glyphs used for small or petite capitals or for titling.
|
|
7162
|
+
*
|
|
7163
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-variant-caps)
|
|
7164
|
+
*/
|
|
6449
7165
|
fontVariantCaps: string;
|
|
6450
|
-
/**
|
|
7166
|
+
/**
|
|
7167
|
+
* The font-variant-east-asian CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese.
|
|
7168
|
+
*
|
|
7169
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-variant-east-asian)
|
|
7170
|
+
*/
|
|
6451
7171
|
fontVariantEastAsian: string;
|
|
6452
|
-
/**
|
|
7172
|
+
/**
|
|
7173
|
+
* The font-variant-emoji CSS property specifies the default presentation style for displaying emojis.
|
|
7174
|
+
*
|
|
7175
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-variant-emoji)
|
|
7176
|
+
*/
|
|
6453
7177
|
fontVariantEmoji: string;
|
|
6454
|
-
/**
|
|
7178
|
+
/**
|
|
7179
|
+
* The font-variant-ligatures CSS property controls which ligatures and contextual forms are used in the textual content of the elements it applies to. This leads to more harmonized forms in the resulting text.
|
|
7180
|
+
*
|
|
7181
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-variant-ligatures)
|
|
7182
|
+
*/
|
|
6455
7183
|
fontVariantLigatures: string;
|
|
6456
|
-
/**
|
|
7184
|
+
/**
|
|
7185
|
+
* The font-variant-numeric CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers.
|
|
7186
|
+
*
|
|
7187
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-variant-numeric)
|
|
7188
|
+
*/
|
|
6457
7189
|
fontVariantNumeric: string;
|
|
6458
|
-
/**
|
|
7190
|
+
/**
|
|
7191
|
+
* The font-variant-position CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript.
|
|
7192
|
+
*
|
|
7193
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-variant-position)
|
|
7194
|
+
*/
|
|
6459
7195
|
fontVariantPosition: string;
|
|
6460
|
-
/**
|
|
7196
|
+
/**
|
|
7197
|
+
* The font-variation-settings CSS property provides low-level control over variable font characteristics by letting you specify the four letter axis names of the characteristics you want to vary along with their values.
|
|
7198
|
+
*
|
|
7199
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-variation-settings)
|
|
7200
|
+
*/
|
|
6461
7201
|
fontVariationSettings: string;
|
|
6462
|
-
/**
|
|
7202
|
+
/**
|
|
7203
|
+
* 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.
|
|
7204
|
+
*
|
|
7205
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/font-weight)
|
|
7206
|
+
*/
|
|
6463
7207
|
fontWeight: string;
|
|
6464
|
-
/**
|
|
7208
|
+
/**
|
|
7209
|
+
* 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.
|
|
7210
|
+
*
|
|
7211
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/forced-color-adjust)
|
|
7212
|
+
*/
|
|
6465
7213
|
forcedColorAdjust: string;
|
|
6466
|
-
/**
|
|
7214
|
+
/**
|
|
7215
|
+
* The **`gap`** CSS shorthand property sets the gaps (also called gutters) between rows and columns. This property applies to multi-column, flex, and grid containers.
|
|
7216
|
+
*
|
|
7217
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/gap)
|
|
7218
|
+
*/
|
|
6467
7219
|
gap: string;
|
|
6468
|
-
/**
|
|
7220
|
+
/**
|
|
7221
|
+
* The **`grid`** CSS property is a shorthand property that sets all of the explicit and implicit grid properties in a single declaration.
|
|
7222
|
+
*
|
|
7223
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/grid)
|
|
7224
|
+
*/
|
|
6469
7225
|
grid: string;
|
|
6470
|
-
/**
|
|
7226
|
+
/**
|
|
7227
|
+
* The grid-area CSS shorthand property specifies a grid item's size and location within a grid by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the edges of its grid area.
|
|
7228
|
+
*
|
|
7229
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/grid-area)
|
|
7230
|
+
*/
|
|
6471
7231
|
gridArea: string;
|
|
6472
|
-
/**
|
|
7232
|
+
/**
|
|
7233
|
+
* The grid-auto-columns CSS property specifies the size of an implicitly-created grid column track or pattern of tracks.
|
|
7234
|
+
*
|
|
7235
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/grid-auto-columns)
|
|
7236
|
+
*/
|
|
6473
7237
|
gridAutoColumns: string;
|
|
6474
|
-
/**
|
|
7238
|
+
/**
|
|
7239
|
+
* The grid-auto-flow CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid.
|
|
7240
|
+
*
|
|
7241
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/grid-auto-flow)
|
|
7242
|
+
*/
|
|
6475
7243
|
gridAutoFlow: string;
|
|
6476
|
-
/**
|
|
7244
|
+
/**
|
|
7245
|
+
* The grid-auto-rows CSS property specifies the size of an implicitly-created grid row track or pattern of tracks.
|
|
7246
|
+
*
|
|
7247
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/grid-auto-rows)
|
|
7248
|
+
*/
|
|
6477
7249
|
gridAutoRows: string;
|
|
6478
|
-
/**
|
|
7250
|
+
/**
|
|
7251
|
+
* The grid-column CSS shorthand property specifies a grid item's size and location within a grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.
|
|
7252
|
+
*
|
|
7253
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/grid-column)
|
|
7254
|
+
*/
|
|
6479
7255
|
gridColumn: string;
|
|
6480
|
-
/**
|
|
7256
|
+
/**
|
|
7257
|
+
* 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.
|
|
7258
|
+
*
|
|
7259
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/grid-column-end)
|
|
7260
|
+
*/
|
|
6481
7261
|
gridColumnEnd: string;
|
|
6482
7262
|
/** @deprecated This is a legacy alias of `columnGap`. */
|
|
6483
7263
|
gridColumnGap: string;
|
|
6484
|
-
/**
|
|
7264
|
+
/**
|
|
7265
|
+
* 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.
|
|
7266
|
+
*
|
|
7267
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/grid-column-start)
|
|
7268
|
+
*/
|
|
6485
7269
|
gridColumnStart: string;
|
|
6486
7270
|
/** @deprecated This is a legacy alias of `gap`. */
|
|
6487
7271
|
gridGap: string;
|
|
6488
|
-
/**
|
|
7272
|
+
/**
|
|
7273
|
+
* The grid-row CSS shorthand property specifies a grid item's size and location within a grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.
|
|
7274
|
+
*
|
|
7275
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/grid-row)
|
|
7276
|
+
*/
|
|
6489
7277
|
gridRow: string;
|
|
6490
|
-
/**
|
|
7278
|
+
/**
|
|
7279
|
+
* 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.
|
|
7280
|
+
*
|
|
7281
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/grid-row-end)
|
|
7282
|
+
*/
|
|
6491
7283
|
gridRowEnd: string;
|
|
6492
7284
|
/** @deprecated This is a legacy alias of `rowGap`. */
|
|
6493
7285
|
gridRowGap: string;
|
|
6494
|
-
/**
|
|
7286
|
+
/**
|
|
7287
|
+
* 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.
|
|
7288
|
+
*
|
|
7289
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/grid-row-start)
|
|
7290
|
+
*/
|
|
6495
7291
|
gridRowStart: string;
|
|
6496
|
-
/**
|
|
7292
|
+
/**
|
|
7293
|
+
* The grid-template CSS property is a shorthand property for defining grid columns, grid rows, and grid areas.
|
|
7294
|
+
*
|
|
7295
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/grid-template)
|
|
7296
|
+
*/
|
|
6497
7297
|
gridTemplate: string;
|
|
6498
|
-
/**
|
|
7298
|
+
/**
|
|
7299
|
+
* The grid-template-areas CSS property specifies named grid areas, establishing the cells in the grid and assigning them names.
|
|
7300
|
+
*
|
|
7301
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/grid-template-areas)
|
|
7302
|
+
*/
|
|
6499
7303
|
gridTemplateAreas: string;
|
|
6500
|
-
/**
|
|
7304
|
+
/**
|
|
7305
|
+
* The grid-template-columns CSS property defines the line names and track sizing functions of the grid columns.
|
|
7306
|
+
*
|
|
7307
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/grid-template-columns)
|
|
7308
|
+
*/
|
|
6501
7309
|
gridTemplateColumns: string;
|
|
6502
|
-
/**
|
|
7310
|
+
/**
|
|
7311
|
+
* The grid-template-rows CSS property defines the line names and track sizing functions of the grid rows.
|
|
7312
|
+
*
|
|
7313
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/grid-template-rows)
|
|
7314
|
+
*/
|
|
6503
7315
|
gridTemplateRows: string;
|
|
6504
|
-
/**
|
|
7316
|
+
/**
|
|
7317
|
+
* 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.
|
|
7318
|
+
*
|
|
7319
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/height)
|
|
7320
|
+
*/
|
|
6505
7321
|
height: string;
|
|
6506
|
-
/**
|
|
7322
|
+
/**
|
|
7323
|
+
* The hyphenate-character CSS property sets the character (or string) used at the end of a line before a hyphenation break.
|
|
7324
|
+
*
|
|
7325
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/hyphenate-character)
|
|
7326
|
+
*/
|
|
6507
7327
|
hyphenateCharacter: string;
|
|
6508
|
-
/**
|
|
7328
|
+
/**
|
|
7329
|
+
* The hyphenate-limit-chars CSS property specifies the minimum word length to allow hyphenation of words as well as the minimum number of characters before and after the hyphen.
|
|
7330
|
+
*
|
|
7331
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/hyphenate-limit-chars)
|
|
7332
|
+
*/
|
|
6509
7333
|
hyphenateLimitChars: string;
|
|
6510
|
-
/**
|
|
7334
|
+
/**
|
|
7335
|
+
* 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.
|
|
7336
|
+
*
|
|
7337
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/hyphens)
|
|
7338
|
+
*/
|
|
6511
7339
|
hyphens: string;
|
|
6512
7340
|
/**
|
|
7341
|
+
* The image-orientation CSS property specifies a layout-independent correction to the orientation of an image.
|
|
6513
7342
|
* @deprecated
|
|
6514
7343
|
*
|
|
6515
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/image-orientation)
|
|
7344
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/image-orientation)
|
|
6516
7345
|
*/
|
|
6517
7346
|
imageOrientation: string;
|
|
6518
|
-
/**
|
|
7347
|
+
/**
|
|
7348
|
+
* 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.
|
|
7349
|
+
*
|
|
7350
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/image-rendering)
|
|
7351
|
+
*/
|
|
6519
7352
|
imageRendering: string;
|
|
6520
|
-
/**
|
|
7353
|
+
/**
|
|
7354
|
+
* The inline-size CSS property defines the size of an element's block along the inline axis. If the writing-mode is horizontal, it corresponds to the width; if the writing mode is vertical, it corresponds to the height. A related property is block-size, which defines the other dimension of the element.
|
|
7355
|
+
*
|
|
7356
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/inline-size)
|
|
7357
|
+
*/
|
|
6521
7358
|
inlineSize: string;
|
|
6522
|
-
/**
|
|
7359
|
+
/**
|
|
7360
|
+
* 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.
|
|
7361
|
+
*
|
|
7362
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/inset)
|
|
7363
|
+
*/
|
|
6523
7364
|
inset: string;
|
|
6524
|
-
/**
|
|
7365
|
+
/**
|
|
7366
|
+
* The inset-block CSS property defines the logical block start and end offsets of an element, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the top and bottom, or right and left properties depending on the values defined for writing-mode, direction, and text-orientation.
|
|
7367
|
+
*
|
|
7368
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/inset-block)
|
|
7369
|
+
*/
|
|
6525
7370
|
insetBlock: string;
|
|
6526
|
-
/**
|
|
7371
|
+
/**
|
|
7372
|
+
* 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.
|
|
7373
|
+
*
|
|
7374
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/inset-block-end)
|
|
7375
|
+
*/
|
|
6527
7376
|
insetBlockEnd: string;
|
|
6528
|
-
/**
|
|
7377
|
+
/**
|
|
7378
|
+
* 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.
|
|
7379
|
+
*
|
|
7380
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/inset-block-start)
|
|
7381
|
+
*/
|
|
6529
7382
|
insetBlockStart: string;
|
|
6530
|
-
/**
|
|
7383
|
+
/**
|
|
7384
|
+
* 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.
|
|
7385
|
+
*
|
|
7386
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/inset-inline)
|
|
7387
|
+
*/
|
|
6531
7388
|
insetInline: string;
|
|
6532
|
-
/**
|
|
7389
|
+
/**
|
|
7390
|
+
* 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.
|
|
7391
|
+
*
|
|
7392
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/inset-inline-end)
|
|
7393
|
+
*/
|
|
6533
7394
|
insetInlineEnd: string;
|
|
6534
|
-
/**
|
|
7395
|
+
/**
|
|
7396
|
+
* 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.
|
|
7397
|
+
*
|
|
7398
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/inset-inline-start)
|
|
7399
|
+
*/
|
|
6535
7400
|
insetInlineStart: string;
|
|
6536
|
-
/**
|
|
7401
|
+
/**
|
|
7402
|
+
* The **`isolation`** CSS property determines whether an element must create a new stacking context.
|
|
7403
|
+
*
|
|
7404
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/isolation)
|
|
7405
|
+
*/
|
|
6537
7406
|
isolation: string;
|
|
6538
|
-
/**
|
|
7407
|
+
/**
|
|
7408
|
+
* 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 grid and multicol containers.
|
|
7409
|
+
*
|
|
7410
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/justify-content)
|
|
7411
|
+
*/
|
|
6539
7412
|
justifyContent: string;
|
|
6540
|
-
/**
|
|
7413
|
+
/**
|
|
7414
|
+
* 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.
|
|
7415
|
+
*
|
|
7416
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/justify-items)
|
|
7417
|
+
*/
|
|
6541
7418
|
justifyItems: string;
|
|
6542
|
-
/**
|
|
7419
|
+
/**
|
|
7420
|
+
* The CSS justify-self property sets the way a box is justified inside its alignment container along the appropriate axis.
|
|
7421
|
+
*
|
|
7422
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/justify-self)
|
|
7423
|
+
*/
|
|
6543
7424
|
justifySelf: string;
|
|
6544
|
-
/**
|
|
7425
|
+
/**
|
|
7426
|
+
* The **`left`** CSS property participates in specifying the horizontal position of a positioned element. This inset property has no effect on non-positioned elements.
|
|
7427
|
+
*
|
|
7428
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/left)
|
|
7429
|
+
*/
|
|
6545
7430
|
left: string;
|
|
6546
|
-
/**
|
|
7431
|
+
/**
|
|
7432
|
+
* 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.
|
|
7433
|
+
*
|
|
7434
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
|
|
7435
|
+
*/
|
|
6547
7436
|
letterSpacing: string;
|
|
6548
|
-
/**
|
|
7437
|
+
/**
|
|
7438
|
+
* The lighting-color CSS property defines the color of the light source for the <feDiffuseLighting> and <feSpecularLighting> SVG lighting filter primitives within an SVG <filter>. If present, it overrides the element's lighting-color attribute.
|
|
7439
|
+
*
|
|
7440
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/lighting-color)
|
|
7441
|
+
*/
|
|
6549
7442
|
lightingColor: string;
|
|
6550
|
-
/**
|
|
7443
|
+
/**
|
|
7444
|
+
* The line-break CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
|
|
7445
|
+
*
|
|
7446
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/line-break)
|
|
7447
|
+
*/
|
|
6551
7448
|
lineBreak: string;
|
|
6552
|
-
/**
|
|
7449
|
+
/**
|
|
7450
|
+
* The line-height CSS property sets the height of a line box in horizontal writing modes. In vertical writing modes, it sets the width of a line box. It's commonly used to set the distance between lines of text. On block-level elements in horizontal writing modes, it specifies the preferred height of line boxes within the element, and on non-replaced inline elements, it specifies the height that is used to calculate line box height.
|
|
7451
|
+
*
|
|
7452
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/line-height)
|
|
7453
|
+
*/
|
|
6553
7454
|
lineHeight: string;
|
|
6554
|
-
/**
|
|
7455
|
+
/**
|
|
7456
|
+
* The list-style CSS shorthand property allows you to set all the list style properties at once.
|
|
7457
|
+
*
|
|
7458
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/list-style)
|
|
7459
|
+
*/
|
|
6555
7460
|
listStyle: string;
|
|
6556
|
-
/**
|
|
7461
|
+
/**
|
|
7462
|
+
* The list-style-image CSS property sets an image to be used as the list item marker.
|
|
7463
|
+
*
|
|
7464
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/list-style-image)
|
|
7465
|
+
*/
|
|
6557
7466
|
listStyleImage: string;
|
|
6558
|
-
/**
|
|
7467
|
+
/**
|
|
7468
|
+
* The list-style-position CSS property sets the position of the ::marker relative to a list item.
|
|
7469
|
+
*
|
|
7470
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/list-style-position)
|
|
7471
|
+
*/
|
|
6559
7472
|
listStylePosition: string;
|
|
6560
|
-
/**
|
|
7473
|
+
/**
|
|
7474
|
+
* The list-style-type CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element.
|
|
7475
|
+
*
|
|
7476
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/list-style-type)
|
|
7477
|
+
*/
|
|
6561
7478
|
listStyleType: string;
|
|
6562
|
-
/**
|
|
7479
|
+
/**
|
|
7480
|
+
* The **`margin`** CSS shorthand property sets the margin area on all four sides of an element.
|
|
7481
|
+
*
|
|
7482
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/margin)
|
|
7483
|
+
*/
|
|
6563
7484
|
margin: string;
|
|
6564
|
-
/**
|
|
7485
|
+
/**
|
|
7486
|
+
* 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.
|
|
7487
|
+
*
|
|
7488
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/margin-block)
|
|
7489
|
+
*/
|
|
6565
7490
|
marginBlock: string;
|
|
6566
|
-
/**
|
|
7491
|
+
/**
|
|
7492
|
+
* 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.
|
|
7493
|
+
*
|
|
7494
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/margin-block-end)
|
|
7495
|
+
*/
|
|
6567
7496
|
marginBlockEnd: string;
|
|
6568
|
-
/**
|
|
7497
|
+
/**
|
|
7498
|
+
* 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.
|
|
7499
|
+
*
|
|
7500
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/margin-block-start)
|
|
7501
|
+
*/
|
|
6569
7502
|
marginBlockStart: string;
|
|
6570
|
-
/**
|
|
7503
|
+
/**
|
|
7504
|
+
* 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.
|
|
7505
|
+
*
|
|
7506
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/margin-bottom)
|
|
7507
|
+
*/
|
|
6571
7508
|
marginBottom: string;
|
|
6572
|
-
/**
|
|
7509
|
+
/**
|
|
7510
|
+
* 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.
|
|
7511
|
+
*
|
|
7512
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/margin-inline)
|
|
7513
|
+
*/
|
|
6573
7514
|
marginInline: string;
|
|
6574
|
-
/**
|
|
7515
|
+
/**
|
|
7516
|
+
* 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.
|
|
7517
|
+
*
|
|
7518
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/margin-inline-end)
|
|
7519
|
+
*/
|
|
6575
7520
|
marginInlineEnd: string;
|
|
6576
|
-
/**
|
|
7521
|
+
/**
|
|
7522
|
+
* 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.
|
|
7523
|
+
*
|
|
7524
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/margin-inline-start)
|
|
7525
|
+
*/
|
|
6577
7526
|
marginInlineStart: string;
|
|
6578
|
-
/**
|
|
7527
|
+
/**
|
|
7528
|
+
* 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.
|
|
7529
|
+
*
|
|
7530
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/margin-left)
|
|
7531
|
+
*/
|
|
6579
7532
|
marginLeft: string;
|
|
6580
|
-
/**
|
|
7533
|
+
/**
|
|
7534
|
+
* The margin-right CSS property sets the margin area on the right side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
|
|
7535
|
+
*
|
|
7536
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/margin-right)
|
|
7537
|
+
*/
|
|
6581
7538
|
marginRight: string;
|
|
6582
|
-
/**
|
|
7539
|
+
/**
|
|
7540
|
+
* The margin-top CSS property sets the margin area on the top of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
|
|
7541
|
+
*
|
|
7542
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/margin-top)
|
|
7543
|
+
*/
|
|
6583
7544
|
marginTop: string;
|
|
6584
|
-
/**
|
|
7545
|
+
/**
|
|
7546
|
+
* The **`marker`** CSS property points to a marker that will be drawn on the first, middle, and last vertices of the element's path; that is, at all of its vertices. The marker must have been defined using an SVG <marker> element, and can only be referenced with a <url> value. The value of the CSS property overrides any values of the marker-start, marker, and marker-end attributes in the SVG.
|
|
7547
|
+
*
|
|
7548
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/marker)
|
|
7549
|
+
*/
|
|
6585
7550
|
marker: string;
|
|
6586
|
-
/**
|
|
7551
|
+
/**
|
|
7552
|
+
* The marker-end CSS property points to a marker that will be drawn on the last vertex of the element's path; that is, at its ending vertex. The marker must have been defined using an SVG <marker> element, and can only be referenced with a <url> value. The value of the CSS property overrides any values of the marker-end attribute in the SVG.
|
|
7553
|
+
*
|
|
7554
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/marker-end)
|
|
7555
|
+
*/
|
|
6587
7556
|
markerEnd: string;
|
|
6588
|
-
/**
|
|
7557
|
+
/**
|
|
7558
|
+
* The marker-mid CSS property points to a marker that will be drawn on the middle vertices of the element's path; that is, at each of its vertices between the start and end vertices. The marker must have been defined using an SVG <marker> element, and can only be referenced with a <url> value. The value of the CSS property overrides any values of the marker-mid attribute in the SVG.
|
|
7559
|
+
*
|
|
7560
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/marker-mid)
|
|
7561
|
+
*/
|
|
6589
7562
|
markerMid: string;
|
|
6590
|
-
/**
|
|
7563
|
+
/**
|
|
7564
|
+
* The marker-start CSS property points to a marker that will be drawn on the first vertex of the element's path; that is, at its starting vertex. The marker must have been defined using an SVG <marker> element, and can only be referenced with a <url> value. The value of the CSS property overrides any values of the marker-start attribute in the SVG.
|
|
7565
|
+
*
|
|
7566
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/marker-start)
|
|
7567
|
+
*/
|
|
6591
7568
|
markerStart: string;
|
|
6592
|
-
/**
|
|
7569
|
+
/**
|
|
7570
|
+
* The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping a specified area of the image. It is a shorthand for all the mask-* properties. The property accepts one or more comma-separated values, where each value corresponds to a <mask-layer>.
|
|
7571
|
+
*
|
|
7572
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask)
|
|
7573
|
+
*/
|
|
6593
7574
|
mask: string;
|
|
6594
|
-
/**
|
|
7575
|
+
/**
|
|
7576
|
+
* The mask-clip CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area.
|
|
7577
|
+
*
|
|
7578
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-clip)
|
|
7579
|
+
*/
|
|
6595
7580
|
maskClip: string;
|
|
6596
|
-
/**
|
|
7581
|
+
/**
|
|
7582
|
+
* The mask-composite CSS property represents a compositing operation used on the current mask layer with the mask layers below it.
|
|
7583
|
+
*
|
|
7584
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-composite)
|
|
7585
|
+
*/
|
|
6597
7586
|
maskComposite: string;
|
|
6598
|
-
/**
|
|
7587
|
+
/**
|
|
7588
|
+
* The mask-image CSS property sets the image that is used as the mask layer for an element, hiding sections of the element on which the masking image is set based on the alpha channel of the mask image and, depending on the mask-mode property value, the luminance of the mask image's colors.
|
|
7589
|
+
*
|
|
7590
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-image)
|
|
7591
|
+
*/
|
|
6599
7592
|
maskImage: string;
|
|
6600
|
-
/**
|
|
7593
|
+
/**
|
|
7594
|
+
* The mask-mode CSS property is set on the element being masked. It sets whether the mask reference defined by the mask-image is treated as a luminance or alpha mask.
|
|
7595
|
+
*
|
|
7596
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-mode)
|
|
7597
|
+
*/
|
|
6601
7598
|
maskMode: string;
|
|
6602
|
-
/**
|
|
7599
|
+
/**
|
|
7600
|
+
* The mask-origin CSS property sets the origin of a mask. This property determines the mask positioning area: the area within which a mask image is positioned. HTML elements can have masks contained within their content border box, padding box, or content box, whereas SVG elements (which don't have the associated CSS layout boxes) can have masks contained inside their fill, stroke, or view box. For elements rendered as multiple boxes, such as a <span> of text that spans more than one line, the mask-origin property specifies which boxes the box-decoration-break property operates on to determine the mask positioning area.
|
|
7601
|
+
*
|
|
7602
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-origin)
|
|
7603
|
+
*/
|
|
6603
7604
|
maskOrigin: string;
|
|
6604
|
-
/**
|
|
7605
|
+
/**
|
|
7606
|
+
* The mask-position CSS property sets the initial position, relative to the mask position layer set by mask-origin, for each defined mask image.
|
|
7607
|
+
*
|
|
7608
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-position)
|
|
7609
|
+
*/
|
|
6605
7610
|
maskPosition: string;
|
|
6606
|
-
/**
|
|
7611
|
+
/**
|
|
7612
|
+
* The mask-repeat CSS property sets how mask images are repeated. A mask image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all.
|
|
7613
|
+
*
|
|
7614
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-repeat)
|
|
7615
|
+
*/
|
|
6607
7616
|
maskRepeat: string;
|
|
6608
|
-
/**
|
|
7617
|
+
/**
|
|
7618
|
+
* The mask-size CSS property specifies the sizes of specified mask images. Mask image sizes can be fully or partially constrained to preserve their intrinsic aspect ratios.
|
|
7619
|
+
*
|
|
7620
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-size)
|
|
7621
|
+
*/
|
|
6609
7622
|
maskSize: string;
|
|
6610
|
-
/**
|
|
7623
|
+
/**
|
|
7624
|
+
* The mask-type CSS property applies to the SVG <mask> element. It defines whether to use the luminance (brightness) or alpha (transparency) content of the mask. This property may be overridden by the mask-mode property. The mask-type property has no effect on image or gradient masks.
|
|
7625
|
+
*
|
|
7626
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-type)
|
|
7627
|
+
*/
|
|
6611
7628
|
maskType: string;
|
|
6612
|
-
/**
|
|
7629
|
+
/**
|
|
7630
|
+
* The math-depth property describes a notion of depth for each element of a mathematical formula, with respect to the top-level container of that formula. This is used to scale the computed value of the font-size of elements when font-size: math is applied.
|
|
7631
|
+
*
|
|
7632
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/math-depth)
|
|
7633
|
+
*/
|
|
6613
7634
|
mathDepth: string;
|
|
6614
|
-
/**
|
|
7635
|
+
/**
|
|
7636
|
+
* The math-style property indicates whether MathML equations should render with normal or compact height.
|
|
7637
|
+
*
|
|
7638
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/math-style)
|
|
7639
|
+
*/
|
|
6615
7640
|
mathStyle: string;
|
|
6616
|
-
/**
|
|
7641
|
+
/**
|
|
7642
|
+
* The max-block-size CSS property specifies the maximum size of an element in the direction opposite that of the writing direction as specified by writing-mode. That is, if the writing direction is horizontal, then max-block-size is equivalent to max-height; if the writing direction is vertical, max-block-size is the same as max-width.
|
|
7643
|
+
*
|
|
7644
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/max-block-size)
|
|
7645
|
+
*/
|
|
6617
7646
|
maxBlockSize: string;
|
|
6618
|
-
/**
|
|
7647
|
+
/**
|
|
7648
|
+
* The max-height CSS property sets the maximum height of an element. It prevents the used value of the height property from becoming larger than the value specified for max-height.
|
|
7649
|
+
*
|
|
7650
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/max-height)
|
|
7651
|
+
*/
|
|
6619
7652
|
maxHeight: string;
|
|
6620
|
-
/**
|
|
7653
|
+
/**
|
|
7654
|
+
* The max-inline-size CSS property defines the horizontal or vertical maximum size of an element's block, depending on its writing mode. It corresponds to either the max-width or the max-height property, depending on the value of writing-mode.
|
|
7655
|
+
*
|
|
7656
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/max-inline-size)
|
|
7657
|
+
*/
|
|
6621
7658
|
maxInlineSize: string;
|
|
6622
|
-
/**
|
|
7659
|
+
/**
|
|
7660
|
+
* The max-width CSS property sets the maximum width of an element. It prevents the used value of the width property from becoming larger than the value specified by max-width.
|
|
7661
|
+
*
|
|
7662
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/max-width)
|
|
7663
|
+
*/
|
|
6623
7664
|
maxWidth: string;
|
|
6624
|
-
/**
|
|
7665
|
+
/**
|
|
7666
|
+
* The min-block-size CSS property defines the minimum horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the min-width or the min-height property, depending on the value of writing-mode.
|
|
7667
|
+
*
|
|
7668
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/min-block-size)
|
|
7669
|
+
*/
|
|
6625
7670
|
minBlockSize: string;
|
|
6626
|
-
/**
|
|
7671
|
+
/**
|
|
7672
|
+
* The min-height CSS property sets the minimum height of an element. It prevents the used value of the height property from becoming smaller than the value specified for min-height.
|
|
7673
|
+
*
|
|
7674
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/min-height)
|
|
7675
|
+
*/
|
|
6627
7676
|
minHeight: string;
|
|
6628
|
-
/**
|
|
7677
|
+
/**
|
|
7678
|
+
* The min-inline-size CSS property defines the horizontal or vertical minimal size of an element's block, depending on its writing mode. It corresponds to either the min-width or the min-height property, depending on the value of writing-mode.
|
|
7679
|
+
*
|
|
7680
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/min-inline-size)
|
|
7681
|
+
*/
|
|
6629
7682
|
minInlineSize: string;
|
|
6630
|
-
/**
|
|
7683
|
+
/**
|
|
7684
|
+
* The min-width CSS property sets the minimum width of an element. It prevents the used value of the width property from becoming smaller than the value specified for min-width.
|
|
7685
|
+
*
|
|
7686
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/min-width)
|
|
7687
|
+
*/
|
|
6631
7688
|
minWidth: string;
|
|
6632
|
-
/**
|
|
7689
|
+
/**
|
|
7690
|
+
* The mix-blend-mode CSS property sets how an element's content should blend with the content of the element's parent and the element's background.
|
|
7691
|
+
*
|
|
7692
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mix-blend-mode)
|
|
7693
|
+
*/
|
|
6633
7694
|
mixBlendMode: string;
|
|
6634
|
-
/**
|
|
7695
|
+
/**
|
|
7696
|
+
* The object-fit CSS property sets how the content of a replaced element, such as an <img> or <video>, should be resized to fit its container.
|
|
7697
|
+
*
|
|
7698
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/object-fit)
|
|
7699
|
+
*/
|
|
6635
7700
|
objectFit: string;
|
|
6636
|
-
/**
|
|
7701
|
+
/**
|
|
7702
|
+
* The object-position CSS property specifies the alignment of the selected replaced element's contents within the element's box. Areas of the box which aren't covered by the replaced element's object will show the element's background.
|
|
7703
|
+
*
|
|
7704
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/object-position)
|
|
7705
|
+
*/
|
|
6637
7706
|
objectPosition: string;
|
|
6638
|
-
/**
|
|
7707
|
+
/**
|
|
7708
|
+
* The **`offset`** CSS shorthand property sets all the properties required for animating an element along a defined path. The offset properties together help to define an offset transform, a transform that aligns a point in an element (offset-anchor) to an offset position (offset-position) on a path (offset-path) at various points along the path (offset-distance) and optionally rotates the element (offset-rotate) to follow the direction of the path.
|
|
7709
|
+
*
|
|
7710
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/offset)
|
|
7711
|
+
*/
|
|
6639
7712
|
offset: string;
|
|
6640
|
-
/**
|
|
7713
|
+
/**
|
|
7714
|
+
* The offset-anchor CSS property specifies the point inside the box of an element traveling along an offset-path that is actually moving along the path.
|
|
7715
|
+
*
|
|
7716
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/offset-anchor)
|
|
7717
|
+
*/
|
|
6641
7718
|
offsetAnchor: string;
|
|
6642
|
-
/**
|
|
7719
|
+
/**
|
|
7720
|
+
* The offset-distance CSS property specifies a position along an offset-path for an element to be placed.
|
|
7721
|
+
*
|
|
7722
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/offset-distance)
|
|
7723
|
+
*/
|
|
6643
7724
|
offsetDistance: string;
|
|
6644
|
-
/**
|
|
7725
|
+
/**
|
|
7726
|
+
* The offset-path CSS property specifies a path for an element to follow and determines the element's positioning within the path's parent container or the SVG coordinate system. The path is a line, a curve, or a geometrical shape along which the element gets positioned or moves.
|
|
7727
|
+
*
|
|
7728
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/offset-path)
|
|
7729
|
+
*/
|
|
6645
7730
|
offsetPath: string;
|
|
6646
|
-
/**
|
|
7731
|
+
/**
|
|
7732
|
+
* The offset-position CSS property defines the initial position of an element along a path. This property is typically used in combination with the offset-path property to create a motion effect. The value of offset-position determines where the element gets placed initially for moving along an offset path if an offset-path function such as path() does not specify its own starting position.
|
|
7733
|
+
*
|
|
7734
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/offset-position)
|
|
7735
|
+
*/
|
|
6647
7736
|
offsetPosition: string;
|
|
6648
|
-
/**
|
|
7737
|
+
/**
|
|
7738
|
+
* The offset-rotate CSS property defines the orientation/direction of the element as it is positioned along the offset-path.
|
|
7739
|
+
*
|
|
7740
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/offset-rotate)
|
|
7741
|
+
*/
|
|
6649
7742
|
offsetRotate: string;
|
|
6650
|
-
/**
|
|
7743
|
+
/**
|
|
7744
|
+
* The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.
|
|
7745
|
+
*
|
|
7746
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/opacity)
|
|
7747
|
+
*/
|
|
6651
7748
|
opacity: string;
|
|
6652
|
-
/**
|
|
7749
|
+
/**
|
|
7750
|
+
* The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending order value and then by their source code order. Items not given an explicit order value are assigned the default value of 0.
|
|
7751
|
+
*
|
|
7752
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/order)
|
|
7753
|
+
*/
|
|
6653
7754
|
order: string;
|
|
6654
|
-
/**
|
|
7755
|
+
/**
|
|
7756
|
+
* The **`orphans`** CSS property sets the minimum number of lines in a block container that must be shown at the bottom of a page, region, or column.
|
|
7757
|
+
*
|
|
7758
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/orphans)
|
|
7759
|
+
*/
|
|
6655
7760
|
orphans: string;
|
|
6656
|
-
/**
|
|
7761
|
+
/**
|
|
7762
|
+
* The **`outline`** CSS shorthand property sets most of the outline properties in a single declaration.
|
|
7763
|
+
*
|
|
7764
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/outline)
|
|
7765
|
+
*/
|
|
6657
7766
|
outline: string;
|
|
6658
|
-
/**
|
|
7767
|
+
/**
|
|
7768
|
+
* The outline-color CSS property sets the color of an element's outline.
|
|
7769
|
+
*
|
|
7770
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/outline-color)
|
|
7771
|
+
*/
|
|
6659
7772
|
outlineColor: string;
|
|
6660
|
-
/**
|
|
7773
|
+
/**
|
|
7774
|
+
* The outline-offset CSS property sets the amount of space between an outline and the edge or border of an element.
|
|
7775
|
+
*
|
|
7776
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/outline-offset)
|
|
7777
|
+
*/
|
|
6661
7778
|
outlineOffset: string;
|
|
6662
|
-
/**
|
|
7779
|
+
/**
|
|
7780
|
+
* The outline-style CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the border.
|
|
7781
|
+
*
|
|
7782
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/outline-style)
|
|
7783
|
+
*/
|
|
6663
7784
|
outlineStyle: string;
|
|
6664
|
-
/**
|
|
7785
|
+
/**
|
|
7786
|
+
* The CSS outline-width property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the border.
|
|
7787
|
+
*
|
|
7788
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/outline-width)
|
|
7789
|
+
*/
|
|
6665
7790
|
outlineWidth: string;
|
|
6666
|
-
/**
|
|
7791
|
+
/**
|
|
7792
|
+
* The **`overflow`** CSS shorthand property sets the desired behavior when content does not fit in the element's padding box (overflows) in the horizontal and/or vertical direction.
|
|
7793
|
+
*
|
|
7794
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/overflow)
|
|
7795
|
+
*/
|
|
6667
7796
|
overflow: string;
|
|
6668
|
-
/**
|
|
7797
|
+
/**
|
|
7798
|
+
* The overflow-anchor CSS property provides a way to opt out of the browser's scroll anchoring behavior, which adjusts scroll position to minimize content shifts.
|
|
7799
|
+
*
|
|
7800
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/overflow-anchor)
|
|
7801
|
+
*/
|
|
6669
7802
|
overflowAnchor: string;
|
|
6670
|
-
/**
|
|
7803
|
+
/**
|
|
7804
|
+
* The overflow-block CSS property sets what shows when content overflows the block start and block end edges of a box. This may be nothing, a scroll bar, or the overflow content.
|
|
7805
|
+
*
|
|
7806
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/overflow-block)
|
|
7807
|
+
*/
|
|
6671
7808
|
overflowBlock: string;
|
|
6672
|
-
/**
|
|
7809
|
+
/**
|
|
7810
|
+
* The overflow-clip-margin CSS property determines how far outside its bounds an element with overflow: clip may be painted before being clipped. The bound defined by this property is called the overflow clip edge of the box.
|
|
7811
|
+
*
|
|
7812
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/overflow-clip-margin)
|
|
7813
|
+
*/
|
|
6673
7814
|
overflowClipMargin: string;
|
|
6674
|
-
/**
|
|
7815
|
+
/**
|
|
7816
|
+
* The overflow-inline CSS property sets what shows when content overflows the inline start and end edges of a box. This may be nothing, a scroll bar, or the overflow content.
|
|
7817
|
+
*
|
|
7818
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/overflow-inline)
|
|
7819
|
+
*/
|
|
6675
7820
|
overflowInline: string;
|
|
6676
|
-
/**
|
|
7821
|
+
/**
|
|
7822
|
+
* The overflow-wrap CSS property applies to text, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.
|
|
7823
|
+
*
|
|
7824
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/overflow-wrap)
|
|
7825
|
+
*/
|
|
6677
7826
|
overflowWrap: string;
|
|
6678
|
-
/**
|
|
7827
|
+
/**
|
|
7828
|
+
* The overflow-x CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content. This property may also be set by using the overflow shorthand property.
|
|
7829
|
+
*
|
|
7830
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/overflow-x)
|
|
7831
|
+
*/
|
|
6679
7832
|
overflowX: string;
|
|
6680
|
-
/**
|
|
7833
|
+
/**
|
|
7834
|
+
* The overflow-y CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content. This property may also be set by using the overflow shorthand property.
|
|
7835
|
+
*
|
|
7836
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/overflow-y)
|
|
7837
|
+
*/
|
|
6681
7838
|
overflowY: string;
|
|
6682
|
-
/**
|
|
7839
|
+
/**
|
|
7840
|
+
* The overscroll-behavior CSS property sets what a browser does when reaching the boundary of a scrolling area.
|
|
7841
|
+
*
|
|
7842
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/overscroll-behavior)
|
|
7843
|
+
*/
|
|
6683
7844
|
overscrollBehavior: string;
|
|
6684
|
-
/**
|
|
7845
|
+
/**
|
|
7846
|
+
* The overscroll-behavior-block CSS property sets the browser's behavior when the block direction boundary of a scrolling area is reached.
|
|
7847
|
+
*
|
|
7848
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/overscroll-behavior-block)
|
|
7849
|
+
*/
|
|
6685
7850
|
overscrollBehaviorBlock: string;
|
|
6686
|
-
/**
|
|
7851
|
+
/**
|
|
7852
|
+
* The overscroll-behavior-inline CSS property sets the browser's behavior when the inline direction boundary of a scrolling area is reached.
|
|
7853
|
+
*
|
|
7854
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/overscroll-behavior-inline)
|
|
7855
|
+
*/
|
|
6687
7856
|
overscrollBehaviorInline: string;
|
|
6688
|
-
/**
|
|
7857
|
+
/**
|
|
7858
|
+
* The overscroll-behavior-x CSS property sets the browser's behavior when the horizontal boundary of a scrolling area is reached.
|
|
7859
|
+
*
|
|
7860
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/overscroll-behavior-x)
|
|
7861
|
+
*/
|
|
6689
7862
|
overscrollBehaviorX: string;
|
|
6690
|
-
/**
|
|
7863
|
+
/**
|
|
7864
|
+
* The overscroll-behavior-y CSS property sets the browser's behavior when the vertical boundary of a scrolling area is reached.
|
|
7865
|
+
*
|
|
7866
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/overscroll-behavior-y)
|
|
7867
|
+
*/
|
|
6691
7868
|
overscrollBehaviorY: string;
|
|
6692
|
-
/**
|
|
7869
|
+
/**
|
|
7870
|
+
* The **`padding`** CSS shorthand property sets the padding area on all four sides of an element at once.
|
|
7871
|
+
*
|
|
7872
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/padding)
|
|
7873
|
+
*/
|
|
6693
7874
|
padding: string;
|
|
6694
|
-
/**
|
|
7875
|
+
/**
|
|
7876
|
+
* The padding-block CSS shorthand property defines the logical block start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
|
|
7877
|
+
*
|
|
7878
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/padding-block)
|
|
7879
|
+
*/
|
|
6695
7880
|
paddingBlock: string;
|
|
6696
|
-
/**
|
|
7881
|
+
/**
|
|
7882
|
+
* The padding-block-end CSS property defines the logical block end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
|
|
7883
|
+
*
|
|
7884
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/padding-block-end)
|
|
7885
|
+
*/
|
|
6697
7886
|
paddingBlockEnd: string;
|
|
6698
|
-
/**
|
|
7887
|
+
/**
|
|
7888
|
+
* The padding-block-start CSS property defines the logical block start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
|
|
7889
|
+
*
|
|
7890
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/padding-block-start)
|
|
7891
|
+
*/
|
|
6699
7892
|
paddingBlockStart: string;
|
|
6700
|
-
/**
|
|
7893
|
+
/**
|
|
7894
|
+
* The padding-bottom CSS property sets the height of the padding area on the bottom of an element.
|
|
7895
|
+
*
|
|
7896
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/padding-bottom)
|
|
7897
|
+
*/
|
|
6701
7898
|
paddingBottom: string;
|
|
6702
|
-
/**
|
|
7899
|
+
/**
|
|
7900
|
+
* The padding-inline CSS shorthand property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
|
|
7901
|
+
*
|
|
7902
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/padding-inline)
|
|
7903
|
+
*/
|
|
6703
7904
|
paddingInline: string;
|
|
6704
|
-
/**
|
|
7905
|
+
/**
|
|
7906
|
+
* The padding-inline-end CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
|
|
7907
|
+
*
|
|
7908
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/padding-inline-end)
|
|
7909
|
+
*/
|
|
6705
7910
|
paddingInlineEnd: string;
|
|
6706
|
-
/**
|
|
7911
|
+
/**
|
|
7912
|
+
* The padding-inline-start CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
|
|
7913
|
+
*
|
|
7914
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/padding-inline-start)
|
|
7915
|
+
*/
|
|
6707
7916
|
paddingInlineStart: string;
|
|
6708
|
-
/**
|
|
7917
|
+
/**
|
|
7918
|
+
* The padding-left CSS property sets the width of the padding area to the left of an element.
|
|
7919
|
+
*
|
|
7920
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/padding-left)
|
|
7921
|
+
*/
|
|
6709
7922
|
paddingLeft: string;
|
|
6710
|
-
/**
|
|
7923
|
+
/**
|
|
7924
|
+
* The padding-right CSS property sets the width of the padding area on the right of an element.
|
|
7925
|
+
*
|
|
7926
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/padding-right)
|
|
7927
|
+
*/
|
|
6711
7928
|
paddingRight: string;
|
|
6712
|
-
/**
|
|
7929
|
+
/**
|
|
7930
|
+
* The padding-top CSS property sets the height of the padding area on the top of an element.
|
|
7931
|
+
*
|
|
7932
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/padding-top)
|
|
7933
|
+
*/
|
|
6713
7934
|
paddingTop: string;
|
|
6714
|
-
/**
|
|
7935
|
+
/**
|
|
7936
|
+
* The **`page`** CSS property is used to specify the named page, a specific type of page defined by the @page at-rule.
|
|
7937
|
+
*
|
|
7938
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/page)
|
|
7939
|
+
*/
|
|
6715
7940
|
page: string;
|
|
6716
7941
|
/**
|
|
7942
|
+
* The page-break-after CSS property adjusts page breaks after the current element.
|
|
6717
7943
|
* @deprecated
|
|
6718
7944
|
*
|
|
6719
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-after)
|
|
7945
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/page-break-after)
|
|
6720
7946
|
*/
|
|
6721
7947
|
pageBreakAfter: string;
|
|
6722
7948
|
/**
|
|
7949
|
+
* The page-break-before CSS property adjusts page breaks before the current element.
|
|
6723
7950
|
* @deprecated
|
|
6724
7951
|
*
|
|
6725
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-before)
|
|
7952
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/page-break-before)
|
|
6726
7953
|
*/
|
|
6727
7954
|
pageBreakBefore: string;
|
|
6728
7955
|
/**
|
|
7956
|
+
* The page-break-inside CSS property adjusts page breaks inside the current element.
|
|
6729
7957
|
* @deprecated
|
|
6730
7958
|
*
|
|
6731
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-inside)
|
|
7959
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/page-break-inside)
|
|
6732
7960
|
*/
|
|
6733
7961
|
pageBreakInside: string;
|
|
6734
|
-
/**
|
|
7962
|
+
/**
|
|
7963
|
+
* The paint-order CSS property lets you control the order in which the fill and stroke (and painting markers) of text content and shapes are drawn.
|
|
7964
|
+
*
|
|
7965
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/paint-order)
|
|
7966
|
+
*/
|
|
6735
7967
|
paintOrder: string;
|
|
6736
|
-
/**
|
|
7968
|
+
/**
|
|
7969
|
+
* The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
|
|
7970
|
+
*
|
|
7971
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/perspective)
|
|
7972
|
+
*/
|
|
6737
7973
|
perspective: string;
|
|
6738
|
-
/**
|
|
7974
|
+
/**
|
|
7975
|
+
* The perspective-origin CSS property determines the position at which the viewer is looking. It is used as the vanishing point by the perspective property.
|
|
7976
|
+
*
|
|
7977
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/perspective-origin)
|
|
7978
|
+
*/
|
|
6739
7979
|
perspectiveOrigin: string;
|
|
6740
|
-
/**
|
|
7980
|
+
/**
|
|
7981
|
+
* The place-content CSS shorthand property allows you to align content along both the block and inline directions at once (i.e., the align-content and justify-content properties) in a relevant layout system such as Grid or Flexbox.
|
|
7982
|
+
*
|
|
7983
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/place-content)
|
|
7984
|
+
*/
|
|
6741
7985
|
placeContent: string;
|
|
6742
|
-
/**
|
|
7986
|
+
/**
|
|
7987
|
+
* The CSS place-items shorthand property aligns items along both the block and inline directions at once. It sets the values of the align-items and justify-items properties. If the second value is not set, the first value is also used for it.
|
|
7988
|
+
*
|
|
7989
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/place-items)
|
|
7990
|
+
*/
|
|
6743
7991
|
placeItems: string;
|
|
6744
|
-
/**
|
|
7992
|
+
/**
|
|
7993
|
+
* The place-self CSS shorthand property allows you to align an individual item in both the block and inline directions at once (i.e., the align-self and justify-self properties). This property applies to block-level boxes, absolutely-positioned boxes, and grid items. If the second value is not present, the first value is also used for it.
|
|
7994
|
+
*
|
|
7995
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/place-self)
|
|
7996
|
+
*/
|
|
6745
7997
|
placeSelf: string;
|
|
6746
|
-
/**
|
|
7998
|
+
/**
|
|
7999
|
+
* The pointer-events CSS property sets under what circumstances (if any) a particular graphic element can become the target of pointer events.
|
|
8000
|
+
*
|
|
8001
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/pointer-events)
|
|
8002
|
+
*/
|
|
6747
8003
|
pointerEvents: string;
|
|
6748
|
-
/**
|
|
8004
|
+
/**
|
|
8005
|
+
* The **`position`** CSS property sets how an element is positioned in a document. The top, right, bottom, and left physical properties and the inset-block-start, inset-block-end, inset-inline-start, and inset-inline-end flow-relative logical properties can be used to determine the final location of positioned elements.
|
|
8006
|
+
*
|
|
8007
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/position)
|
|
8008
|
+
*/
|
|
6749
8009
|
position: string;
|
|
6750
|
-
/**
|
|
8010
|
+
/**
|
|
8011
|
+
* The position-anchor CSS property specifies the anchor name of the anchor element (i.e., an element that has an anchor name set on it via the anchor-name property) a positioned element is associated with.
|
|
8012
|
+
*
|
|
8013
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/position-anchor)
|
|
8014
|
+
*/
|
|
6751
8015
|
positionAnchor: string;
|
|
6752
|
-
/**
|
|
8016
|
+
/**
|
|
8017
|
+
* The position-area CSS property enables an anchor-positioned element to be positioned relative to the edges of its associated anchor element by placing the positioned element on one or more tiles of an implicit 3x3 grid, where the anchoring element is the center cell.
|
|
8018
|
+
*
|
|
8019
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/position-area)
|
|
8020
|
+
*/
|
|
6753
8021
|
positionArea: string;
|
|
6754
|
-
/**
|
|
8022
|
+
/**
|
|
8023
|
+
* The position-try CSS property is a shorthand that corresponds to the position-try-order and position-try-fallbacks properties.
|
|
8024
|
+
*
|
|
8025
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/position-try)
|
|
8026
|
+
*/
|
|
6755
8027
|
positionTry: string;
|
|
6756
|
-
/**
|
|
8028
|
+
/**
|
|
8029
|
+
* The position-try-fallbacks CSS property enables you to specify a list of one or more alternative position try fallback options for anchor-positioned elements to be placed relative to their associated anchor elements. When the element would otherwise overflow its inset-modified containing block, the browser will try placing the positioned element in these different fallback positions, in the order provided, until it finds a value that stops it from overflowing its container or the viewport.
|
|
8030
|
+
*
|
|
8031
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/position-try-fallbacks)
|
|
8032
|
+
*/
|
|
6757
8033
|
positionTryFallbacks: string;
|
|
6758
|
-
/**
|
|
8034
|
+
/**
|
|
8035
|
+
* The position-try-order CSS property allows you to specify various fallback options that result in an available position-try fallback being used to set an anchor-positioned element's position, instead of its initial position settings.
|
|
8036
|
+
*
|
|
8037
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/position-try-order)
|
|
8038
|
+
*/
|
|
6759
8039
|
positionTryOrder: string;
|
|
6760
|
-
/**
|
|
8040
|
+
/**
|
|
8041
|
+
* The print-color-adjust CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.
|
|
8042
|
+
*
|
|
8043
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/print-color-adjust)
|
|
8044
|
+
*/
|
|
6761
8045
|
printColorAdjust: string;
|
|
6762
|
-
/**
|
|
8046
|
+
/**
|
|
8047
|
+
* The CSS **`quotes`** property sets how the browser should render quotation marks that are automatically added to the HTML <q> element or added using the open-quotes or close-quotes (or omitted using the no-open-quote and no-close-quote) values of the of the CSS content property.
|
|
8048
|
+
*
|
|
8049
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/quotes)
|
|
8050
|
+
*/
|
|
6763
8051
|
quotes: string;
|
|
6764
|
-
/**
|
|
8052
|
+
/**
|
|
8053
|
+
* The **`r`** CSS property defines the radius of a circle. It can only be used with the SVG <circle> element. If present, it overrides the circle's r attribute.
|
|
8054
|
+
*
|
|
8055
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/r)
|
|
8056
|
+
*/
|
|
6765
8057
|
r: string;
|
|
6766
|
-
/**
|
|
8058
|
+
/**
|
|
8059
|
+
* The **`resize`** CSS property sets whether an element is resizable, and if so, in which directions.
|
|
8060
|
+
*
|
|
8061
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/resize)
|
|
8062
|
+
*/
|
|
6767
8063
|
resize: string;
|
|
6768
|
-
/**
|
|
8064
|
+
/**
|
|
8065
|
+
* The **`right`** CSS property participates in specifying the horizontal position of a positioned element. This inset property has no effect on non-positioned elements.
|
|
8066
|
+
*
|
|
8067
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/right)
|
|
8068
|
+
*/
|
|
6769
8069
|
right: string;
|
|
6770
|
-
/**
|
|
8070
|
+
/**
|
|
8071
|
+
* The **`rotate`** CSS property allows you to specify rotation transforms individually and independently of the transform property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the transform property.
|
|
8072
|
+
*
|
|
8073
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/rotate)
|
|
8074
|
+
*/
|
|
6771
8075
|
rotate: string;
|
|
6772
|
-
/**
|
|
8076
|
+
/**
|
|
8077
|
+
* The row-gap CSS property sets the size of the gap (gutter) between an element's rows.
|
|
8078
|
+
*
|
|
8079
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/row-gap)
|
|
8080
|
+
*/
|
|
6773
8081
|
rowGap: string;
|
|
6774
|
-
/**
|
|
8082
|
+
/**
|
|
8083
|
+
* The ruby-align CSS property defines the distribution of the different ruby elements over the base.
|
|
8084
|
+
*
|
|
8085
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/ruby-align)
|
|
8086
|
+
*/
|
|
6775
8087
|
rubyAlign: string;
|
|
6776
|
-
/**
|
|
8088
|
+
/**
|
|
8089
|
+
* The ruby-position CSS property defines the position of a ruby element relative to its base element. It can be positioned over the element (over), under it (under), or between the characters on their right side (inter-character).
|
|
8090
|
+
*
|
|
8091
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/ruby-position)
|
|
8092
|
+
*/
|
|
6777
8093
|
rubyPosition: string;
|
|
6778
|
-
/**
|
|
8094
|
+
/**
|
|
8095
|
+
* The **`rx`** CSS property defines the x-axis, or horizontal, radius of an SVG <ellipse> and the horizontal curve of the corners of an SVG <rect> rectangle. If present, it overrides the shape's rx attribute.
|
|
8096
|
+
*
|
|
8097
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/rx)
|
|
8098
|
+
*/
|
|
6779
8099
|
rx: string;
|
|
6780
|
-
/**
|
|
8100
|
+
/**
|
|
8101
|
+
* The **`ry`** CSS property defines the y-axis, or vertical, radius of an SVG <ellipse> and the vertical curve of the corners of an SVG <rect> rectangle. If present, it overrides the shape's ry attribute.
|
|
8102
|
+
*
|
|
8103
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/ry)
|
|
8104
|
+
*/
|
|
6781
8105
|
ry: string;
|
|
6782
|
-
/**
|
|
8106
|
+
/**
|
|
8107
|
+
* The **`scale`** CSS property allows you to specify scale transforms individually and independently of the transform property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the transform value.
|
|
8108
|
+
*
|
|
8109
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scale)
|
|
8110
|
+
*/
|
|
6783
8111
|
scale: string;
|
|
6784
|
-
/**
|
|
8112
|
+
/**
|
|
8113
|
+
* The scroll-behavior CSS property sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs.
|
|
8114
|
+
*
|
|
8115
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-behavior)
|
|
8116
|
+
*/
|
|
6785
8117
|
scrollBehavior: string;
|
|
6786
|
-
/**
|
|
8118
|
+
/**
|
|
8119
|
+
* The scroll-margin shorthand property sets all of the scroll margins of an element at once, assigning values much like the margin property does for margins of an element.
|
|
8120
|
+
*
|
|
8121
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-margin)
|
|
8122
|
+
*/
|
|
6787
8123
|
scrollMargin: string;
|
|
6788
|
-
/**
|
|
8124
|
+
/**
|
|
8125
|
+
* The scroll-margin-block shorthand property sets the scroll margins of an element in the block dimension.
|
|
8126
|
+
*
|
|
8127
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-margin-block)
|
|
8128
|
+
*/
|
|
6789
8129
|
scrollMarginBlock: string;
|
|
6790
|
-
/**
|
|
8130
|
+
/**
|
|
8131
|
+
* The scroll-margin-block-end property defines the margin of the scroll snap area at the end of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
|
|
8132
|
+
*
|
|
8133
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-margin-block-end)
|
|
8134
|
+
*/
|
|
6791
8135
|
scrollMarginBlockEnd: string;
|
|
6792
|
-
/**
|
|
8136
|
+
/**
|
|
8137
|
+
* The scroll-margin-block-start property defines the margin of the scroll snap area at the start of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
|
|
8138
|
+
*
|
|
8139
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-margin-block-start)
|
|
8140
|
+
*/
|
|
6793
8141
|
scrollMarginBlockStart: string;
|
|
6794
|
-
/**
|
|
8142
|
+
/**
|
|
8143
|
+
* The scroll-margin-bottom property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
|
|
8144
|
+
*
|
|
8145
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-margin-bottom)
|
|
8146
|
+
*/
|
|
6795
8147
|
scrollMarginBottom: string;
|
|
6796
|
-
/**
|
|
8148
|
+
/**
|
|
8149
|
+
* The scroll-margin-inline shorthand property sets the scroll margins of an element in the inline dimension.
|
|
8150
|
+
*
|
|
8151
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-margin-inline)
|
|
8152
|
+
*/
|
|
6797
8153
|
scrollMarginInline: string;
|
|
6798
|
-
/**
|
|
8154
|
+
/**
|
|
8155
|
+
* The scroll-margin-inline-end property defines the margin of the scroll snap area at the end of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
|
|
8156
|
+
*
|
|
8157
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-margin-inline-end)
|
|
8158
|
+
*/
|
|
6799
8159
|
scrollMarginInlineEnd: string;
|
|
6800
|
-
/**
|
|
8160
|
+
/**
|
|
8161
|
+
* The scroll-margin-inline-start property defines the margin of the scroll snap area at the start of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
|
|
8162
|
+
*
|
|
8163
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-margin-inline-start)
|
|
8164
|
+
*/
|
|
6801
8165
|
scrollMarginInlineStart: string;
|
|
6802
|
-
/**
|
|
8166
|
+
/**
|
|
8167
|
+
* The scroll-margin-left property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
|
|
8168
|
+
*
|
|
8169
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-margin-left)
|
|
8170
|
+
*/
|
|
6803
8171
|
scrollMarginLeft: string;
|
|
6804
|
-
/**
|
|
8172
|
+
/**
|
|
8173
|
+
* The scroll-margin-right property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
|
|
8174
|
+
*
|
|
8175
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-margin-right)
|
|
8176
|
+
*/
|
|
6805
8177
|
scrollMarginRight: string;
|
|
6806
|
-
/**
|
|
8178
|
+
/**
|
|
8179
|
+
* The scroll-margin-top property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
|
|
8180
|
+
*
|
|
8181
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-margin-top)
|
|
8182
|
+
*/
|
|
6807
8183
|
scrollMarginTop: string;
|
|
6808
|
-
/**
|
|
8184
|
+
/**
|
|
8185
|
+
* The scroll-padding shorthand property sets scroll padding on all sides of an element at once, much like the padding property does for padding on an element.
|
|
8186
|
+
*
|
|
8187
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-padding)
|
|
8188
|
+
*/
|
|
6809
8189
|
scrollPadding: string;
|
|
6810
|
-
/**
|
|
8190
|
+
/**
|
|
8191
|
+
* The scroll-padding-block shorthand property sets the scroll padding of an element in the block dimension.
|
|
8192
|
+
*
|
|
8193
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-padding-block)
|
|
8194
|
+
*/
|
|
6811
8195
|
scrollPaddingBlock: string;
|
|
6812
|
-
/**
|
|
8196
|
+
/**
|
|
8197
|
+
* The scroll-padding-block-end property defines offsets for the end edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
|
|
8198
|
+
*
|
|
8199
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-padding-block-end)
|
|
8200
|
+
*/
|
|
6813
8201
|
scrollPaddingBlockEnd: string;
|
|
6814
|
-
/**
|
|
8202
|
+
/**
|
|
8203
|
+
* The scroll-padding-block-start property defines offsets for the start edge in the block dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
|
|
8204
|
+
*
|
|
8205
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-padding-block-start)
|
|
8206
|
+
*/
|
|
6815
8207
|
scrollPaddingBlockStart: string;
|
|
6816
|
-
/**
|
|
8208
|
+
/**
|
|
8209
|
+
* The scroll-padding-bottom property defines offsets for the bottom of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
|
|
8210
|
+
*
|
|
8211
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-padding-bottom)
|
|
8212
|
+
*/
|
|
6817
8213
|
scrollPaddingBottom: string;
|
|
6818
|
-
/**
|
|
8214
|
+
/**
|
|
8215
|
+
* The scroll-padding-inline shorthand property sets the scroll padding of an element in the inline dimension.
|
|
8216
|
+
*
|
|
8217
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-padding-inline)
|
|
8218
|
+
*/
|
|
6819
8219
|
scrollPaddingInline: string;
|
|
6820
|
-
/**
|
|
8220
|
+
/**
|
|
8221
|
+
* The scroll-padding-inline-end property defines offsets for the end edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
|
|
8222
|
+
*
|
|
8223
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-padding-inline-end)
|
|
8224
|
+
*/
|
|
6821
8225
|
scrollPaddingInlineEnd: string;
|
|
6822
|
-
/**
|
|
8226
|
+
/**
|
|
8227
|
+
* The scroll-padding-inline-start property defines offsets for the start edge in the inline dimension of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
|
|
8228
|
+
*
|
|
8229
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-padding-inline-start)
|
|
8230
|
+
*/
|
|
6823
8231
|
scrollPaddingInlineStart: string;
|
|
6824
|
-
/**
|
|
8232
|
+
/**
|
|
8233
|
+
* The scroll-padding-left property defines offsets for the left of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
|
|
8234
|
+
*
|
|
8235
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-padding-left)
|
|
8236
|
+
*/
|
|
6825
8237
|
scrollPaddingLeft: string;
|
|
6826
|
-
/**
|
|
8238
|
+
/**
|
|
8239
|
+
* The scroll-padding-right property defines offsets for the right of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
|
|
8240
|
+
*
|
|
8241
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-padding-right)
|
|
8242
|
+
*/
|
|
6827
8243
|
scrollPaddingRight: string;
|
|
6828
|
-
/**
|
|
8244
|
+
/**
|
|
8245
|
+
* The scroll-padding-top property defines offsets for the top of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
|
|
8246
|
+
*
|
|
8247
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-padding-top)
|
|
8248
|
+
*/
|
|
6829
8249
|
scrollPaddingTop: string;
|
|
6830
|
-
/**
|
|
8250
|
+
/**
|
|
8251
|
+
* The scroll-snap-align property specifies the box's snap position as an alignment of its snap area (as the alignment subject) within its snap container's snap port (as the alignment container).
|
|
8252
|
+
*
|
|
8253
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-snap-align)
|
|
8254
|
+
*/
|
|
6831
8255
|
scrollSnapAlign: string;
|
|
6832
|
-
/**
|
|
8256
|
+
/**
|
|
8257
|
+
* The scroll-snap-stop CSS property defines whether or not the scroll container is allowed to "pass over" possible snap positions.
|
|
8258
|
+
*
|
|
8259
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-snap-stop)
|
|
8260
|
+
*/
|
|
6833
8261
|
scrollSnapStop: string;
|
|
6834
|
-
/**
|
|
8262
|
+
/**
|
|
8263
|
+
* The scroll-snap-type CSS property is set on a scroll container, opting it into scroll snapping by setting the direction and strictness of snap point enforcement within the snap port.
|
|
8264
|
+
*
|
|
8265
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-snap-type)
|
|
8266
|
+
*/
|
|
6835
8267
|
scrollSnapType: string;
|
|
6836
|
-
/**
|
|
8268
|
+
/**
|
|
8269
|
+
* The scroll-timeline CSS shorthand property is used to define a named scroll progress timeline, which is progressed through by scrolling a scrollable element (scroller) between top and bottom (or left and right). scroll-timeline is set on the scroller that will provide the timeline. The starting scroll position represents 0% progress and the ending scroll position represents 100% progress. If the 0% position and 100% position coincide (i.e., the scroll container has no overflow to scroll), the timeline is inactive.
|
|
8270
|
+
*
|
|
8271
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-timeline)
|
|
8272
|
+
*/
|
|
6837
8273
|
scrollTimeline: string;
|
|
6838
|
-
/**
|
|
8274
|
+
/**
|
|
8275
|
+
* The scroll-timeline-axis CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a named scroll progress timeline animation, which is progressed through by scrolling a scrollable element (scroller) between top and bottom (or left and right). scroll-timeline is set on the scroller that will provide the timeline. See CSS scroll-driven animations for more details.
|
|
8276
|
+
*
|
|
8277
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-timeline-axis)
|
|
8278
|
+
*/
|
|
6839
8279
|
scrollTimelineAxis: string;
|
|
6840
|
-
/**
|
|
8280
|
+
/**
|
|
8281
|
+
* The scroll-timeline-name CSS property is used to define the name of a named scroll progress timeline, which is progressed through by scrolling a scrollable element (scroller) between top and bottom (or left and right). scroll-timeline-name is set on the scroller that will provide the timeline.
|
|
8282
|
+
*
|
|
8283
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-timeline-name)
|
|
8284
|
+
*/
|
|
6841
8285
|
scrollTimelineName: string;
|
|
6842
|
-
/**
|
|
8286
|
+
/**
|
|
8287
|
+
* The scrollbar-color CSS property sets the color of the scrollbar track and thumb.
|
|
8288
|
+
*
|
|
8289
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scrollbar-color)
|
|
8290
|
+
*/
|
|
6843
8291
|
scrollbarColor: string;
|
|
6844
|
-
/**
|
|
8292
|
+
/**
|
|
8293
|
+
* The scrollbar-gutter CSS property allows authors to reserve space for the scrollbar, preventing unwanted layout changes as the content grows while also avoiding unnecessary visuals when scrolling isn't needed.
|
|
8294
|
+
*
|
|
8295
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scrollbar-gutter)
|
|
8296
|
+
*/
|
|
6845
8297
|
scrollbarGutter: string;
|
|
6846
|
-
/**
|
|
8298
|
+
/**
|
|
8299
|
+
* The scrollbar-width property allows the author to set the desired thickness of an element's scrollbars when they are shown.
|
|
8300
|
+
*
|
|
8301
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scrollbar-width)
|
|
8302
|
+
*/
|
|
6847
8303
|
scrollbarWidth: string;
|
|
6848
|
-
/**
|
|
8304
|
+
/**
|
|
8305
|
+
* The shape-image-threshold CSS property sets the alpha channel threshold used to extract the shape using an image as the value for shape-outside.
|
|
8306
|
+
*
|
|
8307
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/shape-image-threshold)
|
|
8308
|
+
*/
|
|
6849
8309
|
shapeImageThreshold: string;
|
|
6850
|
-
/**
|
|
8310
|
+
/**
|
|
8311
|
+
* The shape-margin CSS property sets a margin for a CSS shape created using shape-outside.
|
|
8312
|
+
*
|
|
8313
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/shape-margin)
|
|
8314
|
+
*/
|
|
6851
8315
|
shapeMargin: string;
|
|
6852
|
-
/**
|
|
8316
|
+
/**
|
|
8317
|
+
* The shape-outside CSS property defines a shape—which may be non-rectangular—around which adjacent inline content should wrap. By default, inline content wraps around its margin box; shape-outside provides a way to customize this wrapping, making it possible to wrap text around complex objects rather than rectangular boxes.
|
|
8318
|
+
*
|
|
8319
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/shape-outside)
|
|
8320
|
+
*/
|
|
6853
8321
|
shapeOutside: string;
|
|
6854
|
-
/**
|
|
8322
|
+
/**
|
|
8323
|
+
* The shape-rendering CSS property provides hints to the renderer about what tradeoffs to make when rendering shapes like paths, circles, or rectangles. It only has an effect on the <circle>, <ellipse>, <line>, <path>, <polygon>, <polyline>, and <rect> elements. If explicitly declared, the value of the CSS property overrides the any values of the element's shape-rendering attribute.
|
|
8324
|
+
*
|
|
8325
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/shape-rendering)
|
|
8326
|
+
*/
|
|
6855
8327
|
shapeRendering: string;
|
|
6856
|
-
/**
|
|
8328
|
+
/**
|
|
8329
|
+
* The stop-color CSS property defines the color to use for an SVG <stop> element within a gradient. If present, it overrides the element's stop-color attribute.
|
|
8330
|
+
*
|
|
8331
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/stop-color)
|
|
8332
|
+
*/
|
|
6857
8333
|
stopColor: string;
|
|
6858
|
-
/**
|
|
8334
|
+
/**
|
|
8335
|
+
* The stop-opacity CSS property defines the opacity of a given color gradient stop in the SVG <stop> element within an SVG gradient. If present, it overrides the element's stop-opacity attribute.
|
|
8336
|
+
*
|
|
8337
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/stop-opacity)
|
|
8338
|
+
*/
|
|
6859
8339
|
stopOpacity: string;
|
|
6860
|
-
/**
|
|
8340
|
+
/**
|
|
8341
|
+
* The **`stroke`** CSS property defines the color or SVG paint server used to draw an element's stroke. As such, stroke only has an effect on elements that can be given a stroke (for example, <rect> or <ellipse>); see the page on the SVG stroke attribute for a complete list. When declared, the CSS value overrides any value of the element's stroke SVG attribute.
|
|
8342
|
+
*
|
|
8343
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/stroke)
|
|
8344
|
+
*/
|
|
6861
8345
|
stroke: string;
|
|
6862
|
-
/**
|
|
8346
|
+
/**
|
|
8347
|
+
* The stroke-dasharray CSS property defines a pattern of dashes and gaps used in the painting of the SVG shape's stroke. If present, it overrides the element's stroke-dasharray attribute.
|
|
8348
|
+
*
|
|
8349
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/stroke-dasharray)
|
|
8350
|
+
*/
|
|
6863
8351
|
strokeDasharray: string;
|
|
6864
|
-
/**
|
|
8352
|
+
/**
|
|
8353
|
+
* The stroke-dashoffset CSS property defines an offset for the starting point of the rendering of an SVG element's associated dash array. If present, it overrides the element's stroke-dashoffset attribute.
|
|
8354
|
+
*
|
|
8355
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/stroke-dashoffset)
|
|
8356
|
+
*/
|
|
6865
8357
|
strokeDashoffset: string;
|
|
6866
|
-
/**
|
|
8358
|
+
/**
|
|
8359
|
+
* The stroke-linecap CSS property defines the shape to be used at the end of open subpaths of SVG elements' unclosed strokes. If present, it overrides the element's stroke-linecap attribute.
|
|
8360
|
+
*
|
|
8361
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/stroke-linecap)
|
|
8362
|
+
*/
|
|
6867
8363
|
strokeLinecap: string;
|
|
6868
|
-
/**
|
|
8364
|
+
/**
|
|
8365
|
+
* The stroke-linejoin CSS property defines the shape to be used at the corners of an SVG element's stroked paths. If present, it overrides the element's stroke-linejoin attribute.
|
|
8366
|
+
*
|
|
8367
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/stroke-linejoin)
|
|
8368
|
+
*/
|
|
6869
8369
|
strokeLinejoin: string;
|
|
6870
|
-
/**
|
|
8370
|
+
/**
|
|
8371
|
+
* The stroke-miterlimit CSS property defines a limit on the ratio of the miter length to the stroke-width when the shape to be used at the corners of an SVG element's stroked path is a mitered join. If the limit defined by this property is exceeded, the join is converted from miter to bevel, thus making the corner appear truncated.
|
|
8372
|
+
*
|
|
8373
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/stroke-miterlimit)
|
|
8374
|
+
*/
|
|
6871
8375
|
strokeMiterlimit: string;
|
|
6872
|
-
/**
|
|
8376
|
+
/**
|
|
8377
|
+
* The stroke-opacity CSS property defines the opacity of an SVG shape's stroke. The effect is identical to that of opacity, except it is applied only to the stroke, not to the entire element. If present, it overrides the element's stroke-opacity attribute.
|
|
8378
|
+
*
|
|
8379
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/stroke-opacity)
|
|
8380
|
+
*/
|
|
6873
8381
|
strokeOpacity: string;
|
|
6874
|
-
/**
|
|
8382
|
+
/**
|
|
8383
|
+
* The stroke-width CSS property defines the width of a stroke applied to the SVG shape. If present, it overrides the element's stroke-width attribute.
|
|
8384
|
+
*
|
|
8385
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/stroke-width)
|
|
8386
|
+
*/
|
|
6875
8387
|
strokeWidth: string;
|
|
6876
|
-
/**
|
|
8388
|
+
/**
|
|
8389
|
+
* The tab-size CSS property is used to customize the width of tab characters (U+0009).
|
|
8390
|
+
*
|
|
8391
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/tab-size)
|
|
8392
|
+
*/
|
|
6877
8393
|
tabSize: string;
|
|
6878
|
-
/**
|
|
8394
|
+
/**
|
|
8395
|
+
* The table-layout CSS property sets the algorithm used to lay out <table> cells, rows, and columns.
|
|
8396
|
+
*
|
|
8397
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/table-layout)
|
|
8398
|
+
*/
|
|
6879
8399
|
tableLayout: string;
|
|
6880
|
-
/**
|
|
8400
|
+
/**
|
|
8401
|
+
* The text-align CSS property sets the horizontal alignment of the inline-level content inside a block element or table-cell box. This means it works like vertical-align but in the horizontal direction.
|
|
8402
|
+
*
|
|
8403
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-align)
|
|
8404
|
+
*/
|
|
6881
8405
|
textAlign: string;
|
|
6882
|
-
/**
|
|
8406
|
+
/**
|
|
8407
|
+
* The text-align-last CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.
|
|
8408
|
+
*
|
|
8409
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-align-last)
|
|
8410
|
+
*/
|
|
6883
8411
|
textAlignLast: string;
|
|
6884
|
-
/**
|
|
8412
|
+
/**
|
|
8413
|
+
* The text-anchor CSS property aligns a box containing a string of text where the wrapping area is determined from the inline-size property, and the text is then placed relative to the anchor point of the element, which is defined using the x and y (or dx and dy) attributes. If present, the value of the CSS property overrides any value of the element's text-anchor attribute.
|
|
8414
|
+
*
|
|
8415
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-anchor)
|
|
8416
|
+
*/
|
|
6885
8417
|
textAnchor: string;
|
|
6886
|
-
/**
|
|
8418
|
+
/**
|
|
8419
|
+
* The text-autospace CSS property allows you to specify the space applied between Chinese/Japanese/Korean (CJK) and non-CJK characters.
|
|
8420
|
+
*
|
|
8421
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-autospace)
|
|
8422
|
+
*/
|
|
6887
8423
|
textAutospace: string;
|
|
6888
|
-
/**
|
|
8424
|
+
/**
|
|
8425
|
+
* The text-box CSS property is a shorthand that corresponds to the text-box-trim and text-box-edge properties, which together specify the amount of space to trim from the block-start edge and block-end edge of a text element's block container.
|
|
8426
|
+
*
|
|
8427
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-box)
|
|
8428
|
+
*/
|
|
6889
8429
|
textBox: string;
|
|
6890
|
-
/**
|
|
8430
|
+
/**
|
|
8431
|
+
* The text-box-edge CSS property specifies an amount of space to trim from a text element's block container.
|
|
8432
|
+
*
|
|
8433
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-box-edge)
|
|
8434
|
+
*/
|
|
6891
8435
|
textBoxEdge: string;
|
|
6892
|
-
/**
|
|
8436
|
+
/**
|
|
8437
|
+
* The text-box-trim CSS property specifies which of the over and under edges of text content to trim from a text element's block container.
|
|
8438
|
+
*
|
|
8439
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-box-trim)
|
|
8440
|
+
*/
|
|
6893
8441
|
textBoxTrim: string;
|
|
6894
|
-
/**
|
|
8442
|
+
/**
|
|
8443
|
+
* The text-combine-upright CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.
|
|
8444
|
+
*
|
|
8445
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-combine-upright)
|
|
8446
|
+
*/
|
|
6895
8447
|
textCombineUpright: string;
|
|
6896
|
-
/**
|
|
8448
|
+
/**
|
|
8449
|
+
* The text-decoration shorthand CSS property sets the appearance of decorative lines on text. It is a shorthand for text-decoration-line, text-decoration-color, text-decoration-style, and the newer text-decoration-thickness property.
|
|
8450
|
+
*
|
|
8451
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-decoration)
|
|
8452
|
+
*/
|
|
6897
8453
|
textDecoration: string;
|
|
6898
|
-
/**
|
|
8454
|
+
/**
|
|
8455
|
+
* The text-decoration-color CSS property sets the color of decorations added to text by text-decoration-line.
|
|
8456
|
+
*
|
|
8457
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-decoration-color)
|
|
8458
|
+
*/
|
|
6899
8459
|
textDecorationColor: string;
|
|
6900
|
-
/**
|
|
8460
|
+
/**
|
|
8461
|
+
* The text-decoration-line CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
|
|
8462
|
+
*
|
|
8463
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-decoration-line)
|
|
8464
|
+
*/
|
|
6901
8465
|
textDecorationLine: string;
|
|
6902
|
-
/**
|
|
8466
|
+
/**
|
|
8467
|
+
* The text-decoration-skip-ink CSS property specifies how overlines and underlines are drawn when they pass over glyph ascenders and descenders.
|
|
8468
|
+
*
|
|
8469
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-decoration-skip-ink)
|
|
8470
|
+
*/
|
|
6903
8471
|
textDecorationSkipInk: string;
|
|
6904
|
-
/**
|
|
8472
|
+
/**
|
|
8473
|
+
* The text-decoration-style CSS property sets the style of the lines specified by text-decoration-line. The style applies to all lines that are set with text-decoration-line.
|
|
8474
|
+
*
|
|
8475
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-decoration-style)
|
|
8476
|
+
*/
|
|
6905
8477
|
textDecorationStyle: string;
|
|
6906
|
-
/**
|
|
8478
|
+
/**
|
|
8479
|
+
* The text-decoration-thickness CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline.
|
|
8480
|
+
*
|
|
8481
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-decoration-thickness)
|
|
8482
|
+
*/
|
|
6907
8483
|
textDecorationThickness: string;
|
|
6908
|
-
/**
|
|
8484
|
+
/**
|
|
8485
|
+
* The text-emphasis CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for text-emphasis-style and text-emphasis-color.
|
|
8486
|
+
*
|
|
8487
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-emphasis)
|
|
8488
|
+
*/
|
|
6909
8489
|
textEmphasis: string;
|
|
6910
|
-
/**
|
|
8490
|
+
/**
|
|
8491
|
+
* The text-emphasis-color CSS property sets the color of emphasis marks. This value can also be set using the text-emphasis shorthand.
|
|
8492
|
+
*
|
|
8493
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-emphasis-color)
|
|
8494
|
+
*/
|
|
6911
8495
|
textEmphasisColor: string;
|
|
6912
|
-
/**
|
|
8496
|
+
/**
|
|
8497
|
+
* The text-emphasis-position CSS property sets where emphasis marks are drawn. Similar to the text rendered by the <ruby> HTML element, if there isn't enough room for emphasis marks, the line height is increased.
|
|
8498
|
+
*
|
|
8499
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-emphasis-position)
|
|
8500
|
+
*/
|
|
6913
8501
|
textEmphasisPosition: string;
|
|
6914
|
-
/**
|
|
8502
|
+
/**
|
|
8503
|
+
* The text-emphasis-style CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the text-emphasis shorthand.
|
|
8504
|
+
*
|
|
8505
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-emphasis-style)
|
|
8506
|
+
*/
|
|
6915
8507
|
textEmphasisStyle: string;
|
|
6916
|
-
/**
|
|
8508
|
+
/**
|
|
8509
|
+
* The text-indent CSS property sets the length of empty space (indentation) that is put before lines of text in a block.
|
|
8510
|
+
*
|
|
8511
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-indent)
|
|
8512
|
+
*/
|
|
6917
8513
|
textIndent: string;
|
|
6918
|
-
/**
|
|
8514
|
+
/**
|
|
8515
|
+
* The text-orientation CSS property sets the orientation of the text characters in a line. It only affects text in vertical mode (when writing-mode is not horizontal-tb). It is useful for controlling the display of languages that use vertical script, and also for making vertical table headers.
|
|
8516
|
+
*
|
|
8517
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-orientation)
|
|
8518
|
+
*/
|
|
6919
8519
|
textOrientation: string;
|
|
6920
|
-
/**
|
|
8520
|
+
/**
|
|
8521
|
+
* The text-overflow CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis (…), or display a custom string.
|
|
8522
|
+
*
|
|
8523
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-overflow)
|
|
8524
|
+
*/
|
|
6921
8525
|
textOverflow: string;
|
|
6922
|
-
/**
|
|
8526
|
+
/**
|
|
8527
|
+
* The text-rendering CSS property provides information to the rendering engine about what to optimize for when rendering text.
|
|
8528
|
+
*
|
|
8529
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-rendering)
|
|
8530
|
+
*/
|
|
6923
8531
|
textRendering: string;
|
|
6924
|
-
/**
|
|
8532
|
+
/**
|
|
8533
|
+
* The text-shadow CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its decorations. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.
|
|
8534
|
+
*
|
|
8535
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-shadow)
|
|
8536
|
+
*/
|
|
6925
8537
|
textShadow: string;
|
|
6926
|
-
/**
|
|
8538
|
+
/**
|
|
8539
|
+
* The text-transform CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. It also can help improve legibility for ruby.
|
|
8540
|
+
*
|
|
8541
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-transform)
|
|
8542
|
+
*/
|
|
6927
8543
|
textTransform: string;
|
|
6928
|
-
/**
|
|
8544
|
+
/**
|
|
8545
|
+
* The text-underline-offset CSS property sets the offset distance of an underline text decoration line (applied using text-decoration) from its original position.
|
|
8546
|
+
*
|
|
8547
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-underline-offset)
|
|
8548
|
+
*/
|
|
6929
8549
|
textUnderlineOffset: string;
|
|
6930
|
-
/**
|
|
8550
|
+
/**
|
|
8551
|
+
* The text-underline-position CSS property specifies the position of the underline which is set using the text-decoration property's underline value.
|
|
8552
|
+
*
|
|
8553
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-underline-position)
|
|
8554
|
+
*/
|
|
6931
8555
|
textUnderlinePosition: string;
|
|
6932
|
-
/**
|
|
8556
|
+
/**
|
|
8557
|
+
* The text-wrap CSS shorthand property controls how text inside an element is wrapped. The different values provide:
|
|
8558
|
+
*
|
|
8559
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-wrap)
|
|
8560
|
+
*/
|
|
6933
8561
|
textWrap: string;
|
|
6934
|
-
/**
|
|
8562
|
+
/**
|
|
8563
|
+
* The text-wrap-mode CSS property controls whether the text inside an element is wrapped. The different values provide alternate ways of wrapping the content of a block element. It can also be set, and reset, using the text-wrap shorthand or the white-space shorthand.
|
|
8564
|
+
*
|
|
8565
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-wrap-mode)
|
|
8566
|
+
*/
|
|
6935
8567
|
textWrapMode: string;
|
|
6936
|
-
/**
|
|
8568
|
+
/**
|
|
8569
|
+
* The text-wrap-style CSS property controls how text inside an element is wrapped. The different values provide alternate ways of wrapping the content of a block element. It can also be set, and reset, using the text-wrap shorthand.
|
|
8570
|
+
*
|
|
8571
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-wrap-style)
|
|
8572
|
+
*/
|
|
6937
8573
|
textWrapStyle: string;
|
|
6938
|
-
/**
|
|
8574
|
+
/**
|
|
8575
|
+
* The timeline-scope CSS property modifies the scope of a named animation timeline.
|
|
8576
|
+
*
|
|
8577
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/timeline-scope)
|
|
8578
|
+
*/
|
|
6939
8579
|
timelineScope: string;
|
|
6940
|
-
/**
|
|
8580
|
+
/**
|
|
8581
|
+
* The **`top`** CSS property sets the vertical position of a positioned element. This inset property has no effect on non-positioned elements.
|
|
8582
|
+
*
|
|
8583
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/top)
|
|
8584
|
+
*/
|
|
6941
8585
|
top: string;
|
|
6942
|
-
/**
|
|
8586
|
+
/**
|
|
8587
|
+
* The touch-action CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser).
|
|
8588
|
+
*
|
|
8589
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/touch-action)
|
|
8590
|
+
*/
|
|
6943
8591
|
touchAction: string;
|
|
6944
|
-
/**
|
|
8592
|
+
/**
|
|
8593
|
+
* The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
|
|
8594
|
+
*
|
|
8595
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transform)
|
|
8596
|
+
*/
|
|
6945
8597
|
transform: string;
|
|
6946
|
-
/**
|
|
8598
|
+
/**
|
|
8599
|
+
* The transform-box CSS property defines the layout box to which the transform, individual transform properties translate, scale, and rotate, and transform-origin properties relate.
|
|
8600
|
+
*
|
|
8601
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transform-box)
|
|
8602
|
+
*/
|
|
6947
8603
|
transformBox: string;
|
|
6948
|
-
/**
|
|
8604
|
+
/**
|
|
8605
|
+
* The transform-origin CSS property sets the origin for an element's transformations.
|
|
8606
|
+
*
|
|
8607
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transform-origin)
|
|
8608
|
+
*/
|
|
6949
8609
|
transformOrigin: string;
|
|
6950
|
-
/**
|
|
8610
|
+
/**
|
|
8611
|
+
* The transform-style CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
|
|
8612
|
+
*
|
|
8613
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transform-style)
|
|
8614
|
+
*/
|
|
6951
8615
|
transformStyle: string;
|
|
6952
|
-
/**
|
|
8616
|
+
/**
|
|
8617
|
+
* The **`transition`** CSS property is a shorthand property for transition-property, transition-duration, transition-timing-function, transition-delay, and transition-behavior.
|
|
8618
|
+
*
|
|
8619
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transition)
|
|
8620
|
+
*/
|
|
6953
8621
|
transition: string;
|
|
6954
|
-
/**
|
|
8622
|
+
/**
|
|
8623
|
+
* The transition-behavior CSS property specifies whether transitions will be started for properties whose animation behavior is discrete.
|
|
8624
|
+
*
|
|
8625
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transition-behavior)
|
|
8626
|
+
*/
|
|
6955
8627
|
transitionBehavior: string;
|
|
6956
|
-
/**
|
|
8628
|
+
/**
|
|
8629
|
+
* The transition-delay CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
|
|
8630
|
+
*
|
|
8631
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transition-delay)
|
|
8632
|
+
*/
|
|
6957
8633
|
transitionDelay: string;
|
|
6958
|
-
/**
|
|
8634
|
+
/**
|
|
8635
|
+
* The transition-duration CSS property sets the length of time a transition animation should take to complete. By default, the value is 0s, meaning that no animation will occur.
|
|
8636
|
+
*
|
|
8637
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transition-duration)
|
|
8638
|
+
*/
|
|
6959
8639
|
transitionDuration: string;
|
|
6960
|
-
/**
|
|
8640
|
+
/**
|
|
8641
|
+
* The transition-property CSS property sets the CSS properties to which a transition effect should be applied.
|
|
8642
|
+
*
|
|
8643
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transition-property)
|
|
8644
|
+
*/
|
|
6961
8645
|
transitionProperty: string;
|
|
6962
|
-
/**
|
|
8646
|
+
/**
|
|
8647
|
+
* The transition-timing-function CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
|
|
8648
|
+
*
|
|
8649
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transition-timing-function)
|
|
8650
|
+
*/
|
|
6963
8651
|
transitionTimingFunction: string;
|
|
6964
|
-
/**
|
|
8652
|
+
/**
|
|
8653
|
+
* The **`translate`** CSS property allows you to specify translation transforms individually and independently of the transform property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the transform value.
|
|
8654
|
+
*
|
|
8655
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/translate)
|
|
8656
|
+
*/
|
|
6965
8657
|
translate: string;
|
|
6966
|
-
/**
|
|
8658
|
+
/**
|
|
8659
|
+
* The unicode-bidi CSS property, together with the direction property, determines how bidirectional text in a document is handled. For example, if a block of content contains both left-to-right and right-to-left text, the user-agent uses a complex Unicode algorithm to decide how to display the text. The unicode-bidi property overrides this algorithm and allows the developer to control the text embedding.
|
|
8660
|
+
*
|
|
8661
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/unicode-bidi)
|
|
8662
|
+
*/
|
|
6967
8663
|
unicodeBidi: string;
|
|
6968
|
-
/**
|
|
8664
|
+
/**
|
|
8665
|
+
* The user-select CSS property controls whether the user can select text. This doesn't have any effect on content loaded as part of a browser's user interface (its chrome), except in textboxes.
|
|
8666
|
+
*
|
|
8667
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/user-select)
|
|
8668
|
+
*/
|
|
6969
8669
|
userSelect: string;
|
|
6970
|
-
/**
|
|
8670
|
+
/**
|
|
8671
|
+
* The vector-effect CSS property suppresses specific transformation effects in SVG, thus permitting effects like a road on a map staying the same width no matter how the map is zoomed, or allowing a diagram key to retain its position and size regardless of other transforms. It can only be used with SVG elements that accept the vector-effect attribute. When used, the CSS value overrides any values of the element's vector-effect attribute.
|
|
8672
|
+
*
|
|
8673
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/vector-effect)
|
|
8674
|
+
*/
|
|
6971
8675
|
vectorEffect: string;
|
|
6972
|
-
/**
|
|
8676
|
+
/**
|
|
8677
|
+
* The vertical-align CSS property sets vertical alignment of an inline, inline-block or table-cell box.
|
|
8678
|
+
*
|
|
8679
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/vertical-align)
|
|
8680
|
+
*/
|
|
6973
8681
|
verticalAlign: string;
|
|
6974
|
-
/**
|
|
8682
|
+
/**
|
|
8683
|
+
* The view-timeline CSS shorthand property is used to define a named view progress timeline, which is progressed through based on the change in visibility of an element (known as the subject) inside a scrollable element (scroller). view-timeline is set on the subject.
|
|
8684
|
+
*
|
|
8685
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-timeline)
|
|
8686
|
+
*/
|
|
6975
8687
|
viewTimeline: string;
|
|
6976
|
-
/**
|
|
8688
|
+
/**
|
|
8689
|
+
* The view-timeline-axis CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a named view progress timeline animation, which is progressed through based on the change in visibility of an element (known as the subject) inside a scrollable element (scroller). view-timeline-axis is set on the subject. See CSS scroll-driven animations for more details.
|
|
8690
|
+
*
|
|
8691
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-timeline-axis)
|
|
8692
|
+
*/
|
|
6977
8693
|
viewTimelineAxis: string;
|
|
6978
|
-
/**
|
|
8694
|
+
/**
|
|
8695
|
+
* The view-timeline-inset CSS property is used to specify one or two values representing an adjustment to the position of the scrollport (see Scroll container for more details) in which the subject element of a named view progress timeline animation is deemed to be visible. Put another way, this allows you to specify start and/or end inset (or outset) values that offset the position of the timeline.
|
|
8696
|
+
*
|
|
8697
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-timeline-inset)
|
|
8698
|
+
*/
|
|
6979
8699
|
viewTimelineInset: string;
|
|
6980
|
-
/**
|
|
8700
|
+
/**
|
|
8701
|
+
* The view-timeline-name CSS property is used to define the name of a named view progress timeline, which is progressed through based on the change in visibility of an element (known as the subject) inside a scrollable element (scroller). view-timeline is set on the subject.
|
|
8702
|
+
*
|
|
8703
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-timeline-name)
|
|
8704
|
+
*/
|
|
6981
8705
|
viewTimelineName: string;
|
|
6982
|
-
/**
|
|
8706
|
+
/**
|
|
8707
|
+
* The view-transition-class CSS property provides the selected elements with an identifying class (a <custom-ident>), providing an additional method of styling the view transitions for those elements.
|
|
8708
|
+
*
|
|
8709
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-transition-class)
|
|
8710
|
+
*/
|
|
6983
8711
|
viewTransitionClass: string;
|
|
6984
|
-
/**
|
|
8712
|
+
/**
|
|
8713
|
+
* The view-transition-name CSS property specifies the view transition snapshot that selected elements will participate in. This enables you to animate those elements separately from the rest of the page, which uses the default cross-fade animation during a view transition. You can then define custom animation styles for these elements.
|
|
8714
|
+
*
|
|
8715
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-transition-name)
|
|
8716
|
+
*/
|
|
6985
8717
|
viewTransitionName: string;
|
|
6986
|
-
/**
|
|
8718
|
+
/**
|
|
8719
|
+
* The **`visibility`** CSS property shows or hides an element without changing the layout of a document. The property can also hide rows or columns in a <table>.
|
|
8720
|
+
*
|
|
8721
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/visibility)
|
|
8722
|
+
*/
|
|
6987
8723
|
visibility: string;
|
|
6988
8724
|
/**
|
|
6989
8725
|
* @deprecated This is a legacy alias of `alignContent`.
|
|
6990
8726
|
*
|
|
6991
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-content)
|
|
8727
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/align-content)
|
|
6992
8728
|
*/
|
|
6993
8729
|
webkitAlignContent: string;
|
|
6994
8730
|
/**
|
|
6995
8731
|
* @deprecated This is a legacy alias of `alignItems`.
|
|
6996
8732
|
*
|
|
6997
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-items)
|
|
8733
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/align-items)
|
|
6998
8734
|
*/
|
|
6999
8735
|
webkitAlignItems: string;
|
|
7000
8736
|
/**
|
|
7001
8737
|
* @deprecated This is a legacy alias of `alignSelf`.
|
|
7002
8738
|
*
|
|
7003
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-self)
|
|
8739
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/align-self)
|
|
7004
8740
|
*/
|
|
7005
8741
|
webkitAlignSelf: string;
|
|
7006
8742
|
/**
|
|
7007
8743
|
* @deprecated This is a legacy alias of `animation`.
|
|
7008
8744
|
*
|
|
7009
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation)
|
|
8745
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation)
|
|
7010
8746
|
*/
|
|
7011
8747
|
webkitAnimation: string;
|
|
7012
8748
|
/**
|
|
7013
8749
|
* @deprecated This is a legacy alias of `animationDelay`.
|
|
7014
8750
|
*
|
|
7015
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-delay)
|
|
8751
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-delay)
|
|
7016
8752
|
*/
|
|
7017
8753
|
webkitAnimationDelay: string;
|
|
7018
8754
|
/**
|
|
7019
8755
|
* @deprecated This is a legacy alias of `animationDirection`.
|
|
7020
8756
|
*
|
|
7021
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-direction)
|
|
8757
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-direction)
|
|
7022
8758
|
*/
|
|
7023
8759
|
webkitAnimationDirection: string;
|
|
7024
8760
|
/**
|
|
7025
8761
|
* @deprecated This is a legacy alias of `animationDuration`.
|
|
7026
8762
|
*
|
|
7027
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-duration)
|
|
8763
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-duration)
|
|
7028
8764
|
*/
|
|
7029
8765
|
webkitAnimationDuration: string;
|
|
7030
8766
|
/**
|
|
7031
8767
|
* @deprecated This is a legacy alias of `animationFillMode`.
|
|
7032
8768
|
*
|
|
7033
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode)
|
|
8769
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-fill-mode)
|
|
7034
8770
|
*/
|
|
7035
8771
|
webkitAnimationFillMode: string;
|
|
7036
8772
|
/**
|
|
7037
8773
|
* @deprecated This is a legacy alias of `animationIterationCount`.
|
|
7038
8774
|
*
|
|
7039
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count)
|
|
8775
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-iteration-count)
|
|
7040
8776
|
*/
|
|
7041
8777
|
webkitAnimationIterationCount: string;
|
|
7042
8778
|
/**
|
|
7043
8779
|
* @deprecated This is a legacy alias of `animationName`.
|
|
7044
8780
|
*
|
|
7045
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-name)
|
|
8781
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-name)
|
|
7046
8782
|
*/
|
|
7047
8783
|
webkitAnimationName: string;
|
|
7048
8784
|
/**
|
|
7049
8785
|
* @deprecated This is a legacy alias of `animationPlayState`.
|
|
7050
8786
|
*
|
|
7051
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-play-state)
|
|
8787
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-play-state)
|
|
7052
8788
|
*/
|
|
7053
8789
|
webkitAnimationPlayState: string;
|
|
7054
8790
|
/**
|
|
7055
8791
|
* @deprecated This is a legacy alias of `animationTimingFunction`.
|
|
7056
8792
|
*
|
|
7057
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-timing-function)
|
|
8793
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-timing-function)
|
|
7058
8794
|
*/
|
|
7059
8795
|
webkitAnimationTimingFunction: string;
|
|
7060
8796
|
/**
|
|
7061
8797
|
* @deprecated This is a legacy alias of `appearance`.
|
|
7062
8798
|
*
|
|
7063
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/appearance)
|
|
8799
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/appearance)
|
|
7064
8800
|
*/
|
|
7065
8801
|
webkitAppearance: string;
|
|
7066
8802
|
/**
|
|
7067
8803
|
* @deprecated This is a legacy alias of `backfaceVisibility`.
|
|
7068
8804
|
*
|
|
7069
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/backface-visibility)
|
|
8805
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/backface-visibility)
|
|
7070
8806
|
*/
|
|
7071
8807
|
webkitBackfaceVisibility: string;
|
|
7072
8808
|
/**
|
|
7073
8809
|
* @deprecated This is a legacy alias of `backgroundClip`.
|
|
7074
8810
|
*
|
|
7075
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-clip)
|
|
8811
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-clip)
|
|
7076
8812
|
*/
|
|
7077
8813
|
webkitBackgroundClip: string;
|
|
7078
8814
|
/**
|
|
7079
8815
|
* @deprecated This is a legacy alias of `backgroundOrigin`.
|
|
7080
8816
|
*
|
|
7081
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-origin)
|
|
8817
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-origin)
|
|
7082
8818
|
*/
|
|
7083
8819
|
webkitBackgroundOrigin: string;
|
|
7084
8820
|
/**
|
|
7085
8821
|
* @deprecated This is a legacy alias of `backgroundSize`.
|
|
7086
8822
|
*
|
|
7087
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-size)
|
|
8823
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-size)
|
|
7088
8824
|
*/
|
|
7089
8825
|
webkitBackgroundSize: string;
|
|
7090
8826
|
/**
|
|
7091
8827
|
* @deprecated This is a legacy alias of `borderBottomLeftRadius`.
|
|
7092
8828
|
*
|
|
7093
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius)
|
|
8829
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-bottom-left-radius)
|
|
7094
8830
|
*/
|
|
7095
8831
|
webkitBorderBottomLeftRadius: string;
|
|
7096
8832
|
/**
|
|
7097
8833
|
* @deprecated This is a legacy alias of `borderBottomRightRadius`.
|
|
7098
8834
|
*
|
|
7099
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius)
|
|
8835
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-bottom-right-radius)
|
|
7100
8836
|
*/
|
|
7101
8837
|
webkitBorderBottomRightRadius: string;
|
|
7102
8838
|
/**
|
|
7103
8839
|
* @deprecated This is a legacy alias of `borderRadius`.
|
|
7104
8840
|
*
|
|
7105
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-radius)
|
|
8841
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-radius)
|
|
7106
8842
|
*/
|
|
7107
8843
|
webkitBorderRadius: string;
|
|
7108
8844
|
/**
|
|
7109
8845
|
* @deprecated This is a legacy alias of `borderTopLeftRadius`.
|
|
7110
8846
|
*
|
|
7111
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius)
|
|
8847
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-top-left-radius)
|
|
7112
8848
|
*/
|
|
7113
8849
|
webkitBorderTopLeftRadius: string;
|
|
7114
8850
|
/**
|
|
7115
8851
|
* @deprecated This is a legacy alias of `borderTopRightRadius`.
|
|
7116
8852
|
*
|
|
7117
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius)
|
|
8853
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/border-top-right-radius)
|
|
7118
8854
|
*/
|
|
7119
8855
|
webkitBorderTopRightRadius: string;
|
|
7120
8856
|
/**
|
|
7121
8857
|
* @deprecated This is a legacy alias of `boxAlign`.
|
|
7122
8858
|
*
|
|
7123
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-align)
|
|
8859
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/box-align)
|
|
7124
8860
|
*/
|
|
7125
8861
|
webkitBoxAlign: string;
|
|
7126
8862
|
/**
|
|
7127
8863
|
* @deprecated This is a legacy alias of `boxFlex`.
|
|
7128
8864
|
*
|
|
7129
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-flex)
|
|
8865
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/box-flex)
|
|
7130
8866
|
*/
|
|
7131
8867
|
webkitBoxFlex: string;
|
|
7132
8868
|
/**
|
|
7133
8869
|
* @deprecated This is a legacy alias of `boxOrdinalGroup`.
|
|
7134
8870
|
*
|
|
7135
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-ordinal-group)
|
|
8871
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/box-ordinal-group)
|
|
7136
8872
|
*/
|
|
7137
8873
|
webkitBoxOrdinalGroup: string;
|
|
7138
8874
|
/**
|
|
7139
8875
|
* @deprecated This is a legacy alias of `boxOrient`.
|
|
7140
8876
|
*
|
|
7141
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-orient)
|
|
8877
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/box-orient)
|
|
7142
8878
|
*/
|
|
7143
8879
|
webkitBoxOrient: string;
|
|
7144
8880
|
/**
|
|
7145
8881
|
* @deprecated This is a legacy alias of `boxPack`.
|
|
7146
8882
|
*
|
|
7147
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-pack)
|
|
8883
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/box-pack)
|
|
7148
8884
|
*/
|
|
7149
8885
|
webkitBoxPack: string;
|
|
7150
8886
|
/**
|
|
7151
8887
|
* @deprecated This is a legacy alias of `boxShadow`.
|
|
7152
8888
|
*
|
|
7153
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-shadow)
|
|
8889
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/box-shadow)
|
|
7154
8890
|
*/
|
|
7155
8891
|
webkitBoxShadow: string;
|
|
7156
8892
|
/**
|
|
7157
8893
|
* @deprecated This is a legacy alias of `boxSizing`.
|
|
7158
8894
|
*
|
|
7159
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-sizing)
|
|
8895
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/box-sizing)
|
|
7160
8896
|
*/
|
|
7161
8897
|
webkitBoxSizing: string;
|
|
7162
8898
|
/**
|
|
7163
8899
|
* @deprecated This is a legacy alias of `filter`.
|
|
7164
8900
|
*
|
|
7165
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/filter)
|
|
8901
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/filter)
|
|
7166
8902
|
*/
|
|
7167
8903
|
webkitFilter: string;
|
|
7168
8904
|
/**
|
|
7169
8905
|
* @deprecated This is a legacy alias of `flex`.
|
|
7170
8906
|
*
|
|
7171
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex)
|
|
8907
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flex)
|
|
7172
8908
|
*/
|
|
7173
8909
|
webkitFlex: string;
|
|
7174
8910
|
/**
|
|
7175
8911
|
* @deprecated This is a legacy alias of `flexBasis`.
|
|
7176
8912
|
*
|
|
7177
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-basis)
|
|
8913
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flex-basis)
|
|
7178
8914
|
*/
|
|
7179
8915
|
webkitFlexBasis: string;
|
|
7180
8916
|
/**
|
|
7181
8917
|
* @deprecated This is a legacy alias of `flexDirection`.
|
|
7182
8918
|
*
|
|
7183
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-direction)
|
|
8919
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flex-direction)
|
|
7184
8920
|
*/
|
|
7185
8921
|
webkitFlexDirection: string;
|
|
7186
8922
|
/**
|
|
7187
8923
|
* @deprecated This is a legacy alias of `flexFlow`.
|
|
7188
8924
|
*
|
|
7189
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-flow)
|
|
8925
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flex-flow)
|
|
7190
8926
|
*/
|
|
7191
8927
|
webkitFlexFlow: string;
|
|
7192
8928
|
/**
|
|
7193
8929
|
* @deprecated This is a legacy alias of `flexGrow`.
|
|
7194
8930
|
*
|
|
7195
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-grow)
|
|
8931
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flex-grow)
|
|
7196
8932
|
*/
|
|
7197
8933
|
webkitFlexGrow: string;
|
|
7198
8934
|
/**
|
|
7199
8935
|
* @deprecated This is a legacy alias of `flexShrink`.
|
|
7200
8936
|
*
|
|
7201
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-shrink)
|
|
8937
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flex-shrink)
|
|
7202
8938
|
*/
|
|
7203
8939
|
webkitFlexShrink: string;
|
|
7204
8940
|
/**
|
|
7205
8941
|
* @deprecated This is a legacy alias of `flexWrap`.
|
|
7206
8942
|
*
|
|
7207
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-wrap)
|
|
8943
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/flex-wrap)
|
|
7208
8944
|
*/
|
|
7209
8945
|
webkitFlexWrap: string;
|
|
7210
8946
|
/**
|
|
7211
8947
|
* @deprecated This is a legacy alias of `justifyContent`.
|
|
7212
8948
|
*
|
|
7213
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/justify-content)
|
|
8949
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/justify-content)
|
|
7214
8950
|
*/
|
|
7215
8951
|
webkitJustifyContent: string;
|
|
7216
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/line-clamp) */
|
|
8952
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/line-clamp) */
|
|
7217
8953
|
webkitLineClamp: string;
|
|
7218
8954
|
/**
|
|
7219
8955
|
* @deprecated This is a legacy alias of `mask`.
|
|
7220
8956
|
*
|
|
7221
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask)
|
|
8957
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask)
|
|
7222
8958
|
*/
|
|
7223
8959
|
webkitMask: string;
|
|
7224
8960
|
/**
|
|
8961
|
+
* The non-standard prefixed -webkit-mask-box-image shorthand property sets the mask image for an element's border box.
|
|
7225
8962
|
* @deprecated This is a legacy alias of `maskBorder`.
|
|
7226
8963
|
*
|
|
7227
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-border)
|
|
8964
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-border)
|
|
7228
8965
|
*/
|
|
7229
8966
|
webkitMaskBoxImage: string;
|
|
7230
8967
|
/**
|
|
7231
8968
|
* @deprecated This is a legacy alias of `maskBorderOutset`.
|
|
7232
8969
|
*
|
|
7233
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-border-outset)
|
|
8970
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-border-outset)
|
|
7234
8971
|
*/
|
|
7235
8972
|
webkitMaskBoxImageOutset: string;
|
|
7236
8973
|
/**
|
|
7237
8974
|
* @deprecated This is a legacy alias of `maskBorderRepeat`.
|
|
7238
8975
|
*
|
|
7239
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-border-repeat)
|
|
8976
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-border-repeat)
|
|
7240
8977
|
*/
|
|
7241
8978
|
webkitMaskBoxImageRepeat: string;
|
|
7242
8979
|
/**
|
|
7243
8980
|
* @deprecated This is a legacy alias of `maskBorderSlice`.
|
|
7244
8981
|
*
|
|
7245
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-border-slice)
|
|
8982
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-border-slice)
|
|
7246
8983
|
*/
|
|
7247
8984
|
webkitMaskBoxImageSlice: string;
|
|
7248
8985
|
/**
|
|
7249
8986
|
* @deprecated This is a legacy alias of `maskBorderSource`.
|
|
7250
8987
|
*
|
|
7251
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-border-source)
|
|
8988
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-border-source)
|
|
7252
8989
|
*/
|
|
7253
8990
|
webkitMaskBoxImageSource: string;
|
|
7254
8991
|
/**
|
|
7255
8992
|
* @deprecated This is a legacy alias of `maskBorderWidth`.
|
|
7256
8993
|
*
|
|
7257
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-border-width)
|
|
8994
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-border-width)
|
|
7258
8995
|
*/
|
|
7259
8996
|
webkitMaskBoxImageWidth: string;
|
|
7260
8997
|
/**
|
|
7261
8998
|
* @deprecated This is a legacy alias of `maskClip`.
|
|
7262
8999
|
*
|
|
7263
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-clip)
|
|
9000
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-clip)
|
|
7264
9001
|
*/
|
|
7265
9002
|
webkitMaskClip: string;
|
|
7266
9003
|
/**
|
|
9004
|
+
* The -webkit-mask-composite property specifies the manner in which multiple mask images applied to the same element are composited with one another. Mask images are composited in the opposite order that they are declared with the -webkit-mask-image property.
|
|
7267
9005
|
* @deprecated This is a legacy alias of `maskComposite`.
|
|
7268
9006
|
*
|
|
7269
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-composite)
|
|
9007
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-composite)
|
|
7270
9008
|
*/
|
|
7271
9009
|
webkitMaskComposite: string;
|
|
7272
9010
|
/**
|
|
7273
9011
|
* @deprecated This is a legacy alias of `maskImage`.
|
|
7274
9012
|
*
|
|
7275
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-image)
|
|
9013
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-image)
|
|
7276
9014
|
*/
|
|
7277
9015
|
webkitMaskImage: string;
|
|
7278
9016
|
/**
|
|
7279
9017
|
* @deprecated This is a legacy alias of `maskOrigin`.
|
|
7280
9018
|
*
|
|
7281
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-origin)
|
|
9019
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-origin)
|
|
7282
9020
|
*/
|
|
7283
9021
|
webkitMaskOrigin: string;
|
|
7284
9022
|
/**
|
|
7285
9023
|
* @deprecated This is a legacy alias of `maskPosition`.
|
|
7286
9024
|
*
|
|
7287
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-position)
|
|
9025
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-position)
|
|
7288
9026
|
*/
|
|
7289
9027
|
webkitMaskPosition: string;
|
|
7290
9028
|
/**
|
|
7291
9029
|
* @deprecated This is a legacy alias of `maskRepeat`.
|
|
7292
9030
|
*
|
|
7293
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-repeat)
|
|
9031
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-repeat)
|
|
7294
9032
|
*/
|
|
7295
9033
|
webkitMaskRepeat: string;
|
|
7296
9034
|
/**
|
|
7297
9035
|
* @deprecated This is a legacy alias of `maskSize`.
|
|
7298
9036
|
*
|
|
7299
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-size)
|
|
9037
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/mask-size)
|
|
7300
9038
|
*/
|
|
7301
9039
|
webkitMaskSize: string;
|
|
7302
9040
|
/**
|
|
7303
9041
|
* @deprecated This is a legacy alias of `order`.
|
|
7304
9042
|
*
|
|
7305
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/order)
|
|
9043
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/order)
|
|
7306
9044
|
*/
|
|
7307
9045
|
webkitOrder: string;
|
|
7308
9046
|
/**
|
|
7309
9047
|
* @deprecated This is a legacy alias of `perspective`.
|
|
7310
9048
|
*
|
|
7311
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/perspective)
|
|
9049
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/perspective)
|
|
7312
9050
|
*/
|
|
7313
9051
|
webkitPerspective: string;
|
|
7314
9052
|
/**
|
|
7315
9053
|
* @deprecated This is a legacy alias of `perspectiveOrigin`.
|
|
7316
9054
|
*
|
|
7317
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/perspective-origin)
|
|
9055
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/perspective-origin)
|
|
7318
9056
|
*/
|
|
7319
9057
|
webkitPerspectiveOrigin: string;
|
|
7320
|
-
/**
|
|
9058
|
+
/**
|
|
9059
|
+
* The -webkit-text-fill-color CSS property specifies the fill color of characters of text. If this property is not set, the value of the color property is used.
|
|
9060
|
+
*
|
|
9061
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/-webkit-text-fill-color)
|
|
9062
|
+
*/
|
|
7321
9063
|
webkitTextFillColor: string;
|
|
7322
9064
|
/**
|
|
7323
9065
|
* @deprecated This is a legacy alias of `textSizeAdjust`.
|
|
7324
9066
|
*
|
|
7325
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-size-adjust)
|
|
9067
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-size-adjust)
|
|
7326
9068
|
*/
|
|
7327
9069
|
webkitTextSizeAdjust: string;
|
|
7328
|
-
/**
|
|
9070
|
+
/**
|
|
9071
|
+
* The -webkit-text-stroke CSS property specifies the width and color of strokes for text characters. This is a shorthand property for the longhand properties -webkit-text-stroke-width and -webkit-text-stroke-color.
|
|
9072
|
+
*
|
|
9073
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/-webkit-text-stroke)
|
|
9074
|
+
*/
|
|
7329
9075
|
webkitTextStroke: string;
|
|
7330
|
-
/**
|
|
9076
|
+
/**
|
|
9077
|
+
* The -webkit-text-stroke-color CSS property specifies the stroke color of characters of text. If this property is not set, the value of the color property is used.
|
|
9078
|
+
*
|
|
9079
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/-webkit-text-stroke-color)
|
|
9080
|
+
*/
|
|
7331
9081
|
webkitTextStrokeColor: string;
|
|
7332
|
-
/**
|
|
9082
|
+
/**
|
|
9083
|
+
* The -webkit-text-stroke-width CSS property specifies the width of the stroke for text.
|
|
9084
|
+
*
|
|
9085
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/-webkit-text-stroke-width)
|
|
9086
|
+
*/
|
|
7333
9087
|
webkitTextStrokeWidth: string;
|
|
7334
9088
|
/**
|
|
7335
9089
|
* @deprecated This is a legacy alias of `transform`.
|
|
7336
9090
|
*
|
|
7337
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform)
|
|
9091
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transform)
|
|
7338
9092
|
*/
|
|
7339
9093
|
webkitTransform: string;
|
|
7340
9094
|
/**
|
|
7341
9095
|
* @deprecated This is a legacy alias of `transformOrigin`.
|
|
7342
9096
|
*
|
|
7343
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform-origin)
|
|
9097
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transform-origin)
|
|
7344
9098
|
*/
|
|
7345
9099
|
webkitTransformOrigin: string;
|
|
7346
9100
|
/**
|
|
7347
9101
|
* @deprecated This is a legacy alias of `transformStyle`.
|
|
7348
9102
|
*
|
|
7349
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform-style)
|
|
9103
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transform-style)
|
|
7350
9104
|
*/
|
|
7351
9105
|
webkitTransformStyle: string;
|
|
7352
9106
|
/**
|
|
7353
9107
|
* @deprecated This is a legacy alias of `transition`.
|
|
7354
9108
|
*
|
|
7355
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition)
|
|
9109
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transition)
|
|
7356
9110
|
*/
|
|
7357
9111
|
webkitTransition: string;
|
|
7358
9112
|
/**
|
|
7359
9113
|
* @deprecated This is a legacy alias of `transitionDelay`.
|
|
7360
9114
|
*
|
|
7361
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-delay)
|
|
9115
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transition-delay)
|
|
7362
9116
|
*/
|
|
7363
9117
|
webkitTransitionDelay: string;
|
|
7364
9118
|
/**
|
|
7365
9119
|
* @deprecated This is a legacy alias of `transitionDuration`.
|
|
7366
9120
|
*
|
|
7367
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-duration)
|
|
9121
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transition-duration)
|
|
7368
9122
|
*/
|
|
7369
9123
|
webkitTransitionDuration: string;
|
|
7370
9124
|
/**
|
|
7371
9125
|
* @deprecated This is a legacy alias of `transitionProperty`.
|
|
7372
9126
|
*
|
|
7373
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-property)
|
|
9127
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transition-property)
|
|
7374
9128
|
*/
|
|
7375
9129
|
webkitTransitionProperty: string;
|
|
7376
9130
|
/**
|
|
7377
9131
|
* @deprecated This is a legacy alias of `transitionTimingFunction`.
|
|
7378
9132
|
*
|
|
7379
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-timing-function)
|
|
9133
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/transition-timing-function)
|
|
7380
9134
|
*/
|
|
7381
9135
|
webkitTransitionTimingFunction: string;
|
|
7382
9136
|
/**
|
|
7383
9137
|
* @deprecated This is a legacy alias of `userSelect`.
|
|
7384
9138
|
*
|
|
7385
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/user-select)
|
|
9139
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/user-select)
|
|
7386
9140
|
*/
|
|
7387
9141
|
webkitUserSelect: string;
|
|
7388
|
-
/**
|
|
9142
|
+
/**
|
|
9143
|
+
* The white-space CSS property sets how white space inside an element is handled.
|
|
9144
|
+
*
|
|
9145
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/white-space)
|
|
9146
|
+
*/
|
|
7389
9147
|
whiteSpace: string;
|
|
7390
|
-
/**
|
|
9148
|
+
/**
|
|
9149
|
+
* The white-space-collapse CSS property controls how white space inside an element is collapsed.
|
|
9150
|
+
*
|
|
9151
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/white-space-collapse)
|
|
9152
|
+
*/
|
|
7391
9153
|
whiteSpaceCollapse: string;
|
|
7392
|
-
/**
|
|
9154
|
+
/**
|
|
9155
|
+
* The **`widows`** CSS property sets the minimum number of lines in a block container that must be shown at the top of a page, region, or column.
|
|
9156
|
+
*
|
|
9157
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/widows)
|
|
9158
|
+
*/
|
|
7393
9159
|
widows: string;
|
|
7394
|
-
/**
|
|
9160
|
+
/**
|
|
9161
|
+
* The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if box-sizing is set to border-box, it sets the width of the border area.
|
|
9162
|
+
*
|
|
9163
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/width)
|
|
9164
|
+
*/
|
|
7395
9165
|
width: string;
|
|
7396
|
-
/**
|
|
9166
|
+
/**
|
|
9167
|
+
* The will-change CSS property hints to browsers how an element is expected to change. Browsers may set up optimizations before an element is actually changed. These kinds of optimizations can increase the responsiveness of a page by doing potentially expensive work before they are actually required.
|
|
9168
|
+
*
|
|
9169
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/will-change)
|
|
9170
|
+
*/
|
|
7397
9171
|
willChange: string;
|
|
7398
|
-
/**
|
|
9172
|
+
/**
|
|
9173
|
+
* The word-break CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box.
|
|
9174
|
+
*
|
|
9175
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-break)
|
|
9176
|
+
*/
|
|
7399
9177
|
wordBreak: string;
|
|
7400
|
-
/**
|
|
9178
|
+
/**
|
|
9179
|
+
* The word-spacing CSS property sets the length of space between words and between tags.
|
|
9180
|
+
*
|
|
9181
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
|
|
9182
|
+
*/
|
|
7401
9183
|
wordSpacing: string;
|
|
7402
9184
|
/**
|
|
7403
9185
|
* @deprecated
|
|
7404
9186
|
*
|
|
7405
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-wrap)
|
|
9187
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/overflow-wrap)
|
|
7406
9188
|
*/
|
|
7407
9189
|
wordWrap: string;
|
|
7408
|
-
/**
|
|
9190
|
+
/**
|
|
9191
|
+
* The writing-mode CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. When set for an entire document, it should be set on the root element (html element for HTML documents).
|
|
9192
|
+
*
|
|
9193
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/writing-mode)
|
|
9194
|
+
*/
|
|
7409
9195
|
writingMode: string;
|
|
7410
|
-
/**
|
|
9196
|
+
/**
|
|
9197
|
+
* The **`x`** CSS property defines the x-axis coordinate of the top left corner of the SVG <rect> shape, <image> image, <foreignObject> viewport or nested <svg> viewport relative to the nearest <svg> ancestor's user coordinate system. If present, it overrides the element's x attribute.
|
|
9198
|
+
*
|
|
9199
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/x)
|
|
9200
|
+
*/
|
|
7411
9201
|
x: string;
|
|
7412
|
-
/**
|
|
9202
|
+
/**
|
|
9203
|
+
* The **`y`** CSS property defines the y-axis coordinate of the top left corner of the SVG <rect> shape, <image> image, <foreignObject> viewport and nested <svg> viewport relative to the nearest <svg> ancestor's user coordinate system. If present, it overrides the element's y attribute.
|
|
9204
|
+
*
|
|
9205
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/y)
|
|
9206
|
+
*/
|
|
7413
9207
|
y: string;
|
|
7414
|
-
/**
|
|
9208
|
+
/**
|
|
9209
|
+
* The z-index CSS property sets the z-order of a positioned element and its descendants or flex and grid items. Overlapping elements with a larger z-index cover those with a smaller one.
|
|
9210
|
+
*
|
|
9211
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/z-index)
|
|
9212
|
+
*/
|
|
7415
9213
|
zIndex: string;
|
|
7416
|
-
/**
|
|
9214
|
+
/**
|
|
9215
|
+
* The **`zoom`** CSS property can be used to control the magnification level of an element. transform: scale() can be used as an alternative to this property.
|
|
9216
|
+
*
|
|
9217
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/zoom)
|
|
9218
|
+
*/
|
|
7417
9219
|
zoom: string;
|
|
7418
9220
|
}
|
|
7419
9221
|
|