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