From 1fe432186c78f7c75346d74571a05037d432f060 Mon Sep 17 00:00:00 2001 From: Steven Guerrero <42647963+Soremwar@users.noreply.github.com> Date: Mon, 13 Apr 2020 12:15:18 -0500 Subject: [PATCH] Refactor std/types (denoland/deno#4713) --- types/README.md | 31 +- types/prop-types/README.md | 15 + .../v15.7.2}/prop-types.d.ts | 1 - types/react-dom/README.md | 13 + types/{ => react-dom/v16.13.1}/react-dom.d.ts | 3 +- .../v16.13.1}/tests/react-dom_mock.js | 0 .../v16.13.1}/tests/react-dom_test.tsx | 4 +- .../v16.13.1}/tests/react_mock.js | 0 types/react/README.md | 12 + types/react/csstype.d.ts | 33062 ---------------- types/{ => react/v16.13.1}/react.d.ts | 7 +- types/react/{ => v16.13.1}/react_global.d.ts | 0 types/react/v16.13.1/tests/react_mock.js | 9 + .../{ => react/v16.13.1}/tests/react_test.tsx | 2 +- 14 files changed, 74 insertions(+), 33085 deletions(-) create mode 100644 types/prop-types/README.md rename types/{react => prop-types/v15.7.2}/prop-types.d.ts (98%) create mode 100644 types/react-dom/README.md rename types/{ => react-dom/v16.13.1}/react-dom.d.ts (98%) rename types/{ => react-dom/v16.13.1}/tests/react-dom_mock.js (100%) rename types/{ => react-dom/v16.13.1}/tests/react-dom_test.tsx (78%) rename types/{ => react-dom/v16.13.1}/tests/react_mock.js (100%) create mode 100644 types/react/README.md delete mode 100644 types/react/csstype.d.ts rename types/{ => react/v16.13.1}/react.d.ts (99%) rename types/react/{ => v16.13.1}/react_global.d.ts (100%) create mode 100644 types/react/v16.13.1/tests/react_mock.js rename types/{ => react/v16.13.1}/tests/react_test.tsx (86%) diff --git a/types/README.md b/types/README.md index 86fa40a2d4199..d28fd75cb2686 100644 --- a/types/README.md +++ b/types/README.md @@ -1,28 +1,33 @@ # std/types -Contains types for popular external packages that are compatible with Deno. +Contains type definitions for popular external packages that are compatible with +Deno. Because Deno only resolves fully qualified file names, type definitions that import other type definitions might not work with Deno. Also, when some type definition supply some global interfaces, they can conflict with Deno. The types located here have been validated to work with Deno. -The types that are currently available: - -- `react.d.ts` - For React 16. Sources known to work well for Deno: - - Pika CDN: `https://cdn.pika.dev/_/react/v16` - - JSPM: `https://dev.jspm.io/react@16` -- `react-dom.d.ts` - For ReactDOM 16. Sources known to work well for Deno: - - Pika CDN: `https://cdn.pika.dev/_/react-dom/v16` - - JSPM: `https://dev.jspm.io/react-dom@16` - There are several ways these type definitions can be referenced. Likely the "best" way is that the CDN provider provides a header of `X-TypeScript-Types` which points to the type definitions. We are working to have this available, but currently you would need to use the compiler hint of `@deno-types`. For example to import React: -```ts -// @deno-types="https://deno.land/std/types/react.d.ts" -import React from "https://cdn.pika.dev/_/react/v16"; +```typescript +// @deno-types="https://deno.land/std/types/react/@16.13.1/react.d.ts" +import React from "https://cdn.pika.dev/@pika/react@v16.13.1"; ``` + +or + +```typescript +// @deno-types="https://deno.land/std/types/react/@16.13.1/react.d.ts" +import React from "https://dev.jspm.io/react@16.13.1"; +``` + +#### Notes: + +JSPM transformation of most libraries export everything through the default +namespace, so most of the time it might not be suited to work along with this +definition library. diff --git a/types/prop-types/README.md b/types/prop-types/README.md new file mode 100644 index 0000000000000..cd2c055d554bd --- /dev/null +++ b/types/prop-types/README.md @@ -0,0 +1,15 @@ +Types for Facebook's Prop-Types library. + +[![npm version](https://img.shields.io/npm/v/prop-types.svg?style=flat)](https://www.npmjs.com/package/prop-types) + +You can use prop-types to document the intended types of properties passed to +functions and classes. This library is intended for his use alongside Facebook's +React library, but can be used freely for runtime type checking outside of the +React environment. + +### Usage Examples + +```typescript +// @deno-types="https://deno.land/std/types/prop-types/v15.7.2/prop-types.d.ts" +import PropTypes from "https://cdn.pika.dev/prop-types@15.7.2"; +``` diff --git a/types/react/prop-types.d.ts b/types/prop-types/v15.7.2/prop-types.d.ts similarity index 98% rename from types/react/prop-types.d.ts rename to types/prop-types/v15.7.2/prop-types.d.ts index 0bb0e47e908e4..7367d48418061 100644 --- a/types/react/prop-types.d.ts +++ b/types/prop-types/v15.7.2/prop-types.d.ts @@ -1,7 +1,6 @@ // These types are adapted from // https://github.com/DefinitelyTyped/DefinitelyTyped to work under Deno. // -// Type definitions for prop-types 15.7 // Project: https://github.com/reactjs/prop-types, https://facebook.github.io/react // Definitions by: DovydasNavickas // Ferdy Budhidharma diff --git a/types/react-dom/README.md b/types/react-dom/README.md new file mode 100644 index 0000000000000..acf5ee8cd15c9 --- /dev/null +++ b/types/react-dom/README.md @@ -0,0 +1,13 @@ +Types for Facebook's React DOM library. + +[![npm version](https://img.shields.io/npm/v/react-dom.svg?style=flat)](https://www.npmjs.com/package/react-dom) + +This package serves as the entry point to the DOM and server renderers for +Facebook's React library. + +### Usage Examples + +```typescript +// @deno-types="https://deno.land/std/types/react-dom/v16.13.1/react-dom.d.ts" +import ReactDOM from "https://cdn.pika.dev/@pika/react-dom@v16.13.1"; +``` diff --git a/types/react-dom.d.ts b/types/react-dom/v16.13.1/react-dom.d.ts similarity index 98% rename from types/react-dom.d.ts rename to types/react-dom/v16.13.1/react-dom.d.ts index 3be59411fb25b..4880970bd0974 100644 --- a/types/react-dom.d.ts +++ b/types/react-dom/v16.13.1/react-dom.d.ts @@ -1,7 +1,6 @@ // These types are adapted from // https://github.com/DefinitelyTyped/DefinitelyTyped to work under Deno. // -// Type definitions for React (react-dom) 16.9 // Project: http://facebook.github.io/react/ // Definitions by: Asana // AssureSign @@ -31,7 +30,7 @@ import { DOMElement, ReactNode, ReactPortal, -} from "./react.d.ts"; +} from "../../react/v16.13.1/react.d.ts"; export function findDOMNode( instance: ReactInstance | null | undefined diff --git a/types/tests/react-dom_mock.js b/types/react-dom/v16.13.1/tests/react-dom_mock.js similarity index 100% rename from types/tests/react-dom_mock.js rename to types/react-dom/v16.13.1/tests/react-dom_mock.js diff --git a/types/tests/react-dom_test.tsx b/types/react-dom/v16.13.1/tests/react-dom_test.tsx similarity index 78% rename from types/tests/react-dom_test.tsx rename to types/react-dom/v16.13.1/tests/react-dom_test.tsx index 738227b65c6c4..e754ad0dea466 100644 --- a/types/tests/react-dom_test.tsx +++ b/types/react-dom/v16.13.1/tests/react-dom_test.tsx @@ -1,11 +1,11 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -// @deno-types="../react.d.ts" +// @deno-types="../../../react/v16.13.1/react.d.ts" import React from "./react_mock.js"; // @deno-types="../react-dom.d.ts" import ReactDOM from "./react-dom_mock.js"; -import { assertEquals } from "../../testing/asserts.ts"; +import { assertEquals } from "../../../../testing/asserts.ts"; const { test } = Deno; diff --git a/types/tests/react_mock.js b/types/react-dom/v16.13.1/tests/react_mock.js similarity index 100% rename from types/tests/react_mock.js rename to types/react-dom/v16.13.1/tests/react_mock.js diff --git a/types/react/README.md b/types/react/README.md new file mode 100644 index 0000000000000..840ad1cc298ac --- /dev/null +++ b/types/react/README.md @@ -0,0 +1,12 @@ +Types for Facebook's React library. + +[![npm version](https://img.shields.io/npm/v/react.svg?style=flat)](https://www.npmjs.com/package/react) + +React is a JavaScript library for building user interfaces. + +### Usage Examples + +```typescript +// @deno-types="https://deno.land/std/types/react/v16.13.1/react.d.ts" +import React from "https://cdn.pika.dev/@pika/react@v16.13.1"; +``` diff --git a/types/react/csstype.d.ts b/types/react/csstype.d.ts deleted file mode 100644 index fe0c64b3ed1f3..0000000000000 --- a/types/react/csstype.d.ts +++ /dev/null @@ -1,33062 +0,0 @@ -// These types are adapted from -// https://github.com/DefinitelyTyped/DefinitelyTyped to work under Deno. -// -/* eslint-disable */ -export interface StandardLonghandProperties { - /** - * The CSS **`align-content`** property sets how the browser distributes space between and around content items along the cross-axis of a flexbox container, and the main-axis of a grid container. - * - * **Initial value**: `normal` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **29** | **28** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/align-content - */ - alignContent?: AlignContentProperty; - /** - * The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. The align-self property sets the alignment of an item within its containing block. In Flexbox it controls the alignment of items on the Cross Axis, in Grid Layout it controls the alignment of items on the Block Axis within their grid area. - * - * **Initial value**: `normal` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :----: | - * | **52** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 7 _-x-_ | | | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/align-items - */ - alignItems?: AlignItemsProperty; - /** - * The **`align-self`** CSS property aligns flex items of the current flex line overriding the `align-items` value. If any of the item's cross-axis margin is set to `auto`, then `align-self` is ignored. In Grid layout `align-self` aligns the item inside the grid area. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **36** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :----------: | - * | **57** | **52** | **10.1** | **16** | **10** _-x-_ | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/align-self - */ - alignSelf?: AlignSelfProperty; - /** - * The **`animation-delay`** CSS property sets when an animation starts. The animation can start later, immediately from its beginning, or immediately and partway through the animation. - * - * **Initial value**: `0s` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **43** | **16** | **9** | **12** | **10** | - * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/animation-delay - */ - animationDelay?: GlobalsString; - /** - * The **`animation-direction`** CSS property sets whether an animation should play forwards, backwards, or alternating back and forth. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **43** | **16** | **9** | **12** | **10** | - * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/animation-direction - */ - animationDirection?: AnimationDirectionProperty; - /** - * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle. - * - * **Initial value**: `0s` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **43** | **16** | **9** | **12** | **10** | - * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/animation-duration - */ - animationDuration?: GlobalsString; - /** - * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **43** | **16** | **9** | **12** | **10** | - * | 3 _-x-_ | 5 _-x-_ | 5 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode - */ - animationFillMode?: AnimationFillModeProperty; - /** - * The **`animation-iteration-count`** CSS property sets the number of times an animation cycle should be played before stopping. - * - * **Initial value**: `1` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **43** | **16** | **9** | **12** | **10** | - * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count - */ - animationIterationCount?: AnimationIterationCountProperty; - /** - * The **`animation-name`** CSS property sets one or more animations to apply to an element. Each name is an `@keyframes` at-rule that sets the property values for the animation sequence. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **43** | **16** | **9** | **12** | **10** | - * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/animation-name - */ - animationName?: AnimationNameProperty; - /** - * The **`animation-play-state`** CSS property sets whether an animation is running or paused. - * - * **Initial value**: `running` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **43** | **16** | **9** | **12** | **10** | - * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/animation-play-state - */ - animationPlayState?: AnimationPlayStateProperty; - /** - * The `**animation-timing-function**` CSS property sets how an animation progresses through the duration of each cycle. - * - * **Initial value**: `ease` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **43** | **16** | **9** | **12** | **10** | - * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/animation-timing-function - */ - animationTimingFunction?: AnimationTimingFunctionProperty; - /** - * The **`-moz-appearance`** CSS property is used in Gecko (Firefox) to display an element using platform-native styling based on the operating system's theme. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :---------: | :---------: | :----------: | :-: | - * | **1** _-x-_ | **1** _-x-_ | **3** _-x-_ | **12** _-x-_ | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/appearance - */ - appearance?: AppearanceProperty; - /** - * The **`aspect-ratio`**   CSS property sets a _**preferred aspect ratio**_ for the box, which will be used in the calculation of auto sizes and some other layout functions. - * - * **Initial value**: `auto` - */ - aspectRatio?: AspectRatioProperty; - /** - * The **`backdrop-filter`** CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything _behind_ the element, to see the effect you must make the element or its background at least partially transparent. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :---------: | :----: | :-: | - * | **76** | n/a | **9** _-x-_ | **17** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/backdrop-filter - */ - backdropFilter?: BackdropFilterProperty; - /** - * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user. - * - * **Initial value**: `visible` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :------: | :-----------: | :----: | :----: | - * | **36** | **16** | **5.1** _-x-_ | **12** | **10** | - * | 12 _-x-_ | 10 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/backface-visibility - */ - backfaceVisibility?: BackfaceVisibilityProperty; - /** - * The **`background-attachment`** CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block. - * - * **Initial value**: `scroll` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/background-attachment - */ - backgroundAttachment?: BackgroundAttachmentProperty; - /** - * 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. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **35** | **30** | **8** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/background-blend-mode - */ - backgroundBlendMode?: BackgroundBlendModeProperty; - /** - * The **`background-clip`** CSS property sets whether an element's background `` or `` extends underneath its border. - * - * **Initial value**: `border-box` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :---------: | :----: | :---: | - * | **1** | **4** | **3** _-x-_ | **12** | **9** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/background-clip - */ - backgroundClip?: BackgroundClipProperty; - /** - * The **`background-color`** CSS property sets the background color of an element. - * - * **Initial value**: `transparent` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/background-color - */ - backgroundColor?: BackgroundColorProperty; - /** - * The **`background-image`** CSS property sets one or more background images on an element. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/background-image - */ - backgroundImage?: BackgroundImageProperty; - /** - * The **`background-origin`** CSS property sets the _background positioning area_. In other words, it sets the origin position of an image set with the `background-image` property. - * - * **Initial value**: `padding-box` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **4** | **3** | **12** | **9** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/background-origin - */ - backgroundOrigin?: BackgroundOriginProperty; - /** - * 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`. - * - * **Initial value**: `0% 0%` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/background-position - */ - backgroundPosition?: BackgroundPositionProperty; - /** - * 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`. - * - * **Initial value**: `left` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **49** | **1** | **12** | **6** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/background-position-x - */ - backgroundPositionX?: BackgroundPositionXProperty; - /** - * The **`background-position-y`** CSS property sets the initial vertical position, relative to the background position layer defined by `background-origin`, for each defined background image. - * - * **Initial value**: `top` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **49** | **1** | **12** | **6** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/background-position-y - */ - backgroundPositionY?: BackgroundPositionYProperty; - /** - * 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. - * - * **Initial value**: `repeat` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/background-repeat - */ - backgroundRepeat?: BackgroundRepeatProperty; - /** - * 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. - * - * **Initial value**: `auto auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **3** | **4** | **4.1** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/background-size - */ - backgroundSize?: BackgroundSizeProperty; - /** **Initial value**: `clip` */ - blockOverflow?: BlockOverflowProperty; - /** - * The **`block-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/block-size - */ - blockSize?: BlockSizeProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-color - */ - borderBlockColor?: BorderBlockColorProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-color - */ - borderBlockEndColor?: BorderBlockEndColorProperty; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-style - */ - borderBlockEndStyle?: BorderBlockEndStyleProperty; - /** - * 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`. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-width - */ - borderBlockEndWidth?: BorderBlockEndWidthProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-color - */ - borderBlockStartColor?: BorderBlockStartColorProperty; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-style - */ - borderBlockStartStyle?: BorderBlockStartStyleProperty; - /** - * 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`. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-width - */ - borderBlockStartWidth?: BorderBlockStartWidthProperty; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-style - */ - borderBlockStyle?: BorderBlockStyleProperty; - /** - * 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`. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-width - */ - borderBlockWidth?: BorderBlockWidthProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-color - */ - borderBottomColor?: BorderBottomColorProperty; - /** - * The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **4** | **4** | **5** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius - */ - borderBottomLeftRadius?: BorderBottomLeftRadiusProperty; - /** - * The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **4** | **4** | **5** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius - */ - borderBottomRightRadius?: BorderBottomRightRadiusProperty; - /** - * The **`border-bottom-style`** CSS property sets the line style of an element's bottom `border`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-style - */ - borderBottomStyle?: BorderBottomStyleProperty; - /** - * The **`border-bottom-width`** CSS property sets the width of the bottom border of a box. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-width - */ - borderBottomWidth?: BorderBottomWidthProperty; - /** - * The **`border-collapse`** CSS property sets whether cells inside a `` have shared or separate borders. - * - * **Initial value**: `separate` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1** | **1.2** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-collapse - */ - borderCollapse?: BorderCollapseProperty; - /** - * 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 on the element's `writing-mode`, `direction`, and `text-orientation`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius - */ - borderEndEndRadius?: BorderEndEndRadiusProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius - */ - borderEndStartRadius?: BorderEndStartRadiusProperty; - /** - * The **`border-image-outset`** CSS property sets the distance by which an element's border image is set out from its border box. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-outset - */ - borderImageOutset?: BorderImageOutsetProperty; - /** - * The **`border-image-repeat`** CSS property defines how the edge regions of a source image are adjusted to fit the dimensions of an element's border image. - * - * **Initial value**: `stretch` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-repeat - */ - borderImageRepeat?: BorderImageRepeatProperty; - /** - * 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. - * - * **Initial value**: `100%` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice - */ - borderImageSlice?: BorderImageSliceProperty; - /** - * The **`border-image-source`** CSS property sets the source image used to create an element's border image. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-source - */ - borderImageSource?: BorderImageSourceProperty; - /** - * The **`border-image-width`** CSS property sets the width of an element's border image. - * - * **Initial value**: `1` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **13** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-width - */ - borderImageWidth?: BorderImageWidthProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color - */ - borderInlineColor?: BorderInlineColorProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-end-color)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color - */ - borderInlineEndColor?: BorderInlineEndColorProperty; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-end-style)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style - */ - borderInlineEndStyle?: BorderInlineEndStyleProperty; - /** - * 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`. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-end-width)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width - */ - borderInlineEndWidth?: BorderInlineEndWidthProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :---------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-start-color)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color - */ - borderInlineStartColor?: BorderInlineStartColorProperty; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :---------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-start-style)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style - */ - borderInlineStartStyle?: BorderInlineStartStyleProperty; - /** - * 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`. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width - */ - borderInlineStartWidth?: BorderInlineStartWidthProperty; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style - */ - borderInlineStyle?: BorderInlineStyleProperty; - /** - * 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`. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width - */ - borderInlineWidth?: BorderInlineWidthProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left-color - */ - borderLeftColor?: BorderLeftColorProperty; - /** - * The **`border-left-style`** CSS property sets the line style of an element's left `border`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left-style - */ - borderLeftStyle?: BorderLeftStyleProperty; - /** - * The **`border-left-width`** CSS property sets the width of the left border of an element. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left-width - */ - borderLeftWidth?: BorderLeftWidthProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right-color - */ - borderRightColor?: BorderRightColorProperty; - /** - * The **`border-right-style`** CSS property sets the line style of an element's right `border`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right-style - */ - borderRightStyle?: BorderRightStyleProperty; - /** - * The **`border-right-width`** CSS property sets the width of the right border of an element. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right-width - */ - borderRightWidth?: BorderRightWidthProperty; - /** - * The **`border-spacing`** CSS property sets the distance between the borders of adjacent `
` cells. This property applies only when `border-collapse` is `separate`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-spacing - */ - borderSpacing?: BorderSpacingProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius - */ - borderStartEndRadius?: BorderStartEndRadiusProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius - */ - borderStartStartRadius?: BorderStartStartRadiusProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-color - */ - borderTopColor?: BorderTopColorProperty; - /** - * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **4** | **4** | **5** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius - */ - borderTopLeftRadius?: BorderTopLeftRadiusProperty; - /** - * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **4** | **4** | **5** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius - */ - borderTopRightRadius?: BorderTopRightRadiusProperty; - /** - * The **`border-top-style`** CSS property sets the line style of an element's top `border`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-style - */ - borderTopStyle?: BorderTopStyleProperty; - /** - * The **`border-top-width`** CSS property sets the width of the top border of an element. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-width - */ - borderTopWidth?: BorderTopWidthProperty; - /** - * The **`bottom`** CSS property participates in specifying the vertical position of a _positioned element_. It has no effect on non-positioned elements. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/bottom - */ - bottom?: BottomProperty; - /** - * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages. - * - * **Initial value**: `slice` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------: | :-----: | :-----: | :--: | :-: | - * | **22** _-x-_ | **32** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/box-decoration-break - */ - boxDecorationBreak?: BoxDecorationBreakProperty; - /** - * 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 radii, and color. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **10** | **4** | **5.1** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/box-shadow - */ - boxShadow?: BoxShadowProperty; - /** - * The **`box-sizing`** CSS property defines how the user agent should calculate the total width and height of an element. - * - * **Initial value**: `content-box` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **10** | **29** | **5.1** | **12** | **8** | - * | 1 _-x-_ | 1 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/box-sizing - */ - boxSizing?: BoxSizingProperty; - /** - * The **`break-after`** CSS property defines how page, column, or region breaks should behave after a generated box. If there is no generated box, the property is ignored. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | No | No | **12** | **10** | - * - * --- - * - * _Supported in Paged Media_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in CSS Regions_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/break-after - */ - breakAfter?: BreakAfterProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | No | **12** | **10** | - * - * --- - * - * _Supported in Paged Media_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in CSS Regions_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/break-before - */ - breakBefore?: BreakBeforeProperty; - /** - * The **`break-inside`** CSS property defines how page, column, or region breaks should behave inside a generated box. If there is no generated box, the property is ignored. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in Paged Media_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in CSS Regions_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/break-inside - */ - breakInside?: BreakInsideProperty; - /** - * The **`caption-side`** CSS property puts the content of a table's `
` on the specified side. The values are relative to the `writing-mode` of the table. - * - * **Initial value**: `top` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/caption-side - */ - captionSide?: CaptionSideProperty; - /** - * The **`caret-color`** CSS property sets the color of the insertion caret, the visible marker where the next character typed will be inserted. The caret appears in elements such as `` or those with the `contenteditable` attribute. The caret is typically a thin vertical line that flashes to help make it more noticeable. By default, it is black, but its color can be altered with this property. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **53** | **11.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/caret-color - */ - caretColor?: CaretColorProperty; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/clear - */ - clear?: ClearProperty; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **55** | **3.5** | **9.1** | **12** | **10** | - * | 23 _-x-_ | | 6.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/clip-path - */ - clipPath?: ClipPathProperty; - /** - * 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`. - * - * **Initial value**: Varies from one browser to another - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/color - */ - color?: ColorProperty; - /** - * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device. - * - * **Initial value**: `economy` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------: | :-----: | :---------: | :--: | :-: | - * | **49** _-x-_ | **48** | **6** _-x-_ | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/color-adjust - */ - colorAdjust?: ColorAdjustProperty; - /** - * The **`column-count`** CSS property breaks an element's content into the specified number of columns. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 1.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-count - */ - columnCount?: ColumnCountProperty; - /** - * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns. - * - * **Initial value**: `balance` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | | 13 _-x-_ | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-fill - */ - columnFill?: ColumnFillProperty; - /** - * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns. - * - * **Initial value**: `normal` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :---------: | :--: | :-: | - * | No | **63** | **3** _-x-_ | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-------------: | :-------------: | :-------------------: | :----: | :-: | - * | **66** | **61** | **10.1** _(grid-gap)_ | **16** | No | - * | 57 _(grid-gap)_ | 52 _(grid-gap)_ | | | | - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **10** | **12** | **10** | - * | 1 _-x-_ | 1.5 _-x-_ | 3 _-x-_ | | | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-gap - */ - columnGap?: ColumnGapProperty; - /** - * The **`column-rule-color`** CSS property sets the color of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-color - */ - columnRuleColor?: ColumnRuleColorProperty; - /** - * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-style - */ - columnRuleStyle?: ColumnRuleStyleProperty; - /** - * The **`column-rule-width`** CSS property sets the width of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-width - */ - columnRuleWidth?: ColumnRuleWidthProperty; - /** - * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **50** | **71** | **9** | **12** | **10** | - * | 6 _-x-_ | | 5.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-span - */ - columnSpan?: ColumnSpanProperty; - /** - * The **`column-width`** CSS property specifies 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **50** | **9** | **12** | **10** | - * | 1 _-x-_ | 1.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-width - */ - columnWidth?: ColumnWidthProperty; - /** - * The **`contain`** CSS property allows an author to indicate that an element and its contents are, as much as possible, _independent_ of the rest of the document tree. This allows the browser to recalculate layout, style, paint, size, or any combination of them for a limited area of the DOM and not the entire page. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **52** | **69** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/contain - */ - contain?: ContainProperty; - /** - * The **`content`** CSS property replaces an element with a generated value. Objects inserted using the `content` property are _anonymous replaced elements._ - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/content - */ - content?: ContentProperty; - /** - * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **2** | **1** | **3** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/counter-increment - */ - counterIncrement?: CounterIncrementProperty; - /** - * The **`counter-reset`** CSS property resets a CSS counter to a given value. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **2** | **1** | **3** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/counter-reset - */ - counterReset?: CounterResetProperty; - /** - * The **`counter-set`** CSS property sets a CSS counter to a given value. It manipulates the value of existing counters, and will only create new counters if there isn't already a counter of the given name on the element. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **68** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/counter-set - */ - counterSet?: CounterSetProperty; - /** - * The **`cursor`** CSS property sets mouse cursor to display when the mouse pointer is over an element. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1** | **1.2** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/cursor - */ - cursor?: CursorProperty; - /** - * The **`direction`** CSS property sets the direction of text, table columns, and horizontal overflow. Use `rtl` for languages written from right to left (like Hebrew or Arabic), and `ltr` for those written from left to right (like English and most other languages). - * - * **Initial value**: `ltr` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **2** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/direction - */ - direction?: DirectionProperty; - /** - * The **`display`** CSS property defines the _display type_ of an element, which consists of the two basic qualities of how an element generates boxes — the **outer display type** defining how the box participates in flow layout, and the **inner display type** defining how the children of the box are laid out. - * - * **Initial value**: `inline` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/display - */ - display?: DisplayProperty; - /** - * The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `` cells that have no visible content. - * - * **Initial value**: `show` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1** | **1.2** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/empty-cells - */ - emptyCells?: EmptyCellsProperty; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :-: | - * | **53** | **35** | **9.1** | **12** | No | - * | 18 _-x-_ | | 6 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/filter - */ - filter?: FilterProperty; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :----: | - * | **29** | **22** | **9** | **12** | **11** | - * | 21 _-x-_ | | 7 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-basis - */ - flexBasis?: FlexBasisProperty; - /** - * 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). - * - * **Initial value**: `row` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :------: | - * | **29** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 7 _-x-_ | | 10 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-direction - */ - flexDirection?: FlexDirectionProperty; - /** - * The **`flex-grow`** CSS property sets how much of the available space in the flex container should be assigned to that item (the flex grow factor). If all sibling items have the same flex grow factor, then all items will receive the same share of available space, otherwise it is distributed according to the ratio defined by the different flex grow factors. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----------------------: | - * | **29** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | 10 _(-ms-flex-positive)_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-grow - */ - flexGrow?: GlobalsNumber; - /** - * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of flex items is larger than the flex container, items shrink to fit according to `flex-shrink`. - * - * **Initial value**: `1` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :----: | - * | **29** | **20** | **9** | **12** | **10** | - * | 21 _-x-_ | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-shrink - */ - flexShrink?: GlobalsNumber; - /** - * 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. - * - * **Initial value**: `nowrap` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **29** | **28** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-wrap - */ - flexWrap?: FlexWrapProperty; - /** - * The **`float`** CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning). - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/float - */ - float?: FloatProperty; - /** - * 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. - * - * **Initial value**: depends on user agent - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-family - */ - fontFamily?: FontFamilyProperty; - /** - * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :------: | :-----: | :----: | :----: | - * | **48** | **34** | **9.1** | **15** | **10** | - * | 16 _-x-_ | 15 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-feature-settings - */ - fontFeatureSettings?: FontFeatureSettingsProperty; - /** - * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------: | :-----: | :----: | :--: | :-: | - * | **32** _-x-_ | **32** | **7** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-kerning - */ - fontKerning?: FontKerningProperty; - /** - * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **34** | No | No | No | - * | | 4 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-language-override - */ - fontLanguageOverride?: FontLanguageOverrideProperty; - /** - * The **`font-optical-sizing`** CSS property sets whether text rendering is optimized for viewing at different sizes. This only works for fonts that have an optical size variation axis. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | **79** | **62** | **11** | **17** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing - */ - fontOpticalSizing?: FontOpticalSizingProperty; - /** - * The **`font-size`** CSS property sets the size of the font. This property is also used to compute the size of `em`, `ex`, and other relative `` units. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-size - */ - fontSize?: FontSizeProperty; - /** - * The **`font-size-adjust`** CSS property sets how the font size should be chosen based on the height of lowercase rather than capital letters. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **54** | **1** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-size-adjust - */ - fontSizeAdjust?: FontSizeAdjustProperty; - /** - * The **`font-stretch`** CSS property selects a normal, condensed, or expanded face from a font. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **60** | **9** | **11** | **12** | **9** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-stretch - */ - fontStretch?: FontStretchProperty; - /** - * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-style - */ - fontStyle?: FontStyleProperty; - /** - * The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser. - * - * **Initial value**: `weight style` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **34** | **9** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis - */ - fontSynthesis?: FontSynthesisProperty; - /** - * The **font-variant** CSS property is a shorthand for the longhand properties `font-variant-caps`, `font-variant-numeric`, `font-variant-alternates`, `font-variant-ligatures`, and `font-variant-east-asian`. You can also set the CSS Level 2 (Revision 1) values of `font-variant`, (that is, `normal` or `small-caps`), by using the `font` shorthand. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant - */ - fontVariant?: FontVariantProperty; - /** - * The **`font-variant-caps`** CSS property controls the use of alternate glyphs for capital letters. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **52** | **34** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-caps - */ - fontVariantCaps?: FontVariantCapsProperty; - /** - * The **`font-variant-east-asian`** CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **63** | **34** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian - */ - fontVariantEastAsian?: FontVariantEastAsianProperty; - /** - * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :--: | :-: | - * | **34** | **34** | **9.1** | No | No | - * | 31 _-x-_ | | 7 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures - */ - fontVariantLigatures?: FontVariantLigaturesProperty; - /** - * The **`font-variant-numeric`** CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **52** | **34** | **9.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric - */ - fontVariantNumeric?: FontVariantNumericProperty; - /** - * The **`font-variant-position`** CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **34** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position - */ - fontVariantPosition?: FontVariantPositionProperty; - /** - * The **`font-variation-settings`** CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | **62** | **62** | **11** | **17** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variation-settings - */ - fontVariationSettings?: FontVariationSettingsProperty; - /** - * The **`font-weight`** CSS property specifies the weight (or boldness) of the font. The font weights available to you will depend on the `font-family` you are using. Some fonts are only available in `normal` and `bold`. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **2** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-weight - */ - fontWeight?: FontWeightProperty; - /** - * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :---------------------: | :-------------------------: | - * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-columns)_ | - * | | | | 12 _(-ms-grid-columns)_ | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns - */ - gridAutoColumns?: GridAutoColumnsProperty; - /** - * The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid. - * - * **Initial value**: `row` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow - */ - gridAutoFlow?: GridAutoFlowProperty; - /** - * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :------------------: | :----------------------: | - * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-rows)_ | - * | | | | 12 _(-ms-grid-rows)_ | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows - */ - gridAutoRows?: GridAutoRowsProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-end - */ - gridColumnEnd?: GridColumnEndProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-start - */ - gridColumnStart?: GridColumnStartProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-end - */ - gridRowEnd?: GridRowEndProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-start - */ - gridRowStart?: GridRowStartProperty; - /** - * The **`grid-template-areas`** CSS property specifies named grid areas. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-areas - */ - gridTemplateAreas?: GridTemplateAreasProperty; - /** - * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-columns - */ - gridTemplateColumns?: GridTemplateColumnsProperty; - /** - * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-rows - */ - gridTemplateRows?: GridTemplateRowsProperty; - /** - * The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | **10** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/hanging-punctuation - */ - hangingPunctuation?: HangingPunctuationProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/height - */ - height?: HeightProperty; - /** - * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. You can prevent hyphenation entirely, use hyphenation in manually-specified points within the text, or let the browser automatically insert hyphens where appropriate. - * - * **Initial value**: `manual` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----------: | :----------: | :----------: | - * | **55** | **43** | **5.1** _-x-_ | **12** _-x-_ | **10** _-x-_ | - * | 13 _-x-_ | 6 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/hyphens - */ - hyphens?: HyphensProperty; - /** - * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image. It should _not_ be used for any other orientation adjustments; instead, the `transform` property should be used with the `rotate` ``. - * - * **Initial value**: `0deg` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **26** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/image-orientation - */ - imageOrientation?: ImageOrientationProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **13** | **3.6** | **6** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/image-rendering - */ - imageRendering?: ImageRenderingProperty; - /** **Initial value**: `1dppx` */ - imageResolution?: ImageResolutionProperty; - /** - * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | **9** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/initial-letter - */ - initialLetter?: InitialLetterProperty; - /** - * The **`inline-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inline-size - */ - inlineSize?: InlineSizeProperty; - /** - * The **`inset`** CSS property defines the logical block and inline start and end offsets of an element, which map 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset - */ - inset?: InsetProperty; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-block - */ - insetBlock?: InsetBlockProperty; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end - */ - insetBlockEnd?: InsetBlockEndProperty; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start - */ - insetBlockStart?: InsetBlockStartProperty; - /** - * The **`inset-inline`** 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline - */ - insetInline?: InsetInlineProperty; - /** - * The **`inset-inline-end`** CSS property defines the logical inline end inset 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end - */ - insetInlineEnd?: InsetInlineEndProperty; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start - */ - insetInlineStart?: InsetInlineStartProperty; - /** - * The **`isolation`** CSS property determines whether an element must create a new stacking context. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **41** | **36** | **8** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/isolation - */ - isolation?: IsolationProperty; - /** - * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container. - * - * **Initial value**: `normal` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **52** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/justify-content - */ - justifyContent?: JustifyContentProperty; - /** - * 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. - * - * **Initial value**: `legacy` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **52** | **20** | **9** | **12** | **11** | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **45** | **10.1** | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/justify-items - */ - justifyItems?: JustifyItemsProperty; - /** - * The CSS **`justify-self`** property set the way a box is justified inside its alignment container along the appropriate axis. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **45** | **10.1** | **16** | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **45** | **10.1** | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/justify-self - */ - justifySelf?: JustifySelfProperty; - /** - * The **`left`** CSS property participates in specifying the horizontal position of a _positioned element_. It has no effect on non-positioned elements. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/left - */ - left?: LeftProperty; - /** - * The **`letter-spacing`** CSS property sets the spacing behavior between text characters. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/letter-spacing - */ - letterSpacing?: LetterSpacingProperty; - /** - * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :---------: | :----: | :-----: | - * | **58** | **69** | **3** _-x-_ | **14** | **5.5** | - * | 1 _-x-_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/line-break - */ - lineBreak?: LineBreakProperty; - /** - * The **`line-height`** CSS property sets the amount of space used for lines, such as in text. On block-level elements, it specifies the minimum height of line boxes within the element. On non-replaced inline elements, it specifies the height that is used to calculate line box height. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/line-height - */ - lineHeight?: LineHeightProperty; - /** - * The **`line-height-step`** CSS property sets the step unit for line box heights. When the property is set, line box heights are rounded up to the closest multiple of the unit. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | No | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/line-height-step - */ - lineHeightStep?: LineHeightStepProperty; - /** - * The **`list-style-image`** CSS property sets an image to be used as the list item marker. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style-image - */ - listStyleImage?: ListStyleImageProperty; - /** - * The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item. - * - * **Initial value**: `outside` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style-position - */ - listStylePosition?: ListStylePositionProperty; - /** - * The **`list-style-type`** CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element. - * - * **Initial value**: `disc` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style-type - */ - listStyleType?: ListStyleTypeProperty; - /** - * The **`margin-block`** CSS 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-block - */ - marginBlock?: MarginBlockProperty; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end - */ - marginBlockEnd?: MarginBlockEndProperty; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start - */ - marginBlockStart?: MarginBlockStartProperty; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom - */ - marginBottom?: MarginBottomProperty; - /** - * The **`margin-inline`** CSS property defines 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline - */ - marginInline?: MarginInlineProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------------------: | :-------------------: | :----------------------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | 2 _(-webkit-margin-end)_ | 3 _(-moz-margin-end)_ | 3 _(-webkit-margin-end)_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end - */ - marginInlineEnd?: MarginInlineEndProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------------------------: | :---------------------: | :------------------------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | 2 _(-webkit-margin-start)_ | 3 _(-moz-margin-start)_ | 3 _(-webkit-margin-start)_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start - */ - marginInlineStart?: MarginInlineStartProperty; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-left - */ - marginLeft?: MarginLeftProperty; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-right - */ - marginRight?: MarginRightProperty; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-top - */ - marginTop?: MarginTopProperty; - /** - * The **`mask-border-mode`** CSS property specifies the blending mode used in a mask border. - * - * **Initial value**: `alpha` - */ - maskBorderMode?: MaskBorderModeProperty; - /** - * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box. - * - * **Initial value**: `0` - */ - maskBorderOutset?: MaskBorderOutsetProperty; - /** - * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border. - * - * **Initial value**: `stretch` - */ - maskBorderRepeat?: MaskBorderRepeatProperty; - /** - * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border. - * - * **Initial value**: `0` - */ - maskBorderSlice?: MaskBorderSliceProperty; - /** - * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border. - * - * **Initial value**: `none` - */ - maskBorderSource?: MaskBorderSourceProperty; - /** - * The **`mask-border-width`** CSS property sets the width of an element's mask border. - * - * **Initial value**: `auto` - */ - maskBorderWidth?: MaskBorderWidthProperty; - /** - * 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. - * - * **Initial value**: `border-box` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :--: | :-: | - * | **1** _-x-_ | **53** | **4** _-x-_ | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-clip - */ - maskClip?: MaskClipProperty; - /** - * The **`mask-composite`** CSS property represents a compositing operation used on the current mask layer with the mask layers below it. - * - * **Initial value**: `add` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | No | **53** | No | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-composite - */ - maskComposite?: MaskCompositeProperty; - /** - * The **`mask-image`** CSS property sets the image that is used as mask layer for an element. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :----: | :-: | - * | **1** _-x-_ | **53** | **4** _-x-_ | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-image - */ - maskImage?: MaskImageProperty; - /** - * The **`mask-mode`** CSS property sets whether the mask reference defined by `mask-image` is treated as a luminance or alpha mask. - * - * **Initial value**: `match-source` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **53** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-mode - */ - maskMode?: MaskModeProperty; - /** - * The **`mask-origin`** CSS property sets the origin of a mask. - * - * **Initial value**: `border-box` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :--: | :-: | - * | **1** _-x-_ | **53** | **4** _-x-_ | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-origin - */ - maskOrigin?: MaskOriginProperty; - /** - * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image. - * - * **Initial value**: `center` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :-----------: | :----: | :-: | - * | **1** _-x-_ | **53** | **3.2** _-x-_ | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-position - */ - maskPosition?: MaskPositionProperty; - /** - * 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. - * - * **Initial value**: `no-repeat` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :-----------: | :----: | :-: | - * | **1** _-x-_ | **53** | **3.2** _-x-_ | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-repeat - */ - maskRepeat?: MaskRepeatProperty; - /** - * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :----: | :-: | - * | **4** _-x-_ | **53** | **4** _-x-_ | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-size - */ - maskSize?: MaskSizeProperty; - /** - * The **`mask-type`** CSS property sets whether an SVG `` element is used as a _luminance_ or an _alpha_ mask. It applies to the `` element itself. - * - * **Initial value**: `luminance` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **24** | **35** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-type - */ - maskType?: MaskTypeProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-block-size - */ - maxBlockSize?: MaxBlockSizeProperty; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **18** | **1** | **1.3** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-height - */ - maxHeight?: MaxHeightProperty; - /** - * 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 the `max-width` or the `max-height` property depending on the value defined for `writing-mode`. If the writing mode is vertically oriented, the value of `max-inline-size` relates to the maximal height of the element, otherwise it relates to the maximal width of the element. It relates to `max-block-size`, which defines the other dimension of the element. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :--------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * | | | 10.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-inline-size - */ - maxInlineSize?: MaxInlineSizeProperty; - /** **Initial value**: `none` */ - maxLines?: MaxLinesProperty; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-width - */ - maxWidth?: MaxWidthProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-block-size - */ - minBlockSize?: MinBlockSizeProperty; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **3** | **1.3** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-height - */ - minHeight?: MinHeightProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-inline-size - */ - minInlineSize?: MinInlineSizeProperty; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-width - */ - minWidth?: MinWidthProperty; - /** - * 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. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **41** | **32** | **8** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode - */ - mixBlendMode?: MixBlendModeProperty; - /** - * The **`offset-distance`** CSS property specifies a position along an `offset-path`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :--------------------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion-distance)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance - */ - motionDistance?: OffsetDistanceProperty; - /** - * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion-path)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset-path - */ - motionPath?: OffsetPathProperty; - /** - * The **`offset-rotate`** CSS property defines the direction of the element while positioning along the offset path. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :--------------------: | :-----: | :----: | :--: | :-: | - * | **56** | n/a | No | No | No | - * | 46 _(motion-rotation)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate - */ - motionRotation?: OffsetRotateProperty; - /** - * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `` or `
` cells, rows, and columns. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **14** | **1** | **1** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/table-layout - */ - tableLayout?: TableLayoutProperty; - /** - * The **`text-align`** CSS property sets the horizontal alignment of an inline or table-cell box. This means it works like `vertical-align` but in the horizontal direction. - * - * **Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-align - */ - textAlign?: TextAlignProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **47** | **49** | No | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-align-last - */ - textAlignLast?: TextAlignLastProperty; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------------------------: | :-----: | :------------------------------: | :------------------------------------: | :------------------------------------: | - * | **48** | **48** | **5.1** _(-webkit-text-combine)_ | **12** _(-ms-text-combine-horizontal)_ | **11** _(-ms-text-combine-horizontal)_ | - * | 9 _(-webkit-text-combine)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-combine-upright - */ - textCombineUpright?: TextCombineUprightProperty; - /** - * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **36** | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-color - */ - textDecorationColor?: TextDecorationColorProperty; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **36** | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-line - */ - textDecorationLine?: TextDecorationLineProperty; - /** - * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors. - * - * **Initial value**: `objects` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | 57-64 | No | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip - */ - textDecorationSkip?: TextDecorationSkipProperty; - /** - * The **`text-decoration-skip-ink`** CSS property specifies how overlines and underlines are drawn when they pass over glyph ascenders and descenders. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **64** | **70** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink - */ - textDecorationSkipInk?: TextDecorationSkipInkProperty; - /** - * 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`. - * - * **Initial value**: `solid` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **36** | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-style - */ - textDecorationStyle?: TextDecorationStyleProperty; - /** - * The **`text-decoration-thickness`** CSS property sets the thickness, or width, of the decoration line that is used on text in an element, such as a line-through, underline, or overline. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | No | **70** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness - */ - textDecorationThickness?: TextDecorationThicknessProperty; - /** - * The **`text-decoration-thickness`** CSS property sets the thickness, or width, of the decoration line that is used on text in an element, such as a line-through, underline, or overline. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | No | **70** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness - */ - textDecorationWidth?: TextDecorationThicknessProperty; - /** - * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color - */ - textEmphasisColor?: TextEmphasisColorProperty; - /** - * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased. - * - * **Initial value**: `over right` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position - */ - textEmphasisPosition?: GlobalsString; - /** - * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style - */ - textEmphasisStyle?: TextEmphasisStyleProperty; - /** - * The **`text-indent`** CSS property sets the length of empty space (indentation) that is put before lines of text in a block. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-indent - */ - textIndent?: TextIndentProperty; - /** - * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | n/a | **55** | No | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-justify - */ - textJustify?: TextJustifyProperty; - /** - * 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. - * - * **Initial value**: `mixed` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----------: | :--: | :-: | - * | **48** | **41** | **5.1** _-x-_ | No | No | - * | 11 _-x-_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-orientation - */ - textOrientation?: TextOrientationProperty; - /** - * 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. - * - * **Initial value**: `clip` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **7** | **1.3** | **12** | **6** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-overflow - */ - textOverflow?: TextOverflowProperty; - /** - * The **`text-rendering`** CSS property provides information to the rendering engine about what to optimize for when rendering text. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **4** | **1** | **5** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-rendering - */ - textRendering?: TextRenderingProperty; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :----: | - * | **2** | **3.5** | **1.1** | **12** | **10** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-shadow - */ - textShadow?: TextShadowProperty; - /** - * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property. - * - * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable). - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----------: | :-: | - * | **54** | No | No | **12** _-x-_ | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-size-adjust - */ - textSizeAdjust?: TextSizeAdjustProperty; - /** - * 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 - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-transform - */ - textTransform?: TextTransformProperty; - /** - * The **`text-underline-offset`** CSS property sets the offset distance of an underline text decoration line (applied using `text-decoration`) from its original position. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | No | **70** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-offset - */ - textUnderlineOffset?: TextUnderlineOffsetProperty; - /** - * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **33** | No | No | **12** | **6** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-position - */ - textUnderlinePosition?: TextUnderlinePositionProperty; - /** - * The **`top`** CSS property participates in specifying the vertical position of a _positioned element_. It has no effect on non-positioned elements. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/top - */ - top?: TopProperty; - /** - * The **`touch-action`** CSS property sets how a region can be manipulated by a touchscreen user (for example, by zooming features built into the browser). - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :------: | - * | **36** | **52** | **13** | **12** | **11** | - * | | | | | 10 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/touch-action - */ - touchAction?: TouchActionProperty; - /** - * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :-----: | - * | **36** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | | 3.1 _-x-_ | | 9 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform - */ - transform?: TransformProperty; - /** - * The **`transform-box`** CSS property defines the layout box to which the `transform` and `transform-origin` properties relate. - * - * **Initial value**: `border-box ` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **64** | **55** | **11** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform-box - */ - transformBox?: TransformBoxProperty; - /** - * The **`transform-origin`** CSS property sets the origin for an element's transformations. - * - * **Initial value**: `50% 50% 0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :-----: | - * | **36** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 2 _-x-_ | | 9 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform-origin - */ - transformOrigin?: TransformOriginProperty; - /** - * 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. - * - * **Initial value**: `flat` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :------: | :-----: | :----: | :-: | - * | **36** | **16** | **9** | **12** | No | - * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform-style - */ - transformStyle?: TransformStyleProperty; - /** - * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes. - * - * **Initial value**: `0s` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-delay - */ - transitionDelay?: GlobalsString; - /** - * 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. - * - * **Initial value**: `0s` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-duration - */ - transitionDuration?: GlobalsString; - /** - * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied. - * - * **Initial value**: all - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-property - */ - transitionProperty?: TransitionPropertyProperty; - /** - * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect. - * - * **Initial value**: `ease` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-timing-function - */ - transitionTimingFunction?: TransitionTimingFunctionProperty; - /** - * The **`translate`** CSS property allows you to specify translation transforms individually and independantly 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | n/a | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/translate - */ - translate?: TranslateProperty; - /** - * 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. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :-----: | - * | **2** | **1** | **1.3** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/unicode-bidi - */ - unicodeBidi?: UnicodeBidiProperty; - /** - * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :---------: | :----------: | :----------: | - * | **54** | **69** | **3** _-x-_ | **12** _-x-_ | **10** _-x-_ | - * | 1 _-x-_ | 1 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/user-select - */ - userSelect?: UserSelectProperty; - /** - * The **`vertical-align`** CSS property sets vertical alignment of an inline or table-cell box. - * - * **Initial value**: `baseline` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/vertical-align - */ - verticalAlign?: VerticalAlignProperty; - /** - * 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 `
`. - * - * **Initial value**: `visible` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/visibility - */ - visibility?: VisibilityProperty; - /** - * The **`white-space`** CSS property sets how white space inside an element is handled. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/white-space - */ - whiteSpace?: WhiteSpaceProperty; - /** - * 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. - * - * **Initial value**: `2` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **25** | No | **1.3** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/widows - */ - widows?: GlobalsNumber; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/width - */ - width?: WidthProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **36** | **36** | **9.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/will-change - */ - willChange?: WillChangeProperty; - /** - * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **15** | **3** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/word-break - */ - wordBreak?: WordBreakProperty; - /** - * The **`word-spacing`** CSS property sets the length of space between words and between tags. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **6** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/word-spacing - */ - wordSpacing?: WordSpacingProperty; - /** - * The `**overflow-wrap**` CSS property sets whether the browser should insert line breaks within words to prevent text from overflowing its content box. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **3.5** | **2** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/overflow-wrap - */ - wordWrap?: WordWrapProperty; - /** - * 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. - * - * **Initial value**: `horizontal-tb` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :---------: | - * | **48** | **41** | **10.1** | **12** | **9** _-x-_ | - * | 8 _-x-_ | | 5.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/writing-mode - */ - writingMode?: WritingModeProperty; - /** - * The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/z-index - */ - zIndex?: ZIndexProperty; - /** - * The non-standard **`zoom`** CSS property can be used to control the magnification level of an element. `transform: scale()` should be used instead of this property, if possible. However, unlike CSS Transforms, `zoom` affects the layout size of the element. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :-----: | - * | **1** | No | **3.1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/zoom - */ - zoom?: ZoomProperty; -} - -export interface StandardShorthandProperties { - /** - * The `**all**` CSS shorthand property sets all of an element's properties (other than `unicode-bidi` and `direction`) to their initial or inherited values, or to the values specified in another stylesheet origin. - * - * **Initial value**: There is no practical initial value for it. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **37** | **27** | **9.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/all - */ - all?: Globals; - /** - * The **`animation`** shorthand CSS property sets an animated transition between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **43** | **16** | **9** | **12** | **10** | - * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/animation - */ - animation?: AnimationProperty; - /** - * The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/background - */ - background?: BackgroundProperty; - /** - * The **`border`** CSS property sets an element's border. It's a shorthand for `border-width`, `border-style`, and `border-color`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border - */ - border?: BorderProperty; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block - */ - borderBlock?: BorderBlockProperty; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end - */ - borderBlockEnd?: BorderBlockEndProperty; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start - */ - borderBlockStart?: BorderBlockStartProperty; - /** - * The **`border-bottom`** CSS property is a shorthand that sets the values of `border-bottom-width`, `border-bottom-style` and `border-bottom-color`. These properties set an element's bottom border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom - */ - borderBottom?: BorderBottomProperty; - /** - * The **`border-color`** shorthand CSS property sets the color of all sides of an element's border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-color - */ - borderColor?: BorderColorProperty; - /** - * The **`border-image`** CSS property draws an image in place of an element's `border-style`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **16** | **15** | **6** | **12** | **11** | - * | 7 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image - */ - borderImage?: BorderImageProperty; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline - */ - borderInline?: BorderInlineProperty; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end - */ - borderInlineEnd?: BorderInlineEndProperty; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start - */ - borderInlineStart?: BorderInlineStartProperty; - /** - * The **`border-left`** CSS property is a shorthand that sets the values of `border-left-width`, `border-left-style` and `border-left-color`. These properties set an element's left border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left - */ - borderLeft?: BorderLeftProperty; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **4** | **4** | **5** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-radius - */ - borderRadius?: BorderRadiusProperty; - /** - * The **`border-right`** CSS property is a shorthand that sets the values of `border-right-width`, `border-right-style` and `border-right-color`. These properties set an element's right border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right - */ - borderRight?: BorderRightProperty; - /** - * The **`border-style`** CSS property is a shorthand property that sets the line style for all four sides of an element's border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-style - */ - borderStyle?: BorderStyleProperty; - /** - * The **`border-top`** CSS property is a shorthand that sets the values of `border-top-width`, `border-top-style` and `border-top-color`. These properties set an element's top border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top - */ - borderTop?: BorderTopProperty; - /** - * The **`border-width`** shorthand CSS property sets the widths of all four sides of an element's border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-width - */ - borderWidth?: BorderWidthProperty; - /** - * The **`column-rule`** CSS property sets the width, style, and color of the rule (line) drawn between columns in a multi-column layout. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule - */ - columnRule?: ColumnRuleProperty; - /** - * The **`columns`** CSS property sets the column width and column count of an element. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | | 9 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/columns - */ - columns?: ColumnsProperty; - /** - * The **`flex`** CSS property sets how a flex item will grow or shrink to fit the space available in its flex container. It is a shorthand for `flex-grow`, `flex-shrink`, and `flex-basis`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :------: | - * | **29** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | 10 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex - */ - flex?: FlexProperty; - /** - * The **`flex-flow`** CSS property is a shorthand property for `flex-direction` and `flex-wrap` properties. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **29** | **28** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-flow - */ - flexFlow?: FlexFlowProperty; - /** - * The **`font`** CSS property is a shorthand for `font-style`, `font-variant`, `font-weight`, `font-size`, `line-height`, and `font-family`. Alternatively, it sets an element's font to a system font. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font - */ - font?: FontProperty; - /** - * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`. - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **63** | No | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-------------: | :-------------: | :-------------------: | :----: | :-: | - * | **66** | **61** | **10.1** _(grid-gap)_ | **16** | No | - * | 57 _(grid-gap)_ | 52 _(grid-gap)_ | | | | - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | **66** | **61** | No | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/gap - */ - gap?: GapProperty; - /** - * The **`grid`** CSS property is a shorthand property that sets all of the explicit grid properties (`grid-template-rows`, `grid-template-columns`, and `grid-template-areas`), and all the implicit grid properties (`grid-auto-rows`, `grid-auto-columns`, and `grid-auto-flow`), in a single declaration. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid - */ - grid?: GridProperty; - /** - * The **`grid-area`** CSS property is a shorthand property for `grid-row-start`, `grid-column-start`, `grid-row-end` and `grid-column-end`, specifying a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the edges of its grid area. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-area - */ - gridArea?: GridAreaProperty; - /** - * The **`grid-column`** CSS property is a shorthand property for `grid-column-start` and `grid-column-end` specifying a grid item's size and location within the 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-column - */ - gridColumn?: GridColumnProperty; - /** - * The **`grid-row`** CSS property is a shorthand property for `grid-row-start` and `grid-row-end` specifying a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-row - */ - gridRow?: GridRowProperty; - /** - * The **`grid-template`** CSS property is a shorthand property for defining grid columns, rows, and areas. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template - */ - gridTemplate?: GridTemplateProperty; - /** **Initial value**: `none` */ - lineClamp?: LineClampProperty; - /** - * The **`list-style`** CSS property is a shorthand to set list style properties `list-style-type`, `list-style-image`, and `list-style-position`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style - */ - listStyle?: ListStyleProperty; - /** - * The **`margin`** CSS property sets the margin area on all four sides of an element. It is a shorthand for `margin-top`, `margin-right`, `margin-bottom`, and `margin-left`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin - */ - margin?: MarginProperty; - /** - * The **`mask`** CSS property hides an element (partially or fully) by masking or clipping the image at specific points. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :-: | - * | **1** | **2** | **3.2** | **12** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask - */ - mask?: MaskProperty; - /** The **`mask-border`** CSS property lets you create a mask along the edge of an element's border. */ - maskBorder?: MaskBorderProperty; - /** - * The **`offset`** CSS property is a shorthand property for animating an element along a defined path. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset - */ - motion?: OffsetProperty; - /** - * The **`offset`** CSS property is a shorthand property for animating an element along a defined path. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset - */ - offset?: OffsetProperty; - /** - * The **`outline`** CSS property is a shorthand to set various outline properties in a single declaration: `outline-style`, `outline-width`, and `outline-color`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1.5** | **1.2** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/outline - */ - outline?: OutlineProperty; - /** - * The **`padding`** CSS property sets the padding area on all four sides of an element. It is a shorthand for `padding-top`, `padding-right`, `padding-bottom`, and `padding-left`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/padding - */ - padding?: PaddingProperty; - /** - * The CSS **`place-items`** shorthand property sets the `align-items` and `justify-items` properties, respectively. If the second value is not set, the first value is also used for it. - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | **11** | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | **11** | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/place-items - */ - placeItems?: PlaceItemsProperty; - /** - * The **`place-self`** CSS property is a shorthand property sets both the `align-self` and `justify-self` properties. The first value is the `align-self` property value, the second the `justify-self` one. If the second value is not present, the first value is also used for it. - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | No | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/place-self - */ - placeSelf?: PlaceSelfProperty; - /** - * The **`text-decoration`** CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, and `text-decoration-style`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration - */ - textDecoration?: TextDecorationProperty; - /** - * 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`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis - */ - textEmphasis?: TextEmphasisProperty; - /** - * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition - */ - transition?: TransitionProperty; -} - -export interface StandardProperties - extends StandardLonghandProperties, - StandardShorthandProperties {} - -export interface VendorLonghandProperties { - /** - * The **`animation-delay`** CSS property sets when an animation starts. The animation can start later, immediately from its beginning, or immediately and partway through the animation. - * - * **Initial value**: `0s` - */ - MozAnimationDelay?: GlobalsString; - /** - * The **`animation-direction`** CSS property sets whether an animation should play forwards, backwards, or alternating back and forth. - * - * **Initial value**: `normal` - */ - MozAnimationDirection?: AnimationDirectionProperty; - /** - * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle. - * - * **Initial value**: `0s` - */ - MozAnimationDuration?: GlobalsString; - /** - * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution. - * - * **Initial value**: `none` - */ - MozAnimationFillMode?: AnimationFillModeProperty; - /** - * The **`animation-iteration-count`** CSS property sets the number of times an animation cycle should be played before stopping. - * - * **Initial value**: `1` - */ - MozAnimationIterationCount?: AnimationIterationCountProperty; - /** - * The **`animation-name`** CSS property sets one or more animations to apply to an element. Each name is an `@keyframes` at-rule that sets the property values for the animation sequence. - * - * **Initial value**: `none` - */ - MozAnimationName?: AnimationNameProperty; - /** - * The **`animation-play-state`** CSS property sets whether an animation is running or paused. - * - * **Initial value**: `running` - */ - MozAnimationPlayState?: AnimationPlayStateProperty; - /** - * The `**animation-timing-function**` CSS property sets how an animation progresses through the duration of each cycle. - * - * **Initial value**: `ease` - */ - MozAnimationTimingFunction?: AnimationTimingFunctionProperty; - /** - * The **`-moz-appearance`** CSS property is used in Gecko (Firefox) to display an element using platform-native styling based on the operating system's theme. - * - * **Initial value**: `none` (but this value is overridden in the user agent CSS) - */ - MozAppearance?: MozAppearanceProperty; - /** - * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user. - * - * **Initial value**: `visible` - */ - MozBackfaceVisibility?: BackfaceVisibilityProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - */ - MozBorderEndColor?: BorderInlineEndColorProperty; - /** - * 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`. - * - * **Initial value**: `none` - */ - MozBorderEndStyle?: BorderInlineEndStyleProperty; - /** - * 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`. - * - * **Initial value**: `medium` - */ - MozBorderEndWidth?: BorderInlineEndWidthProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - */ - MozBorderStartColor?: BorderInlineStartColorProperty; - /** - * 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`. - * - * **Initial value**: `none` - */ - MozBorderStartStyle?: BorderInlineStartStyleProperty; - /** - * The **`box-sizing`** CSS property defines how the user agent should calculate the total width and height of an element. - * - * **Initial value**: `content-box` - */ - MozBoxSizing?: BoxSizingProperty; - /** - * The **`column-count`** CSS property breaks an element's content into the specified number of columns. - * - * **Initial value**: `auto` - */ - MozColumnCount?: ColumnCountProperty; - /** - * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns. - * - * **Initial value**: `balance` - */ - MozColumnFill?: ColumnFillProperty; - /** - * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns. - * - * **Initial value**: `normal` - */ - MozColumnGap?: ColumnGapProperty; - /** - * The **`column-rule-color`** CSS property sets the color of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `currentcolor` - */ - MozColumnRuleColor?: ColumnRuleColorProperty; - /** - * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout. - * - * **Initial value**: `none` - */ - MozColumnRuleStyle?: ColumnRuleStyleProperty; - /** - * The **`column-rule-width`** CSS property sets the width of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `medium` - */ - MozColumnRuleWidth?: ColumnRuleWidthProperty; - /** - * The **`column-width`** CSS property specifies 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. - * - * **Initial value**: `auto` - */ - MozColumnWidth?: ColumnWidthProperty; - /** - * If you reference an SVG image in a webpage (such as with the `` element or as a background image), the SVG image can coordinate with the embedding element (its context) to have the image adopt property values set on the embedding element. To do this the embedding element needs to list the properties that are to be made available to the image by listing them as values of the **`-moz-context-properties`** property, and the image needs to opt in to using those properties by using values such as the `context-fill` value. - * - * **Initial value**: `none` - */ - MozContextProperties?: MozContextPropertiesProperty; - /** - * The non-standard **`-moz-float-edge`** CSS property specifies whether the height and width properties of the element include the margin, border, or padding thickness. - * - * **Initial value**: `content-box` - */ - MozFloatEdge?: MozFloatEdgeProperty; - /** - * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts. - * - * **Initial value**: `normal` - */ - MozFontFeatureSettings?: FontFeatureSettingsProperty; - /** - * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface. - * - * **Initial value**: `normal` - */ - MozFontLanguageOverride?: FontLanguageOverrideProperty; - /** - * The **`-moz-force-broken-image-icon`** extended CSS property can be used to force the broken image icon to be shown even when a broken image has an `alt` attribute. - * - * **Initial value**: `0` - */ - MozForceBrokenImageIcon?: GlobalsNumber; - /** - * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. You can prevent hyphenation entirely, use hyphenation in manually-specified points within the text, or let the browser automatically insert hyphens where appropriate. - * - * **Initial value**: `manual` - */ - MozHyphens?: HyphensProperty; - /** - * For certain XUL elements and pseudo-elements that use an image from the `list-style-image` property, this property specifies a region of the image that is used in place of the whole image. This allows elements to use different pieces of the same image to improve performance. - * - * **Initial value**: `auto` - */ - MozImageRegion?: MozImageRegionProperty; - /** - * 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`. - * - * **Initial value**: `0` - */ - MozMarginEnd?: MarginInlineEndProperty; - /** - * 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`. - * - * **Initial value**: `0` - */ - MozMarginStart?: MarginInlineStartProperty; - /** - * The **`-moz-orient`** CSS property specifies the orientation of the element to which it's applied. - * - * **Initial value**: `inline` - */ - MozOrient?: MozOrientProperty; - /** - * In Mozilla applications, the **`-moz-outline-radius-bottomleft`** CSS property can be used to round the bottom-left corner of an element's `outline`. - * - * **Initial value**: `0` - */ - MozOutlineRadiusBottomleft?: MozOutlineRadiusBottomleftProperty; - /** - * In Mozilla applications, the **`-moz-outline-radius-bottomright`** CSS property can be used to round the bottom-right corner of an element's `outline`. - * - * **Initial value**: `0` - */ - MozOutlineRadiusBottomright?: MozOutlineRadiusBottomrightProperty; - /** - * In Mozilla applications, the **`-moz-outline-radius-topleft`** CSS property can be used to round the top-left corner of an element's `outline`. - * - * **Initial value**: `0` - */ - MozOutlineRadiusTopleft?: MozOutlineRadiusTopleftProperty; - /** - * In Mozilla applications, the **`-moz-outline-radius-topright`** CSS property can be used to round the top-right corner of an element's `outline`. - * - * **Initial value**: `0` - */ - MozOutlineRadiusTopright?: MozOutlineRadiusToprightProperty; - /** - * 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. It corresponds to the `padding-top`, `padding-right`, `padding-bottom`, or `padding-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. - * - * **Initial value**: `0` - */ - MozPaddingEnd?: PaddingInlineEndProperty; - /** - * 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. It corresponds to the `padding-top`, `padding-right`, `padding-bottom`, or `padding-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. - * - * **Initial value**: `0` - */ - MozPaddingStart?: PaddingInlineStartProperty; - /** - * 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. Each 3D element with z>0 becomes larger; each 3D-element with z<0 becomes smaller. The strength of the effect is determined by the value of this property. - * - * **Initial value**: `none` - */ - MozPerspective?: PerspectiveProperty; - /** - * 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. - * - * **Initial value**: `50% 50%` - */ - MozPerspectiveOrigin?: PerspectiveOriginProperty; - /** - * **`-moz-stack-sizing`** is an extended CSS property. Normally, a `stack` will change its size so that all of its child elements are completely visible. For example, moving a child of the stack far to the right will widen the stack so the child remains visible. - * - * **Initial value**: `stretch-to-fit` - */ - MozStackSizing?: MozStackSizingProperty; - /** - * The **`tab-size`** CSS property is used to customize the width of a tab (`U+0009`) character. - * - * **Initial value**: `8` - */ - MozTabSize?: TabSizeProperty; - /** - * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property. - * - * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable). - */ - MozTextSizeAdjust?: TextSizeAdjustProperty; - /** - * The **`transform-origin`** CSS property sets the origin for an element's transformations. - * - * **Initial value**: `50% 50% 0` - */ - MozTransformOrigin?: TransformOriginProperty; - /** - * 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. - * - * **Initial value**: `flat` - */ - MozTransformStyle?: TransformStyleProperty; - /** - * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes. - * - * **Initial value**: `0s` - */ - MozTransitionDelay?: GlobalsString; - /** - * 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. - * - * **Initial value**: `0s` - */ - MozTransitionDuration?: GlobalsString; - /** - * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied. - * - * **Initial value**: all - */ - MozTransitionProperty?: TransitionPropertyProperty; - /** - * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect. - * - * **Initial value**: `ease` - */ - MozTransitionTimingFunction?: TransitionTimingFunctionProperty; - /** - * The **`-moz-user-focus`** CSS property is used to indicate whether an element can have the focus. - * - * **Initial value**: `none` - */ - MozUserFocus?: MozUserFocusProperty; - /** - * The **`user-modify`** property has no effect in Firefox. It was originally planned to determine whether or not the content of an element can be edited by a user. - * - * **Initial value**: `read-only` - */ - MozUserModify?: MozUserModifyProperty; - /** - * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. - * - * **Initial value**: `auto` - */ - MozUserSelect?: UserSelectProperty; - /** - * The **`-moz-window-dragging`** CSS property specifies whether a window is draggable or not. It only works in Chrome code, and only on Mac OS X. - * - * **Initial value**: `drag` - */ - MozWindowDragging?: MozWindowDraggingProperty; - /** - * The **`-ms-accelerator`** CSS property is a Microsoft extension that sets or retrieves a string indicating whether the object represents a keyboard shortcut. - * - * **Initial value**: `false` - */ - msAccelerator?: MsAcceleratorProperty; - /** - * The **`align-self`** CSS property aligns flex items of the current flex line overriding the `align-items` value. If any of the item's cross-axis margin is set to `auto`, then `align-self` is ignored. In Grid layout `align-self` aligns the item inside the grid area. - * - * **Initial value**: `auto` - */ - msAlignSelf?: AlignSelfProperty; - /** - * The **`-ms-block-progression`** CSS property is a Microsoft extension that specifies the block progression and layout orientation. - * - * **Initial value**: `tb` - */ - msBlockProgression?: MsBlockProgressionProperty; - /** - * The **`-ms-content-zoom-chaining`** CSS property is a Microsoft extension specifying the zoom behavior that occurs when a user hits the zoom limit during page manipulation. - * - * **Initial value**: `none` - */ - msContentZoomChaining?: MsContentZoomChainingProperty; - /** - * The **`-ms-content-zoom-limit-max`** CSS property is a Microsoft extension that specifies the selected elements' maximum zoom factor. - * - * **Initial value**: `400%` - */ - msContentZoomLimitMax?: GlobalsString; - /** - * The **`-ms-content-zoom-limit-min`** CSS property is a Microsoft extension that specifies the minimum zoom factor. - * - * **Initial value**: `100%` - */ - msContentZoomLimitMin?: GlobalsString; - /** - * The **`-ms-content-zoom-snap-points`** CSS property is a Microsoft extension that specifies where zoom snap-points are located. - * - * **Initial value**: `snapInterval(0%, 100%)` - */ - msContentZoomSnapPoints?: GlobalsString; - /** - * The **`-ms-content-zoom-snap-type`** CSS property is a Microsoft extension that specifies how zooming is affected by defined snap-points. - * - * **Initial value**: `none` - */ - msContentZoomSnapType?: MsContentZoomSnapTypeProperty; - /** - * The **`-ms-content-zooming`** CSS property is a Microsoft extension that specifies whether zooming is enabled. - * - * **Initial value**: zoom for the top level element, none for all other elements - */ - msContentZooming?: MsContentZoomingProperty; - /** - * The `-ms-filter` CSS property is a Microsoft extension that sets or retrieves the filter or collection of filters applied to an object. - * - * **Initial value**: "" (the empty string) - */ - msFilter?: GlobalsString; - /** - * 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). - * - * **Initial value**: `row` - */ - msFlexDirection?: FlexDirectionProperty; - /** - * The **`flex-grow`** CSS property sets how much of the available space in the flex container should be assigned to that item (the flex grow factor). If all sibling items have the same flex grow factor, then all items will receive the same share of available space, otherwise it is distributed according to the ratio defined by the different flex grow factors. - * - * **Initial value**: `0` - */ - msFlexPositive?: GlobalsNumber; - /** - * The **`-ms-flow-from`** CSS property is a Microsoft extension that gets or sets a value identifying a region container in the document that accepts the content flow from the data source. - * - * **Initial value**: `none` - */ - msFlowFrom?: MsFlowFromProperty; - /** - * The **`-ms-flow-into`** CSS property is a Microsoft extension that gets or sets a value identifying an iframe container in the document that serves as the region's data source. - * - * **Initial value**: `none` - */ - msFlowInto?: MsFlowIntoProperty; - /** - * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track. - * - * **Initial value**: `auto` - */ - msGridColumns?: GridAutoColumnsProperty; - /** - * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track. - * - * **Initial value**: `auto` - */ - msGridRows?: GridAutoRowsProperty; - /** - * The **`-ms-high-contrast-adjust`** CSS property is a Microsoft extension that gets or sets a value indicating whether to override any CSS properties that would have been set in high contrast mode. - * - * **Initial value**: `auto` - */ - msHighContrastAdjust?: MsHighContrastAdjustProperty; - /** - * The **`-ms-hyphenate-limit-chars`** CSS property is a Microsoft extension that specifies one to three values indicating the minimum number of characters in a hyphenated word. If the word does not meet the required minimum number of characters in the word, before the hyphen, or after the hyphen, then the word is not hyphenated. - * - * **Initial value**: `auto` - */ - msHyphenateLimitChars?: MsHyphenateLimitCharsProperty; - /** - * The **`-ms-hyphenate-limit-lines`** CSS property is a Microsoft extension specifying the maximum number of consecutive lines in an element that may be ended with a hyphenated word. - * - * **Initial value**: `no-limit` - */ - msHyphenateLimitLines?: MsHyphenateLimitLinesProperty; - /** - * The `**-ms-hyphenate-limit-zone**` CSS property is a Microsoft extension specifying the width of the hyphenation zone. - * - * **Initial value**: `0` - */ - msHyphenateLimitZone?: MsHyphenateLimitZoneProperty; - /** - * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. You can prevent hyphenation entirely, use hyphenation in manually-specified points within the text, or let the browser automatically insert hyphens where appropriate. - * - * **Initial value**: `manual` - */ - msHyphens?: HyphensProperty; - /** - * The **`-ms-ime-align`** CSS property is a Microsoft extension aligning the Input Method Editor (IME) candidate window box relative to the element on which the IME composition is active. The extension is implemented in Microsoft Edge and Internet Explorer 11. - * - * **Initial value**: `auto` - */ - msImeAlign?: MsImeAlignProperty; - /** - * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols. - * - * **Initial value**: `auto` - */ - msLineBreak?: LineBreakProperty; - /** - * 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. - * - * **Initial value**: `0` - */ - msOrder?: GlobalsNumber; - /** - * The **`-ms-overflow-style`** CSS property is a Microsoft extension controlling the behavior of scrollbars when the content of an element overflows. - * - * **Initial value**: `auto` - */ - msOverflowStyle?: MsOverflowStyleProperty; - /** - * 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. - * - * **Initial value**: `visible` - */ - msOverflowX?: OverflowXProperty; - /** - * 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. - * - * **Initial value**: `visible` - */ - msOverflowY?: OverflowYProperty; - /** - * The `**-ms-scroll-chaining**` CSS property is a Microsoft extension that specifies the scrolling behavior that occurs when a user hits the scroll limit during a manipulation. - * - * **Initial value**: `chained` - */ - msScrollChaining?: MsScrollChainingProperty; - /** - * The `**-ms-scroll-limit-x-max**` CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollLeft` property. - * - * **Initial value**: `auto` - */ - msScrollLimitXMax?: MsScrollLimitXMaxProperty; - /** - * The **`-ms-scroll-limit-x-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollLeft` property. - * - * **Initial value**: `0` - */ - msScrollLimitXMin?: MsScrollLimitXMinProperty; - /** - * The **`-ms-scroll-limit-y-max`** CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollTop` property. - * - * **Initial value**: `auto` - */ - msScrollLimitYMax?: MsScrollLimitYMaxProperty; - /** - * The **`-ms-scroll-limit-y-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollTop` property. - * - * **Initial value**: `0` - */ - msScrollLimitYMin?: MsScrollLimitYMinProperty; - /** - * The **`-ms-scroll-rails`** CSS property is a Microsoft extension that specifies whether scrolling locks to the primary axis of motion. - * - * **Initial value**: `railed` - */ - msScrollRails?: MsScrollRailsProperty; - /** - * The **`-ms-scroll-snap-points-x`** CSS property is a Microsoft extension that specifies where snap-points will be located along the x-axis. - * - * **Initial value**: `snapInterval(0px, 100%)` - */ - msScrollSnapPointsX?: GlobalsString; - /** - * The **`-ms-scroll-snap-points-y`** CSS property is a Microsoft extension that specifies where snap-points will be located along the y-axis. - * - * **Initial value**: `snapInterval(0px, 100%)` - */ - msScrollSnapPointsY?: GlobalsString; - /** - * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one. - * - * **Initial value**: `none` - */ - msScrollSnapType?: MsScrollSnapTypeProperty; - /** - * The **`-ms-scroll-translation`** CSS property is a Microsoft extension that specifies whether vertical-to-horizontal scroll wheel translation occurs on the specified element. - * - * **Initial value**: `none` - */ - msScrollTranslation?: MsScrollTranslationProperty; - /** - * The **`-ms-scrollbar-3dlight-color`** CSS property is a Microsoft extension specifying the color of the top and left edges of the scroll box and scroll arrows of a scroll bar. - * - * **Initial value**: depends on user agent - */ - msScrollbar3dlightColor?: MsScrollbar3dlightColorProperty; - /** - * The **`-ms-scrollbar-arrow-color`** CSS property is a Microsoft extension that specifies the color of the arrow elements of a scroll arrow. - * - * **Initial value**: `ButtonText` - */ - msScrollbarArrowColor?: MsScrollbarArrowColorProperty; - /** - * The `**-ms-scrollbar-base-color**` CSS property is a Microsoft extension that specifies the base color of the main elements of a scroll bar. - * - * **Initial value**: depends on user agent - */ - msScrollbarBaseColor?: MsScrollbarBaseColorProperty; - /** - * The **`-ms-scrollbar-darkshadow-color`** CSS property is a Microsoft extension that specifies the color of a scroll bar's gutter. - * - * **Initial value**: `ThreeDDarkShadow` - */ - msScrollbarDarkshadowColor?: MsScrollbarDarkshadowColorProperty; - /** - * The `**-ms-scrollbar-face-color**` CSS property is a Microsoft extension that specifies the color of the scroll box and scroll arrows of a scroll bar. - * - * **Initial value**: `ThreeDFace` - */ - msScrollbarFaceColor?: MsScrollbarFaceColorProperty; - /** - * The `**-ms-scrollbar-highlight-color**` CSS property is a Microsoft extension that specifies the color of the slider tray, the top and left edges of the scroll box, and the scroll arrows of a scroll bar. - * - * **Initial value**: `ThreeDHighlight` - */ - msScrollbarHighlightColor?: MsScrollbarHighlightColorProperty; - /** - * The **`-ms-scrollbar-shadow-color`** CSS property is a Microsoft extension that specifies the color of the bottom and right edges of the scroll box and scroll arrows of a scroll bar. - * - * **Initial value**: `ThreeDDarkShadow` - */ - msScrollbarShadowColor?: MsScrollbarShadowColorProperty; - /** - * The **`-ms-scrollbar-track-color`** CSS property is a Microsoft extension that specifies the color of the track element of a scrollbar. - * - * **Initial value**: `Scrollbar` - */ - msScrollbarTrackColor?: MsScrollbarTrackColorProperty; - /** - * The **`-ms-text-autospace`** CSS property is a Microsoft extension that specifies the autospacing and narrow space width adjustment of text. - * - * **Initial value**: `none` - */ - msTextAutospace?: MsTextAutospaceProperty; - /** - * 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. - * - * **Initial value**: `none` - */ - msTextCombineHorizontal?: TextCombineUprightProperty; - /** - * 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. - * - * **Initial value**: `clip` - */ - msTextOverflow?: TextOverflowProperty; - /** - * The **`touch-action`** CSS property sets how a region can be manipulated by a touchscreen user (for example, by zooming features built into the browser). - * - * **Initial value**: `auto` - */ - msTouchAction?: TouchActionProperty; - /** - * The **`-ms-touch-select`** CSS property is a Microsoft extension that toggles the gripper visual elements that enable touch text selection. - * - * **Initial value**: `grippers` - */ - msTouchSelect?: MsTouchSelectProperty; - /** - * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model. - * - * **Initial value**: `none` - */ - msTransform?: TransformProperty; - /** - * The **`transform-origin`** CSS property sets the origin for an element's transformations. - * - * **Initial value**: `50% 50% 0` - */ - msTransformOrigin?: TransformOriginProperty; - /** - * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes. - * - * **Initial value**: `0s` - */ - msTransitionDelay?: GlobalsString; - /** - * 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. - * - * **Initial value**: `0s` - */ - msTransitionDuration?: GlobalsString; - /** - * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied. - * - * **Initial value**: all - */ - msTransitionProperty?: TransitionPropertyProperty; - /** - * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect. - * - * **Initial value**: `ease` - */ - msTransitionTimingFunction?: TransitionTimingFunctionProperty; - /** - * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. - * - * **Initial value**: `text` - */ - msUserSelect?: MsUserSelectProperty; - /** - * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box. - * - * **Initial value**: `normal` - */ - msWordBreak?: WordBreakProperty; - /** - * The **`-ms-wrap-flow`** CSS property is a Microsoft extension that specifies how exclusions impact inline content within block-level elements. - * - * **Initial value**: `auto` - */ - msWrapFlow?: MsWrapFlowProperty; - /** - * The **`-ms-wrap-margin`** CSS property is a Microsoft extension that specifies a margin that offsets the inner wrap shape from other shapes. - * - * **Initial value**: `0` - */ - msWrapMargin?: MsWrapMarginProperty; - /** - * The **`-ms-wrap-through`** CSS property is a Microsoft extension that specifies how content should wrap around an exclusion element. - * - * **Initial value**: `wrap` - */ - msWrapThrough?: MsWrapThroughProperty; - /** - * 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. - * - * **Initial value**: `horizontal-tb` - */ - msWritingMode?: WritingModeProperty; - /** - * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `` or `
` have shared or separate borders. - * - * **Initial value**: `separate` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1** | **1.2** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-collapse - */ - "border-collapse"?: BorderCollapseProperty; - /** - * 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 on the element's `writing-mode`, `direction`, and `text-orientation`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius - */ - "border-end-end-radius"?: BorderEndEndRadiusProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius - */ - "border-end-start-radius"?: BorderEndStartRadiusProperty; - /** - * The **`border-image-outset`** CSS property sets the distance by which an element's border image is set out from its border box. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-outset - */ - "border-image-outset"?: BorderImageOutsetProperty; - /** - * The **`border-image-repeat`** CSS property defines how the edge regions of a source image are adjusted to fit the dimensions of an element's border image. - * - * **Initial value**: `stretch` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-repeat - */ - "border-image-repeat"?: BorderImageRepeatProperty; - /** - * 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. - * - * **Initial value**: `100%` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice - */ - "border-image-slice"?: BorderImageSliceProperty; - /** - * The **`border-image-source`** CSS property sets the source image used to create an element's border image. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-source - */ - "border-image-source"?: BorderImageSourceProperty; - /** - * The **`border-image-width`** CSS property sets the width of an element's border image. - * - * **Initial value**: `1` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **13** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-width - */ - "border-image-width"?: BorderImageWidthProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color - */ - "border-inline-color"?: BorderInlineColorProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-end-color)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color - */ - "border-inline-end-color"?: BorderInlineEndColorProperty; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-end-style)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style - */ - "border-inline-end-style"?: BorderInlineEndStyleProperty; - /** - * 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`. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-end-width)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width - */ - "border-inline-end-width"?: BorderInlineEndWidthProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :---------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-start-color)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color - */ - "border-inline-start-color"?: BorderInlineStartColorProperty; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :---------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-start-style)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style - */ - "border-inline-start-style"?: BorderInlineStartStyleProperty; - /** - * 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`. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width - */ - "border-inline-start-width"?: BorderInlineStartWidthProperty; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style - */ - "border-inline-style"?: BorderInlineStyleProperty; - /** - * 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`. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width - */ - "border-inline-width"?: BorderInlineWidthProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left-color - */ - "border-left-color"?: BorderLeftColorProperty; - /** - * The **`border-left-style`** CSS property sets the line style of an element's left `border`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left-style - */ - "border-left-style"?: BorderLeftStyleProperty; - /** - * The **`border-left-width`** CSS property sets the width of the left border of an element. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left-width - */ - "border-left-width"?: BorderLeftWidthProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right-color - */ - "border-right-color"?: BorderRightColorProperty; - /** - * The **`border-right-style`** CSS property sets the line style of an element's right `border`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right-style - */ - "border-right-style"?: BorderRightStyleProperty; - /** - * The **`border-right-width`** CSS property sets the width of the right border of an element. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right-width - */ - "border-right-width"?: BorderRightWidthProperty; - /** - * The **`border-spacing`** CSS property sets the distance between the borders of adjacent `
` cells. This property applies only when `border-collapse` is `separate`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-spacing - */ - "border-spacing"?: BorderSpacingProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius - */ - "border-start-end-radius"?: BorderStartEndRadiusProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius - */ - "border-start-start-radius"?: BorderStartStartRadiusProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-color - */ - "border-top-color"?: BorderTopColorProperty; - /** - * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **4** | **4** | **5** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius - */ - "border-top-left-radius"?: BorderTopLeftRadiusProperty; - /** - * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **4** | **4** | **5** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius - */ - "border-top-right-radius"?: BorderTopRightRadiusProperty; - /** - * The **`border-top-style`** CSS property sets the line style of an element's top `border`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-style - */ - "border-top-style"?: BorderTopStyleProperty; - /** - * The **`border-top-width`** CSS property sets the width of the top border of an element. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-width - */ - "border-top-width"?: BorderTopWidthProperty; - /** - * The **`bottom`** CSS property participates in specifying the vertical position of a _positioned element_. It has no effect on non-positioned elements. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/bottom - */ - bottom?: BottomProperty; - /** - * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages. - * - * **Initial value**: `slice` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------: | :-----: | :-----: | :--: | :-: | - * | **22** _-x-_ | **32** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/box-decoration-break - */ - "box-decoration-break"?: BoxDecorationBreakProperty; - /** - * 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 radii, and color. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **10** | **4** | **5.1** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/box-shadow - */ - "box-shadow"?: BoxShadowProperty; - /** - * The **`box-sizing`** CSS property defines how the user agent should calculate the total width and height of an element. - * - * **Initial value**: `content-box` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **10** | **29** | **5.1** | **12** | **8** | - * | 1 _-x-_ | 1 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/box-sizing - */ - "box-sizing"?: BoxSizingProperty; - /** - * The **`break-after`** CSS property defines how page, column, or region breaks should behave after a generated box. If there is no generated box, the property is ignored. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | No | No | **12** | **10** | - * - * --- - * - * _Supported in Paged Media_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in CSS Regions_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/break-after - */ - "break-after"?: BreakAfterProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | No | **12** | **10** | - * - * --- - * - * _Supported in Paged Media_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in CSS Regions_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/break-before - */ - "break-before"?: BreakBeforeProperty; - /** - * The **`break-inside`** CSS property defines how page, column, or region breaks should behave inside a generated box. If there is no generated box, the property is ignored. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in Paged Media_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in CSS Regions_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/break-inside - */ - "break-inside"?: BreakInsideProperty; - /** - * The **`caption-side`** CSS property puts the content of a table's `
` on the specified side. The values are relative to the `writing-mode` of the table. - * - * **Initial value**: `top` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/caption-side - */ - "caption-side"?: CaptionSideProperty; - /** - * The **`caret-color`** CSS property sets the color of the insertion caret, the visible marker where the next character typed will be inserted. The caret appears in elements such as `` or those with the `contenteditable` attribute. The caret is typically a thin vertical line that flashes to help make it more noticeable. By default, it is black, but its color can be altered with this property. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **53** | **11.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/caret-color - */ - "caret-color"?: CaretColorProperty; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/clear - */ - clear?: ClearProperty; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **55** | **3.5** | **9.1** | **12** | **10** | - * | 23 _-x-_ | | 6.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/clip-path - */ - "clip-path"?: ClipPathProperty; - /** - * 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`. - * - * **Initial value**: Varies from one browser to another - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/color - */ - color?: ColorProperty; - /** - * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device. - * - * **Initial value**: `economy` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------: | :-----: | :---------: | :--: | :-: | - * | **49** _-x-_ | **48** | **6** _-x-_ | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/color-adjust - */ - "color-adjust"?: ColorAdjustProperty; - /** - * The **`column-count`** CSS property breaks an element's content into the specified number of columns. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 1.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-count - */ - "column-count"?: ColumnCountProperty; - /** - * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns. - * - * **Initial value**: `balance` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | | 13 _-x-_ | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-fill - */ - "column-fill"?: ColumnFillProperty; - /** - * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns. - * - * **Initial value**: `normal` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :---------: | :--: | :-: | - * | No | **63** | **3** _-x-_ | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-------------: | :-------------: | :-------------------: | :----: | :-: | - * | **66** | **61** | **10.1** _(grid-gap)_ | **16** | No | - * | 57 _(grid-gap)_ | 52 _(grid-gap)_ | | | | - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **10** | **12** | **10** | - * | 1 _-x-_ | 1.5 _-x-_ | 3 _-x-_ | | | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-gap - */ - "column-gap"?: ColumnGapProperty; - /** - * The **`column-rule-color`** CSS property sets the color of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-color - */ - "column-rule-color"?: ColumnRuleColorProperty; - /** - * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-style - */ - "column-rule-style"?: ColumnRuleStyleProperty; - /** - * The **`column-rule-width`** CSS property sets the width of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-width - */ - "column-rule-width"?: ColumnRuleWidthProperty; - /** - * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **50** | **71** | **9** | **12** | **10** | - * | 6 _-x-_ | | 5.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-span - */ - "column-span"?: ColumnSpanProperty; - /** - * The **`column-width`** CSS property specifies 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **50** | **9** | **12** | **10** | - * | 1 _-x-_ | 1.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-width - */ - "column-width"?: ColumnWidthProperty; - /** - * The **`contain`** CSS property allows an author to indicate that an element and its contents are, as much as possible, _independent_ of the rest of the document tree. This allows the browser to recalculate layout, style, paint, size, or any combination of them for a limited area of the DOM and not the entire page. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **52** | **69** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/contain - */ - contain?: ContainProperty; - /** - * The **`content`** CSS property replaces an element with a generated value. Objects inserted using the `content` property are _anonymous replaced elements._ - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/content - */ - content?: ContentProperty; - /** - * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **2** | **1** | **3** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/counter-increment - */ - "counter-increment"?: CounterIncrementProperty; - /** - * The **`counter-reset`** CSS property resets a CSS counter to a given value. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **2** | **1** | **3** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/counter-reset - */ - "counter-reset"?: CounterResetProperty; - /** - * The **`counter-set`** CSS property sets a CSS counter to a given value. It manipulates the value of existing counters, and will only create new counters if there isn't already a counter of the given name on the element. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **68** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/counter-set - */ - "counter-set"?: CounterSetProperty; - /** - * The **`cursor`** CSS property sets mouse cursor to display when the mouse pointer is over an element. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1** | **1.2** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/cursor - */ - cursor?: CursorProperty; - /** - * The **`direction`** CSS property sets the direction of text, table columns, and horizontal overflow. Use `rtl` for languages written from right to left (like Hebrew or Arabic), and `ltr` for those written from left to right (like English and most other languages). - * - * **Initial value**: `ltr` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **2** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/direction - */ - direction?: DirectionProperty; - /** - * The **`display`** CSS property defines the _display type_ of an element, which consists of the two basic qualities of how an element generates boxes — the **outer display type** defining how the box participates in flow layout, and the **inner display type** defining how the children of the box are laid out. - * - * **Initial value**: `inline` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/display - */ - display?: DisplayProperty; - /** - * The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `` cells that have no visible content. - * - * **Initial value**: `show` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1** | **1.2** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/empty-cells - */ - "empty-cells"?: EmptyCellsProperty; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :-: | - * | **53** | **35** | **9.1** | **12** | No | - * | 18 _-x-_ | | 6 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/filter - */ - filter?: FilterProperty; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :----: | - * | **29** | **22** | **9** | **12** | **11** | - * | 21 _-x-_ | | 7 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-basis - */ - "flex-basis"?: FlexBasisProperty; - /** - * 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). - * - * **Initial value**: `row` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :------: | - * | **29** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 7 _-x-_ | | 10 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-direction - */ - "flex-direction"?: FlexDirectionProperty; - /** - * The **`flex-grow`** CSS property sets how much of the available space in the flex container should be assigned to that item (the flex grow factor). If all sibling items have the same flex grow factor, then all items will receive the same share of available space, otherwise it is distributed according to the ratio defined by the different flex grow factors. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----------------------: | - * | **29** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | 10 _(-ms-flex-positive)_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-grow - */ - "flex-grow"?: GlobalsNumber; - /** - * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of flex items is larger than the flex container, items shrink to fit according to `flex-shrink`. - * - * **Initial value**: `1` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :----: | - * | **29** | **20** | **9** | **12** | **10** | - * | 21 _-x-_ | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-shrink - */ - "flex-shrink"?: GlobalsNumber; - /** - * 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. - * - * **Initial value**: `nowrap` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **29** | **28** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-wrap - */ - "flex-wrap"?: FlexWrapProperty; - /** - * The **`float`** CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning). - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/float - */ - float?: FloatProperty; - /** - * 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. - * - * **Initial value**: depends on user agent - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-family - */ - "font-family"?: FontFamilyProperty; - /** - * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :------: | :-----: | :----: | :----: | - * | **48** | **34** | **9.1** | **15** | **10** | - * | 16 _-x-_ | 15 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-feature-settings - */ - "font-feature-settings"?: FontFeatureSettingsProperty; - /** - * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------: | :-----: | :----: | :--: | :-: | - * | **32** _-x-_ | **32** | **7** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-kerning - */ - "font-kerning"?: FontKerningProperty; - /** - * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **34** | No | No | No | - * | | 4 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-language-override - */ - "font-language-override"?: FontLanguageOverrideProperty; - /** - * The **`font-optical-sizing`** CSS property sets whether text rendering is optimized for viewing at different sizes. This only works for fonts that have an optical size variation axis. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | **79** | **62** | **11** | **17** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing - */ - "font-optical-sizing"?: FontOpticalSizingProperty; - /** - * The **`font-size`** CSS property sets the size of the font. This property is also used to compute the size of `em`, `ex`, and other relative `` units. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-size - */ - "font-size"?: FontSizeProperty; - /** - * The **`font-size-adjust`** CSS property sets how the font size should be chosen based on the height of lowercase rather than capital letters. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **54** | **1** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-size-adjust - */ - "font-size-adjust"?: FontSizeAdjustProperty; - /** - * The **`font-stretch`** CSS property selects a normal, condensed, or expanded face from a font. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **60** | **9** | **11** | **12** | **9** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-stretch - */ - "font-stretch"?: FontStretchProperty; - /** - * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-style - */ - "font-style"?: FontStyleProperty; - /** - * The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser. - * - * **Initial value**: `weight style` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **34** | **9** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis - */ - "font-synthesis"?: FontSynthesisProperty; - /** - * The **font-variant** CSS property is a shorthand for the longhand properties `font-variant-caps`, `font-variant-numeric`, `font-variant-alternates`, `font-variant-ligatures`, and `font-variant-east-asian`. You can also set the CSS Level 2 (Revision 1) values of `font-variant`, (that is, `normal` or `small-caps`), by using the `font` shorthand. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant - */ - "font-variant"?: FontVariantProperty; - /** - * The **`font-variant-caps`** CSS property controls the use of alternate glyphs for capital letters. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **52** | **34** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-caps - */ - "font-variant-caps"?: FontVariantCapsProperty; - /** - * The **`font-variant-east-asian`** CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **63** | **34** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian - */ - "font-variant-east-asian"?: FontVariantEastAsianProperty; - /** - * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :--: | :-: | - * | **34** | **34** | **9.1** | No | No | - * | 31 _-x-_ | | 7 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures - */ - "font-variant-ligatures"?: FontVariantLigaturesProperty; - /** - * The **`font-variant-numeric`** CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **52** | **34** | **9.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric - */ - "font-variant-numeric"?: FontVariantNumericProperty; - /** - * The **`font-variant-position`** CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **34** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position - */ - "font-variant-position"?: FontVariantPositionProperty; - /** - * The **`font-variation-settings`** CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | **62** | **62** | **11** | **17** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variation-settings - */ - "font-variation-settings"?: FontVariationSettingsProperty; - /** - * The **`font-weight`** CSS property specifies the weight (or boldness) of the font. The font weights available to you will depend on the `font-family` you are using. Some fonts are only available in `normal` and `bold`. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **2** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-weight - */ - "font-weight"?: FontWeightProperty; - /** - * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :---------------------: | :-------------------------: | - * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-columns)_ | - * | | | | 12 _(-ms-grid-columns)_ | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns - */ - "grid-auto-columns"?: GridAutoColumnsProperty; - /** - * The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid. - * - * **Initial value**: `row` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow - */ - "grid-auto-flow"?: GridAutoFlowProperty; - /** - * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :------------------: | :----------------------: | - * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-rows)_ | - * | | | | 12 _(-ms-grid-rows)_ | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows - */ - "grid-auto-rows"?: GridAutoRowsProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-end - */ - "grid-column-end"?: GridColumnEndProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-start - */ - "grid-column-start"?: GridColumnStartProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-end - */ - "grid-row-end"?: GridRowEndProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-start - */ - "grid-row-start"?: GridRowStartProperty; - /** - * The **`grid-template-areas`** CSS property specifies named grid areas. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-areas - */ - "grid-template-areas"?: GridTemplateAreasProperty; - /** - * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-columns - */ - "grid-template-columns"?: GridTemplateColumnsProperty; - /** - * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-rows - */ - "grid-template-rows"?: GridTemplateRowsProperty; - /** - * The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | **10** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/hanging-punctuation - */ - "hanging-punctuation"?: HangingPunctuationProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/height - */ - height?: HeightProperty; - /** - * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. You can prevent hyphenation entirely, use hyphenation in manually-specified points within the text, or let the browser automatically insert hyphens where appropriate. - * - * **Initial value**: `manual` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----------: | :----------: | :----------: | - * | **55** | **43** | **5.1** _-x-_ | **12** _-x-_ | **10** _-x-_ | - * | 13 _-x-_ | 6 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/hyphens - */ - hyphens?: HyphensProperty; - /** - * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image. It should _not_ be used for any other orientation adjustments; instead, the `transform` property should be used with the `rotate` ``. - * - * **Initial value**: `0deg` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **26** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/image-orientation - */ - "image-orientation"?: ImageOrientationProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **13** | **3.6** | **6** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/image-rendering - */ - "image-rendering"?: ImageRenderingProperty; - /** **Initial value**: `1dppx` */ - "image-resolution"?: ImageResolutionProperty; - /** - * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | **9** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/initial-letter - */ - "initial-letter"?: InitialLetterProperty; - /** - * The **`inline-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inline-size - */ - "inline-size"?: InlineSizeProperty; - /** - * The **`inset`** CSS property defines the logical block and inline start and end offsets of an element, which map 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset - */ - inset?: InsetProperty; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-block - */ - "inset-block"?: InsetBlockProperty; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end - */ - "inset-block-end"?: InsetBlockEndProperty; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start - */ - "inset-block-start"?: InsetBlockStartProperty; - /** - * The **`inset-inline`** 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline - */ - "inset-inline"?: InsetInlineProperty; - /** - * The **`inset-inline-end`** CSS property defines the logical inline end inset 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end - */ - "inset-inline-end"?: InsetInlineEndProperty; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start - */ - "inset-inline-start"?: InsetInlineStartProperty; - /** - * The **`isolation`** CSS property determines whether an element must create a new stacking context. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **41** | **36** | **8** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/isolation - */ - isolation?: IsolationProperty; - /** - * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container. - * - * **Initial value**: `normal` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **52** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/justify-content - */ - "justify-content"?: JustifyContentProperty; - /** - * 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. - * - * **Initial value**: `legacy` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **52** | **20** | **9** | **12** | **11** | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **45** | **10.1** | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/justify-items - */ - "justify-items"?: JustifyItemsProperty; - /** - * The CSS **`justify-self`** property set the way a box is justified inside its alignment container along the appropriate axis. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **45** | **10.1** | **16** | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **45** | **10.1** | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/justify-self - */ - "justify-self"?: JustifySelfProperty; - /** - * The **`left`** CSS property participates in specifying the horizontal position of a _positioned element_. It has no effect on non-positioned elements. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/left - */ - left?: LeftProperty; - /** - * The **`letter-spacing`** CSS property sets the spacing behavior between text characters. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/letter-spacing - */ - "letter-spacing"?: LetterSpacingProperty; - /** - * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :---------: | :----: | :-----: | - * | **58** | **69** | **3** _-x-_ | **14** | **5.5** | - * | 1 _-x-_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/line-break - */ - "line-break"?: LineBreakProperty; - /** - * The **`line-height`** CSS property sets the amount of space used for lines, such as in text. On block-level elements, it specifies the minimum height of line boxes within the element. On non-replaced inline elements, it specifies the height that is used to calculate line box height. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/line-height - */ - "line-height"?: LineHeightProperty; - /** - * The **`line-height-step`** CSS property sets the step unit for line box heights. When the property is set, line box heights are rounded up to the closest multiple of the unit. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | No | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/line-height-step - */ - "line-height-step"?: LineHeightStepProperty; - /** - * The **`list-style-image`** CSS property sets an image to be used as the list item marker. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style-image - */ - "list-style-image"?: ListStyleImageProperty; - /** - * The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item. - * - * **Initial value**: `outside` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style-position - */ - "list-style-position"?: ListStylePositionProperty; - /** - * The **`list-style-type`** CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element. - * - * **Initial value**: `disc` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style-type - */ - "list-style-type"?: ListStyleTypeProperty; - /** - * The **`margin-block`** CSS 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-block - */ - "margin-block"?: MarginBlockProperty; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end - */ - "margin-block-end"?: MarginBlockEndProperty; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start - */ - "margin-block-start"?: MarginBlockStartProperty; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom - */ - "margin-bottom"?: MarginBottomProperty; - /** - * The **`margin-inline`** CSS property defines 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline - */ - "margin-inline"?: MarginInlineProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------------------: | :-------------------: | :----------------------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | 2 _(-webkit-margin-end)_ | 3 _(-moz-margin-end)_ | 3 _(-webkit-margin-end)_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end - */ - "margin-inline-end"?: MarginInlineEndProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------------------------: | :---------------------: | :------------------------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | 2 _(-webkit-margin-start)_ | 3 _(-moz-margin-start)_ | 3 _(-webkit-margin-start)_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start - */ - "margin-inline-start"?: MarginInlineStartProperty; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-left - */ - "margin-left"?: MarginLeftProperty; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-right - */ - "margin-right"?: MarginRightProperty; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-top - */ - "margin-top"?: MarginTopProperty; - /** - * The **`mask-border-mode`** CSS property specifies the blending mode used in a mask border. - * - * **Initial value**: `alpha` - */ - "mask-border-mode"?: MaskBorderModeProperty; - /** - * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box. - * - * **Initial value**: `0` - */ - "mask-border-outset"?: MaskBorderOutsetProperty; - /** - * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border. - * - * **Initial value**: `stretch` - */ - "mask-border-repeat"?: MaskBorderRepeatProperty; - /** - * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border. - * - * **Initial value**: `0` - */ - "mask-border-slice"?: MaskBorderSliceProperty; - /** - * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border. - * - * **Initial value**: `none` - */ - "mask-border-source"?: MaskBorderSourceProperty; - /** - * The **`mask-border-width`** CSS property sets the width of an element's mask border. - * - * **Initial value**: `auto` - */ - "mask-border-width"?: MaskBorderWidthProperty; - /** - * 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. - * - * **Initial value**: `border-box` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :--: | :-: | - * | **1** _-x-_ | **53** | **4** _-x-_ | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-clip - */ - "mask-clip"?: MaskClipProperty; - /** - * The **`mask-composite`** CSS property represents a compositing operation used on the current mask layer with the mask layers below it. - * - * **Initial value**: `add` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | No | **53** | No | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-composite - */ - "mask-composite"?: MaskCompositeProperty; - /** - * The **`mask-image`** CSS property sets the image that is used as mask layer for an element. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :----: | :-: | - * | **1** _-x-_ | **53** | **4** _-x-_ | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-image - */ - "mask-image"?: MaskImageProperty; - /** - * The **`mask-mode`** CSS property sets whether the mask reference defined by `mask-image` is treated as a luminance or alpha mask. - * - * **Initial value**: `match-source` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **53** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-mode - */ - "mask-mode"?: MaskModeProperty; - /** - * The **`mask-origin`** CSS property sets the origin of a mask. - * - * **Initial value**: `border-box` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :--: | :-: | - * | **1** _-x-_ | **53** | **4** _-x-_ | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-origin - */ - "mask-origin"?: MaskOriginProperty; - /** - * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image. - * - * **Initial value**: `center` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :-----------: | :----: | :-: | - * | **1** _-x-_ | **53** | **3.2** _-x-_ | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-position - */ - "mask-position"?: MaskPositionProperty; - /** - * 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. - * - * **Initial value**: `no-repeat` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :-----------: | :----: | :-: | - * | **1** _-x-_ | **53** | **3.2** _-x-_ | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-repeat - */ - "mask-repeat"?: MaskRepeatProperty; - /** - * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :----: | :-: | - * | **4** _-x-_ | **53** | **4** _-x-_ | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-size - */ - "mask-size"?: MaskSizeProperty; - /** - * The **`mask-type`** CSS property sets whether an SVG `` element is used as a _luminance_ or an _alpha_ mask. It applies to the `` element itself. - * - * **Initial value**: `luminance` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **24** | **35** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-type - */ - "mask-type"?: MaskTypeProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-block-size - */ - "max-block-size"?: MaxBlockSizeProperty; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **18** | **1** | **1.3** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-height - */ - "max-height"?: MaxHeightProperty; - /** - * 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 the `max-width` or the `max-height` property depending on the value defined for `writing-mode`. If the writing mode is vertically oriented, the value of `max-inline-size` relates to the maximal height of the element, otherwise it relates to the maximal width of the element. It relates to `max-block-size`, which defines the other dimension of the element. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :--------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * | | | 10.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-inline-size - */ - "max-inline-size"?: MaxInlineSizeProperty; - /** **Initial value**: `none` */ - "max-lines"?: MaxLinesProperty; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-width - */ - "max-width"?: MaxWidthProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-block-size - */ - "min-block-size"?: MinBlockSizeProperty; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **3** | **1.3** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-height - */ - "min-height"?: MinHeightProperty; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-inline-size - */ - "min-inline-size"?: MinInlineSizeProperty; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-width - */ - "min-width"?: MinWidthProperty; - /** - * 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. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **41** | **32** | **8** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode - */ - "mix-blend-mode"?: MixBlendModeProperty; - /** - * The **`offset-distance`** CSS property specifies a position along an `offset-path`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :--------------------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion-distance)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance - */ - "motion-distance"?: OffsetDistanceProperty; - /** - * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion-path)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset-path - */ - "motion-path"?: OffsetPathProperty; - /** - * The **`offset-rotate`** CSS property defines the direction of the element while positioning along the offset path. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :--------------------: | :-----: | :----: | :--: | :-: | - * | **56** | n/a | No | No | No | - * | 46 _(motion-rotation)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate - */ - "motion-rotation"?: OffsetRotateProperty; - /** - * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `` or `
` cells, rows, and columns. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **14** | **1** | **1** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/table-layout - */ - "table-layout"?: TableLayoutProperty; - /** - * The **`text-align`** CSS property sets the horizontal alignment of an inline or table-cell box. This means it works like `vertical-align` but in the horizontal direction. - * - * **Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-align - */ - "text-align"?: TextAlignProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **47** | **49** | No | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-align-last - */ - "text-align-last"?: TextAlignLastProperty; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------------------------: | :-----: | :------------------------------: | :------------------------------------: | :------------------------------------: | - * | **48** | **48** | **5.1** _(-webkit-text-combine)_ | **12** _(-ms-text-combine-horizontal)_ | **11** _(-ms-text-combine-horizontal)_ | - * | 9 _(-webkit-text-combine)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-combine-upright - */ - "text-combine-upright"?: TextCombineUprightProperty; - /** - * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **36** | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-color - */ - "text-decoration-color"?: TextDecorationColorProperty; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **36** | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-line - */ - "text-decoration-line"?: TextDecorationLineProperty; - /** - * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors. - * - * **Initial value**: `objects` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | 57-64 | No | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip - */ - "text-decoration-skip"?: TextDecorationSkipProperty; - /** - * The **`text-decoration-skip-ink`** CSS property specifies how overlines and underlines are drawn when they pass over glyph ascenders and descenders. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **64** | **70** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink - */ - "text-decoration-skip-ink"?: TextDecorationSkipInkProperty; - /** - * 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`. - * - * **Initial value**: `solid` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **36** | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-style - */ - "text-decoration-style"?: TextDecorationStyleProperty; - /** - * The **`text-decoration-thickness`** CSS property sets the thickness, or width, of the decoration line that is used on text in an element, such as a line-through, underline, or overline. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | No | **70** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness - */ - "text-decoration-thickness"?: TextDecorationThicknessProperty; - /** - * The **`text-decoration-thickness`** CSS property sets the thickness, or width, of the decoration line that is used on text in an element, such as a line-through, underline, or overline. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | No | **70** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness - */ - "text-decoration-width"?: TextDecorationThicknessProperty; - /** - * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color - */ - "text-emphasis-color"?: TextEmphasisColorProperty; - /** - * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased. - * - * **Initial value**: `over right` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position - */ - "text-emphasis-position"?: GlobalsString; - /** - * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style - */ - "text-emphasis-style"?: TextEmphasisStyleProperty; - /** - * The **`text-indent`** CSS property sets the length of empty space (indentation) that is put before lines of text in a block. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-indent - */ - "text-indent"?: TextIndentProperty; - /** - * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | n/a | **55** | No | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-justify - */ - "text-justify"?: TextJustifyProperty; - /** - * 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. - * - * **Initial value**: `mixed` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----------: | :--: | :-: | - * | **48** | **41** | **5.1** _-x-_ | No | No | - * | 11 _-x-_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-orientation - */ - "text-orientation"?: TextOrientationProperty; - /** - * 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. - * - * **Initial value**: `clip` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **7** | **1.3** | **12** | **6** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-overflow - */ - "text-overflow"?: TextOverflowProperty; - /** - * The **`text-rendering`** CSS property provides information to the rendering engine about what to optimize for when rendering text. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **4** | **1** | **5** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-rendering - */ - "text-rendering"?: TextRenderingProperty; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :----: | - * | **2** | **3.5** | **1.1** | **12** | **10** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-shadow - */ - "text-shadow"?: TextShadowProperty; - /** - * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property. - * - * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable). - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----------: | :-: | - * | **54** | No | No | **12** _-x-_ | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-size-adjust - */ - "text-size-adjust"?: TextSizeAdjustProperty; - /** - * 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 - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-transform - */ - "text-transform"?: TextTransformProperty; - /** - * The **`text-underline-offset`** CSS property sets the offset distance of an underline text decoration line (applied using `text-decoration`) from its original position. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | No | **70** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-offset - */ - "text-underline-offset"?: TextUnderlineOffsetProperty; - /** - * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **33** | No | No | **12** | **6** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-position - */ - "text-underline-position"?: TextUnderlinePositionProperty; - /** - * The **`top`** CSS property participates in specifying the vertical position of a _positioned element_. It has no effect on non-positioned elements. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/top - */ - top?: TopProperty; - /** - * The **`touch-action`** CSS property sets how a region can be manipulated by a touchscreen user (for example, by zooming features built into the browser). - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :------: | - * | **36** | **52** | **13** | **12** | **11** | - * | | | | | 10 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/touch-action - */ - "touch-action"?: TouchActionProperty; - /** - * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :-----: | - * | **36** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | | 3.1 _-x-_ | | 9 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform - */ - transform?: TransformProperty; - /** - * The **`transform-box`** CSS property defines the layout box to which the `transform` and `transform-origin` properties relate. - * - * **Initial value**: `border-box ` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **64** | **55** | **11** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform-box - */ - "transform-box"?: TransformBoxProperty; - /** - * The **`transform-origin`** CSS property sets the origin for an element's transformations. - * - * **Initial value**: `50% 50% 0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :-----: | - * | **36** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 2 _-x-_ | | 9 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform-origin - */ - "transform-origin"?: TransformOriginProperty; - /** - * 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. - * - * **Initial value**: `flat` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :------: | :-----: | :----: | :-: | - * | **36** | **16** | **9** | **12** | No | - * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform-style - */ - "transform-style"?: TransformStyleProperty; - /** - * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes. - * - * **Initial value**: `0s` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-delay - */ - "transition-delay"?: GlobalsString; - /** - * 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. - * - * **Initial value**: `0s` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-duration - */ - "transition-duration"?: GlobalsString; - /** - * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied. - * - * **Initial value**: all - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-property - */ - "transition-property"?: TransitionPropertyProperty; - /** - * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect. - * - * **Initial value**: `ease` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-timing-function - */ - "transition-timing-function"?: TransitionTimingFunctionProperty; - /** - * The **`translate`** CSS property allows you to specify translation transforms individually and independantly 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | n/a | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/translate - */ - translate?: TranslateProperty; - /** - * 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. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :-----: | - * | **2** | **1** | **1.3** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/unicode-bidi - */ - "unicode-bidi"?: UnicodeBidiProperty; - /** - * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :---------: | :----------: | :----------: | - * | **54** | **69** | **3** _-x-_ | **12** _-x-_ | **10** _-x-_ | - * | 1 _-x-_ | 1 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/user-select - */ - "user-select"?: UserSelectProperty; - /** - * The **`vertical-align`** CSS property sets vertical alignment of an inline or table-cell box. - * - * **Initial value**: `baseline` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/vertical-align - */ - "vertical-align"?: VerticalAlignProperty; - /** - * 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 `
`. - * - * **Initial value**: `visible` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/visibility - */ - visibility?: VisibilityProperty; - /** - * The **`white-space`** CSS property sets how white space inside an element is handled. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/white-space - */ - "white-space"?: WhiteSpaceProperty; - /** - * 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. - * - * **Initial value**: `2` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **25** | No | **1.3** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/widows - */ - widows?: GlobalsNumber; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/width - */ - width?: WidthProperty; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **36** | **36** | **9.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/will-change - */ - "will-change"?: WillChangeProperty; - /** - * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **15** | **3** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/word-break - */ - "word-break"?: WordBreakProperty; - /** - * The **`word-spacing`** CSS property sets the length of space between words and between tags. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **6** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/word-spacing - */ - "word-spacing"?: WordSpacingProperty; - /** - * The `**overflow-wrap**` CSS property sets whether the browser should insert line breaks within words to prevent text from overflowing its content box. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **3.5** | **2** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/overflow-wrap - */ - "word-wrap"?: WordWrapProperty; - /** - * 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. - * - * **Initial value**: `horizontal-tb` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :---------: | - * | **48** | **41** | **10.1** | **12** | **9** _-x-_ | - * | 8 _-x-_ | | 5.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/writing-mode - */ - "writing-mode"?: WritingModeProperty; - /** - * The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/z-index - */ - "z-index"?: ZIndexProperty; - /** - * The non-standard **`zoom`** CSS property can be used to control the magnification level of an element. `transform: scale()` should be used instead of this property, if possible. However, unlike CSS Transforms, `zoom` affects the layout size of the element. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :-----: | - * | **1** | No | **3.1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/zoom - */ - zoom?: ZoomProperty; -} - -export interface StandardShorthandPropertiesHyphen { - /** - * The `**all**` CSS shorthand property sets all of an element's properties (other than `unicode-bidi` and `direction`) to their initial or inherited values, or to the values specified in another stylesheet origin. - * - * **Initial value**: There is no practical initial value for it. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **37** | **27** | **9.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/all - */ - all?: Globals; - /** - * The **`animation`** shorthand CSS property sets an animated transition between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **43** | **16** | **9** | **12** | **10** | - * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/animation - */ - animation?: AnimationProperty; - /** - * The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/background - */ - background?: BackgroundProperty; - /** - * The **`border`** CSS property sets an element's border. It's a shorthand for `border-width`, `border-style`, and `border-color`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border - */ - border?: BorderProperty; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block - */ - "border-block"?: BorderBlockProperty; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end - */ - "border-block-end"?: BorderBlockEndProperty; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start - */ - "border-block-start"?: BorderBlockStartProperty; - /** - * The **`border-bottom`** CSS property is a shorthand that sets the values of `border-bottom-width`, `border-bottom-style` and `border-bottom-color`. These properties set an element's bottom border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom - */ - "border-bottom"?: BorderBottomProperty; - /** - * The **`border-color`** shorthand CSS property sets the color of all sides of an element's border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-color - */ - "border-color"?: BorderColorProperty; - /** - * The **`border-image`** CSS property draws an image in place of an element's `border-style`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **16** | **15** | **6** | **12** | **11** | - * | 7 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image - */ - "border-image"?: BorderImageProperty; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline - */ - "border-inline"?: BorderInlineProperty; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end - */ - "border-inline-end"?: BorderInlineEndProperty; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start - */ - "border-inline-start"?: BorderInlineStartProperty; - /** - * The **`border-left`** CSS property is a shorthand that sets the values of `border-left-width`, `border-left-style` and `border-left-color`. These properties set an element's left border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left - */ - "border-left"?: BorderLeftProperty; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **4** | **4** | **5** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-radius - */ - "border-radius"?: BorderRadiusProperty; - /** - * The **`border-right`** CSS property is a shorthand that sets the values of `border-right-width`, `border-right-style` and `border-right-color`. These properties set an element's right border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right - */ - "border-right"?: BorderRightProperty; - /** - * The **`border-style`** CSS property is a shorthand property that sets the line style for all four sides of an element's border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-style - */ - "border-style"?: BorderStyleProperty; - /** - * The **`border-top`** CSS property is a shorthand that sets the values of `border-top-width`, `border-top-style` and `border-top-color`. These properties set an element's top border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top - */ - "border-top"?: BorderTopProperty; - /** - * The **`border-width`** shorthand CSS property sets the widths of all four sides of an element's border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-width - */ - "border-width"?: BorderWidthProperty; - /** - * The **`column-rule`** CSS property sets the width, style, and color of the rule (line) drawn between columns in a multi-column layout. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule - */ - "column-rule"?: ColumnRuleProperty; - /** - * The **`columns`** CSS property sets the column width and column count of an element. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | | 9 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/columns - */ - columns?: ColumnsProperty; - /** - * The **`flex`** CSS property sets how a flex item will grow or shrink to fit the space available in its flex container. It is a shorthand for `flex-grow`, `flex-shrink`, and `flex-basis`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :------: | - * | **29** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | 10 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex - */ - flex?: FlexProperty; - /** - * The **`flex-flow`** CSS property is a shorthand property for `flex-direction` and `flex-wrap` properties. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **29** | **28** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-flow - */ - "flex-flow"?: FlexFlowProperty; - /** - * The **`font`** CSS property is a shorthand for `font-style`, `font-variant`, `font-weight`, `font-size`, `line-height`, and `font-family`. Alternatively, it sets an element's font to a system font. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font - */ - font?: FontProperty; - /** - * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`. - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **63** | No | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-------------: | :-------------: | :-------------------: | :----: | :-: | - * | **66** | **61** | **10.1** _(grid-gap)_ | **16** | No | - * | 57 _(grid-gap)_ | 52 _(grid-gap)_ | | | | - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | **66** | **61** | No | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/gap - */ - gap?: GapProperty; - /** - * The **`grid`** CSS property is a shorthand property that sets all of the explicit grid properties (`grid-template-rows`, `grid-template-columns`, and `grid-template-areas`), and all the implicit grid properties (`grid-auto-rows`, `grid-auto-columns`, and `grid-auto-flow`), in a single declaration. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid - */ - grid?: GridProperty; - /** - * The **`grid-area`** CSS property is a shorthand property for `grid-row-start`, `grid-column-start`, `grid-row-end` and `grid-column-end`, specifying a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the edges of its grid area. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-area - */ - "grid-area"?: GridAreaProperty; - /** - * The **`grid-column`** CSS property is a shorthand property for `grid-column-start` and `grid-column-end` specifying a grid item's size and location within the 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-column - */ - "grid-column"?: GridColumnProperty; - /** - * The **`grid-row`** CSS property is a shorthand property for `grid-row-start` and `grid-row-end` specifying a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-row - */ - "grid-row"?: GridRowProperty; - /** - * The **`grid-template`** CSS property is a shorthand property for defining grid columns, rows, and areas. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template - */ - "grid-template"?: GridTemplateProperty; - /** **Initial value**: `none` */ - "line-clamp"?: LineClampProperty; - /** - * The **`list-style`** CSS property is a shorthand to set list style properties `list-style-type`, `list-style-image`, and `list-style-position`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style - */ - "list-style"?: ListStyleProperty; - /** - * The **`margin`** CSS property sets the margin area on all four sides of an element. It is a shorthand for `margin-top`, `margin-right`, `margin-bottom`, and `margin-left`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin - */ - margin?: MarginProperty; - /** - * The **`mask`** CSS property hides an element (partially or fully) by masking or clipping the image at specific points. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :-: | - * | **1** | **2** | **3.2** | **12** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask - */ - mask?: MaskProperty; - /** The **`mask-border`** CSS property lets you create a mask along the edge of an element's border. */ - "mask-border"?: MaskBorderProperty; - /** - * The **`offset`** CSS property is a shorthand property for animating an element along a defined path. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset - */ - motion?: OffsetProperty; - /** - * The **`offset`** CSS property is a shorthand property for animating an element along a defined path. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset - */ - offset?: OffsetProperty; - /** - * The **`outline`** CSS property is a shorthand to set various outline properties in a single declaration: `outline-style`, `outline-width`, and `outline-color`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1.5** | **1.2** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/outline - */ - outline?: OutlineProperty; - /** - * The **`padding`** CSS property sets the padding area on all four sides of an element. It is a shorthand for `padding-top`, `padding-right`, `padding-bottom`, and `padding-left`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/padding - */ - padding?: PaddingProperty; - /** - * The CSS **`place-items`** shorthand property sets the `align-items` and `justify-items` properties, respectively. If the second value is not set, the first value is also used for it. - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | **11** | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | **11** | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/place-items - */ - "place-items"?: PlaceItemsProperty; - /** - * The **`place-self`** CSS property is a shorthand property sets both the `align-self` and `justify-self` properties. The first value is the `align-self` property value, the second the `justify-self` one. If the second value is not present, the first value is also used for it. - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | No | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/place-self - */ - "place-self"?: PlaceSelfProperty; - /** - * The **`text-decoration`** CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, and `text-decoration-style`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration - */ - "text-decoration"?: TextDecorationProperty; - /** - * 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`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis - */ - "text-emphasis"?: TextEmphasisProperty; - /** - * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition - */ - transition?: TransitionProperty; -} - -export interface StandardPropertiesHyphen - extends StandardLonghandPropertiesHyphen, - StandardShorthandPropertiesHyphen {} - -export interface VendorLonghandPropertiesHyphen { - /** - * The **`animation-delay`** CSS property sets when an animation starts. The animation can start later, immediately from its beginning, or immediately and partway through the animation. - * - * **Initial value**: `0s` - */ - "-moz-animation-delay"?: GlobalsString; - /** - * The **`animation-direction`** CSS property sets whether an animation should play forwards, backwards, or alternating back and forth. - * - * **Initial value**: `normal` - */ - "-moz-animation-direction"?: AnimationDirectionProperty; - /** - * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle. - * - * **Initial value**: `0s` - */ - "-moz-animation-duration"?: GlobalsString; - /** - * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution. - * - * **Initial value**: `none` - */ - "-moz-animation-fill-mode"?: AnimationFillModeProperty; - /** - * The **`animation-iteration-count`** CSS property sets the number of times an animation cycle should be played before stopping. - * - * **Initial value**: `1` - */ - "-moz-animation-iteration-count"?: AnimationIterationCountProperty; - /** - * The **`animation-name`** CSS property sets one or more animations to apply to an element. Each name is an `@keyframes` at-rule that sets the property values for the animation sequence. - * - * **Initial value**: `none` - */ - "-moz-animation-name"?: AnimationNameProperty; - /** - * The **`animation-play-state`** CSS property sets whether an animation is running or paused. - * - * **Initial value**: `running` - */ - "-moz-animation-play-state"?: AnimationPlayStateProperty; - /** - * The `**animation-timing-function**` CSS property sets how an animation progresses through the duration of each cycle. - * - * **Initial value**: `ease` - */ - "-moz-animation-timing-function"?: AnimationTimingFunctionProperty; - /** - * The **`-moz-appearance`** CSS property is used in Gecko (Firefox) to display an element using platform-native styling based on the operating system's theme. - * - * **Initial value**: `none` (but this value is overridden in the user agent CSS) - */ - "-moz-appearance"?: MozAppearanceProperty; - /** - * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user. - * - * **Initial value**: `visible` - */ - "-moz-backface-visibility"?: BackfaceVisibilityProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - */ - "-moz-border-end-color"?: BorderInlineEndColorProperty; - /** - * 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`. - * - * **Initial value**: `none` - */ - "-moz-border-end-style"?: BorderInlineEndStyleProperty; - /** - * 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`. - * - * **Initial value**: `medium` - */ - "-moz-border-end-width"?: BorderInlineEndWidthProperty; - /** - * 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`. - * - * **Initial value**: `currentcolor` - */ - "-moz-border-start-color"?: BorderInlineStartColorProperty; - /** - * 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`. - * - * **Initial value**: `none` - */ - "-moz-border-start-style"?: BorderInlineStartStyleProperty; - /** - * The **`box-sizing`** CSS property defines how the user agent should calculate the total width and height of an element. - * - * **Initial value**: `content-box` - */ - "-moz-box-sizing"?: BoxSizingProperty; - /** - * The **`column-count`** CSS property breaks an element's content into the specified number of columns. - * - * **Initial value**: `auto` - */ - "-moz-column-count"?: ColumnCountProperty; - /** - * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns. - * - * **Initial value**: `balance` - */ - "-moz-column-fill"?: ColumnFillProperty; - /** - * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns. - * - * **Initial value**: `normal` - */ - "-moz-column-gap"?: ColumnGapProperty; - /** - * The **`column-rule-color`** CSS property sets the color of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `currentcolor` - */ - "-moz-column-rule-color"?: ColumnRuleColorProperty; - /** - * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout. - * - * **Initial value**: `none` - */ - "-moz-column-rule-style"?: ColumnRuleStyleProperty; - /** - * The **`column-rule-width`** CSS property sets the width of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `medium` - */ - "-moz-column-rule-width"?: ColumnRuleWidthProperty; - /** - * The **`column-width`** CSS property specifies 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. - * - * **Initial value**: `auto` - */ - "-moz-column-width"?: ColumnWidthProperty; - /** - * If you reference an SVG image in a webpage (such as with the `` element or as a background image), the SVG image can coordinate with the embedding element (its context) to have the image adopt property values set on the embedding element. To do this the embedding element needs to list the properties that are to be made available to the image by listing them as values of the **`-moz-context-properties`** property, and the image needs to opt in to using those properties by using values such as the `context-fill` value. - * - * **Initial value**: `none` - */ - "-moz-context-properties"?: MozContextPropertiesProperty; - /** - * The non-standard **`-moz-float-edge`** CSS property specifies whether the height and width properties of the element include the margin, border, or padding thickness. - * - * **Initial value**: `content-box` - */ - "-moz-float-edge"?: MozFloatEdgeProperty; - /** - * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts. - * - * **Initial value**: `normal` - */ - "-moz-font-feature-settings"?: FontFeatureSettingsProperty; - /** - * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface. - * - * **Initial value**: `normal` - */ - "-moz-font-language-override"?: FontLanguageOverrideProperty; - /** - * The **`-moz-force-broken-image-icon`** extended CSS property can be used to force the broken image icon to be shown even when a broken image has an `alt` attribute. - * - * **Initial value**: `0` - */ - "-moz-force-broken-image-icon"?: GlobalsNumber; - /** - * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. You can prevent hyphenation entirely, use hyphenation in manually-specified points within the text, or let the browser automatically insert hyphens where appropriate. - * - * **Initial value**: `manual` - */ - "-moz-hyphens"?: HyphensProperty; - /** - * For certain XUL elements and pseudo-elements that use an image from the `list-style-image` property, this property specifies a region of the image that is used in place of the whole image. This allows elements to use different pieces of the same image to improve performance. - * - * **Initial value**: `auto` - */ - "-moz-image-region"?: MozImageRegionProperty; - /** - * 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`. - * - * **Initial value**: `0` - */ - "-moz-margin-end"?: MarginInlineEndProperty; - /** - * 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`. - * - * **Initial value**: `0` - */ - "-moz-margin-start"?: MarginInlineStartProperty; - /** - * The **`-moz-orient`** CSS property specifies the orientation of the element to which it's applied. - * - * **Initial value**: `inline` - */ - "-moz-orient"?: MozOrientProperty; - /** - * In Mozilla applications, the **`-moz-outline-radius-bottomleft`** CSS property can be used to round the bottom-left corner of an element's `outline`. - * - * **Initial value**: `0` - */ - "-moz-outline-radius-bottomleft"?: MozOutlineRadiusBottomleftProperty< - TLength - >; - /** - * In Mozilla applications, the **`-moz-outline-radius-bottomright`** CSS property can be used to round the bottom-right corner of an element's `outline`. - * - * **Initial value**: `0` - */ - "-moz-outline-radius-bottomright"?: MozOutlineRadiusBottomrightProperty< - TLength - >; - /** - * In Mozilla applications, the **`-moz-outline-radius-topleft`** CSS property can be used to round the top-left corner of an element's `outline`. - * - * **Initial value**: `0` - */ - "-moz-outline-radius-topleft"?: MozOutlineRadiusTopleftProperty; - /** - * In Mozilla applications, the **`-moz-outline-radius-topright`** CSS property can be used to round the top-right corner of an element's `outline`. - * - * **Initial value**: `0` - */ - "-moz-outline-radius-topright"?: MozOutlineRadiusToprightProperty; - /** - * 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. It corresponds to the `padding-top`, `padding-right`, `padding-bottom`, or `padding-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. - * - * **Initial value**: `0` - */ - "-moz-padding-end"?: PaddingInlineEndProperty; - /** - * 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. It corresponds to the `padding-top`, `padding-right`, `padding-bottom`, or `padding-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. - * - * **Initial value**: `0` - */ - "-moz-padding-start"?: PaddingInlineStartProperty; - /** - * 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. Each 3D element with z>0 becomes larger; each 3D-element with z<0 becomes smaller. The strength of the effect is determined by the value of this property. - * - * **Initial value**: `none` - */ - "-moz-perspective"?: PerspectiveProperty; - /** - * 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. - * - * **Initial value**: `50% 50%` - */ - "-moz-perspective-origin"?: PerspectiveOriginProperty; - /** - * **`-moz-stack-sizing`** is an extended CSS property. Normally, a `stack` will change its size so that all of its child elements are completely visible. For example, moving a child of the stack far to the right will widen the stack so the child remains visible. - * - * **Initial value**: `stretch-to-fit` - */ - "-moz-stack-sizing"?: MozStackSizingProperty; - /** - * The **`tab-size`** CSS property is used to customize the width of a tab (`U+0009`) character. - * - * **Initial value**: `8` - */ - "-moz-tab-size"?: TabSizeProperty; - /** - * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property. - * - * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable). - */ - "-moz-text-size-adjust"?: TextSizeAdjustProperty; - /** - * The **`transform-origin`** CSS property sets the origin for an element's transformations. - * - * **Initial value**: `50% 50% 0` - */ - "-moz-transform-origin"?: TransformOriginProperty; - /** - * 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. - * - * **Initial value**: `flat` - */ - "-moz-transform-style"?: TransformStyleProperty; - /** - * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes. - * - * **Initial value**: `0s` - */ - "-moz-transition-delay"?: GlobalsString; - /** - * 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. - * - * **Initial value**: `0s` - */ - "-moz-transition-duration"?: GlobalsString; - /** - * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied. - * - * **Initial value**: all - */ - "-moz-transition-property"?: TransitionPropertyProperty; - /** - * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect. - * - * **Initial value**: `ease` - */ - "-moz-transition-timing-function"?: TransitionTimingFunctionProperty; - /** - * The **`-moz-user-focus`** CSS property is used to indicate whether an element can have the focus. - * - * **Initial value**: `none` - */ - "-moz-user-focus"?: MozUserFocusProperty; - /** - * The **`user-modify`** property has no effect in Firefox. It was originally planned to determine whether or not the content of an element can be edited by a user. - * - * **Initial value**: `read-only` - */ - "-moz-user-modify"?: MozUserModifyProperty; - /** - * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. - * - * **Initial value**: `auto` - */ - "-moz-user-select"?: UserSelectProperty; - /** - * The **`-moz-window-dragging`** CSS property specifies whether a window is draggable or not. It only works in Chrome code, and only on Mac OS X. - * - * **Initial value**: `drag` - */ - "-moz-window-dragging"?: MozWindowDraggingProperty; - /** - * The **`-ms-accelerator`** CSS property is a Microsoft extension that sets or retrieves a string indicating whether the object represents a keyboard shortcut. - * - * **Initial value**: `false` - */ - "-ms-accelerator"?: MsAcceleratorProperty; - /** - * The **`align-self`** CSS property aligns flex items of the current flex line overriding the `align-items` value. If any of the item's cross-axis margin is set to `auto`, then `align-self` is ignored. In Grid layout `align-self` aligns the item inside the grid area. - * - * **Initial value**: `auto` - */ - "-ms-align-self"?: AlignSelfProperty; - /** - * The **`-ms-block-progression`** CSS property is a Microsoft extension that specifies the block progression and layout orientation. - * - * **Initial value**: `tb` - */ - "-ms-block-progression"?: MsBlockProgressionProperty; - /** - * The **`-ms-content-zoom-chaining`** CSS property is a Microsoft extension specifying the zoom behavior that occurs when a user hits the zoom limit during page manipulation. - * - * **Initial value**: `none` - */ - "-ms-content-zoom-chaining"?: MsContentZoomChainingProperty; - /** - * The **`-ms-content-zoom-limit-max`** CSS property is a Microsoft extension that specifies the selected elements' maximum zoom factor. - * - * **Initial value**: `400%` - */ - "-ms-content-zoom-limit-max"?: GlobalsString; - /** - * The **`-ms-content-zoom-limit-min`** CSS property is a Microsoft extension that specifies the minimum zoom factor. - * - * **Initial value**: `100%` - */ - "-ms-content-zoom-limit-min"?: GlobalsString; - /** - * The **`-ms-content-zoom-snap-points`** CSS property is a Microsoft extension that specifies where zoom snap-points are located. - * - * **Initial value**: `snapInterval(0%, 100%)` - */ - "-ms-content-zoom-snap-points"?: GlobalsString; - /** - * The **`-ms-content-zoom-snap-type`** CSS property is a Microsoft extension that specifies how zooming is affected by defined snap-points. - * - * **Initial value**: `none` - */ - "-ms-content-zoom-snap-type"?: MsContentZoomSnapTypeProperty; - /** - * The **`-ms-content-zooming`** CSS property is a Microsoft extension that specifies whether zooming is enabled. - * - * **Initial value**: zoom for the top level element, none for all other elements - */ - "-ms-content-zooming"?: MsContentZoomingProperty; - /** - * The `-ms-filter` CSS property is a Microsoft extension that sets or retrieves the filter or collection of filters applied to an object. - * - * **Initial value**: "" (the empty string) - */ - "-ms-filter"?: GlobalsString; - /** - * 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). - * - * **Initial value**: `row` - */ - "-ms-flex-direction"?: FlexDirectionProperty; - /** - * The **`flex-grow`** CSS property sets how much of the available space in the flex container should be assigned to that item (the flex grow factor). If all sibling items have the same flex grow factor, then all items will receive the same share of available space, otherwise it is distributed according to the ratio defined by the different flex grow factors. - * - * **Initial value**: `0` - */ - "-ms-flex-positive"?: GlobalsNumber; - /** - * The **`-ms-flow-from`** CSS property is a Microsoft extension that gets or sets a value identifying a region container in the document that accepts the content flow from the data source. - * - * **Initial value**: `none` - */ - "-ms-flow-from"?: MsFlowFromProperty; - /** - * The **`-ms-flow-into`** CSS property is a Microsoft extension that gets or sets a value identifying an iframe container in the document that serves as the region's data source. - * - * **Initial value**: `none` - */ - "-ms-flow-into"?: MsFlowIntoProperty; - /** - * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track. - * - * **Initial value**: `auto` - */ - "-ms-grid-columns"?: GridAutoColumnsProperty; - /** - * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track. - * - * **Initial value**: `auto` - */ - "-ms-grid-rows"?: GridAutoRowsProperty; - /** - * The **`-ms-high-contrast-adjust`** CSS property is a Microsoft extension that gets or sets a value indicating whether to override any CSS properties that would have been set in high contrast mode. - * - * **Initial value**: `auto` - */ - "-ms-high-contrast-adjust"?: MsHighContrastAdjustProperty; - /** - * The **`-ms-hyphenate-limit-chars`** CSS property is a Microsoft extension that specifies one to three values indicating the minimum number of characters in a hyphenated word. If the word does not meet the required minimum number of characters in the word, before the hyphen, or after the hyphen, then the word is not hyphenated. - * - * **Initial value**: `auto` - */ - "-ms-hyphenate-limit-chars"?: MsHyphenateLimitCharsProperty; - /** - * The **`-ms-hyphenate-limit-lines`** CSS property is a Microsoft extension specifying the maximum number of consecutive lines in an element that may be ended with a hyphenated word. - * - * **Initial value**: `no-limit` - */ - "-ms-hyphenate-limit-lines"?: MsHyphenateLimitLinesProperty; - /** - * The `**-ms-hyphenate-limit-zone**` CSS property is a Microsoft extension specifying the width of the hyphenation zone. - * - * **Initial value**: `0` - */ - "-ms-hyphenate-limit-zone"?: MsHyphenateLimitZoneProperty; - /** - * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. You can prevent hyphenation entirely, use hyphenation in manually-specified points within the text, or let the browser automatically insert hyphens where appropriate. - * - * **Initial value**: `manual` - */ - "-ms-hyphens"?: HyphensProperty; - /** - * The **`-ms-ime-align`** CSS property is a Microsoft extension aligning the Input Method Editor (IME) candidate window box relative to the element on which the IME composition is active. The extension is implemented in Microsoft Edge and Internet Explorer 11. - * - * **Initial value**: `auto` - */ - "-ms-ime-align"?: MsImeAlignProperty; - /** - * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols. - * - * **Initial value**: `auto` - */ - "-ms-line-break"?: LineBreakProperty; - /** - * 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. - * - * **Initial value**: `0` - */ - "-ms-order"?: GlobalsNumber; - /** - * The **`-ms-overflow-style`** CSS property is a Microsoft extension controlling the behavior of scrollbars when the content of an element overflows. - * - * **Initial value**: `auto` - */ - "-ms-overflow-style"?: MsOverflowStyleProperty; - /** - * 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. - * - * **Initial value**: `visible` - */ - "-ms-overflow-x"?: OverflowXProperty; - /** - * 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. - * - * **Initial value**: `visible` - */ - "-ms-overflow-y"?: OverflowYProperty; - /** - * The `**-ms-scroll-chaining**` CSS property is a Microsoft extension that specifies the scrolling behavior that occurs when a user hits the scroll limit during a manipulation. - * - * **Initial value**: `chained` - */ - "-ms-scroll-chaining"?: MsScrollChainingProperty; - /** - * The `**-ms-scroll-limit-x-max**` CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollLeft` property. - * - * **Initial value**: `auto` - */ - "-ms-scroll-limit-x-max"?: MsScrollLimitXMaxProperty; - /** - * The **`-ms-scroll-limit-x-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollLeft` property. - * - * **Initial value**: `0` - */ - "-ms-scroll-limit-x-min"?: MsScrollLimitXMinProperty; - /** - * The **`-ms-scroll-limit-y-max`** CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollTop` property. - * - * **Initial value**: `auto` - */ - "-ms-scroll-limit-y-max"?: MsScrollLimitYMaxProperty; - /** - * The **`-ms-scroll-limit-y-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollTop` property. - * - * **Initial value**: `0` - */ - "-ms-scroll-limit-y-min"?: MsScrollLimitYMinProperty; - /** - * The **`-ms-scroll-rails`** CSS property is a Microsoft extension that specifies whether scrolling locks to the primary axis of motion. - * - * **Initial value**: `railed` - */ - "-ms-scroll-rails"?: MsScrollRailsProperty; - /** - * The **`-ms-scroll-snap-points-x`** CSS property is a Microsoft extension that specifies where snap-points will be located along the x-axis. - * - * **Initial value**: `snapInterval(0px, 100%)` - */ - "-ms-scroll-snap-points-x"?: GlobalsString; - /** - * The **`-ms-scroll-snap-points-y`** CSS property is a Microsoft extension that specifies where snap-points will be located along the y-axis. - * - * **Initial value**: `snapInterval(0px, 100%)` - */ - "-ms-scroll-snap-points-y"?: GlobalsString; - /** - * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one. - * - * **Initial value**: `none` - */ - "-ms-scroll-snap-type"?: MsScrollSnapTypeProperty; - /** - * The **`-ms-scroll-translation`** CSS property is a Microsoft extension that specifies whether vertical-to-horizontal scroll wheel translation occurs on the specified element. - * - * **Initial value**: `none` - */ - "-ms-scroll-translation"?: MsScrollTranslationProperty; - /** - * The **`-ms-scrollbar-3dlight-color`** CSS property is a Microsoft extension specifying the color of the top and left edges of the scroll box and scroll arrows of a scroll bar. - * - * **Initial value**: depends on user agent - */ - "-ms-scrollbar-3dlight-color"?: MsScrollbar3dlightColorProperty; - /** - * The **`-ms-scrollbar-arrow-color`** CSS property is a Microsoft extension that specifies the color of the arrow elements of a scroll arrow. - * - * **Initial value**: `ButtonText` - */ - "-ms-scrollbar-arrow-color"?: MsScrollbarArrowColorProperty; - /** - * The `**-ms-scrollbar-base-color**` CSS property is a Microsoft extension that specifies the base color of the main elements of a scroll bar. - * - * **Initial value**: depends on user agent - */ - "-ms-scrollbar-base-color"?: MsScrollbarBaseColorProperty; - /** - * The **`-ms-scrollbar-darkshadow-color`** CSS property is a Microsoft extension that specifies the color of a scroll bar's gutter. - * - * **Initial value**: `ThreeDDarkShadow` - */ - "-ms-scrollbar-darkshadow-color"?: MsScrollbarDarkshadowColorProperty; - /** - * The `**-ms-scrollbar-face-color**` CSS property is a Microsoft extension that specifies the color of the scroll box and scroll arrows of a scroll bar. - * - * **Initial value**: `ThreeDFace` - */ - "-ms-scrollbar-face-color"?: MsScrollbarFaceColorProperty; - /** - * The `**-ms-scrollbar-highlight-color**` CSS property is a Microsoft extension that specifies the color of the slider tray, the top and left edges of the scroll box, and the scroll arrows of a scroll bar. - * - * **Initial value**: `ThreeDHighlight` - */ - "-ms-scrollbar-highlight-color"?: MsScrollbarHighlightColorProperty; - /** - * The **`-ms-scrollbar-shadow-color`** CSS property is a Microsoft extension that specifies the color of the bottom and right edges of the scroll box and scroll arrows of a scroll bar. - * - * **Initial value**: `ThreeDDarkShadow` - */ - "-ms-scrollbar-shadow-color"?: MsScrollbarShadowColorProperty; - /** - * The **`-ms-scrollbar-track-color`** CSS property is a Microsoft extension that specifies the color of the track element of a scrollbar. - * - * **Initial value**: `Scrollbar` - */ - "-ms-scrollbar-track-color"?: MsScrollbarTrackColorProperty; - /** - * The **`-ms-text-autospace`** CSS property is a Microsoft extension that specifies the autospacing and narrow space width adjustment of text. - * - * **Initial value**: `none` - */ - "-ms-text-autospace"?: MsTextAutospaceProperty; - /** - * 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. - * - * **Initial value**: `none` - */ - "-ms-text-combine-horizontal"?: TextCombineUprightProperty; - /** - * 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. - * - * **Initial value**: `clip` - */ - "-ms-text-overflow"?: TextOverflowProperty; - /** - * The **`touch-action`** CSS property sets how a region can be manipulated by a touchscreen user (for example, by zooming features built into the browser). - * - * **Initial value**: `auto` - */ - "-ms-touch-action"?: TouchActionProperty; - /** - * The **`-ms-touch-select`** CSS property is a Microsoft extension that toggles the gripper visual elements that enable touch text selection. - * - * **Initial value**: `grippers` - */ - "-ms-touch-select"?: MsTouchSelectProperty; - /** - * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model. - * - * **Initial value**: `none` - */ - "-ms-transform"?: TransformProperty; - /** - * The **`transform-origin`** CSS property sets the origin for an element's transformations. - * - * **Initial value**: `50% 50% 0` - */ - "-ms-transform-origin"?: TransformOriginProperty; - /** - * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes. - * - * **Initial value**: `0s` - */ - "-ms-transition-delay"?: GlobalsString; - /** - * 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. - * - * **Initial value**: `0s` - */ - "-ms-transition-duration"?: GlobalsString; - /** - * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied. - * - * **Initial value**: all - */ - "-ms-transition-property"?: TransitionPropertyProperty; - /** - * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect. - * - * **Initial value**: `ease` - */ - "-ms-transition-timing-function"?: TransitionTimingFunctionProperty; - /** - * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. - * - * **Initial value**: `text` - */ - "-ms-user-select"?: MsUserSelectProperty; - /** - * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box. - * - * **Initial value**: `normal` - */ - "-ms-word-break"?: WordBreakProperty; - /** - * The **`-ms-wrap-flow`** CSS property is a Microsoft extension that specifies how exclusions impact inline content within block-level elements. - * - * **Initial value**: `auto` - */ - "-ms-wrap-flow"?: MsWrapFlowProperty; - /** - * The **`-ms-wrap-margin`** CSS property is a Microsoft extension that specifies a margin that offsets the inner wrap shape from other shapes. - * - * **Initial value**: `0` - */ - "-ms-wrap-margin"?: MsWrapMarginProperty; - /** - * The **`-ms-wrap-through`** CSS property is a Microsoft extension that specifies how content should wrap around an exclusion element. - * - * **Initial value**: `wrap` - */ - "-ms-wrap-through"?: MsWrapThroughProperty; - /** - * 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. - * - * **Initial value**: `horizontal-tb` - */ - "-ms-writing-mode"?: WritingModeProperty; - /** - * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `` or `
` have shared or separate borders. - * - * **Initial value**: `separate` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1** | **1.2** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-collapse - */ - borderCollapse?: BorderCollapseProperty | BorderCollapseProperty[]; - /** - * 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 on the element's `writing-mode`, `direction`, and `text-orientation`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius - */ - borderEndEndRadius?: - | BorderEndEndRadiusProperty - | BorderEndEndRadiusProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius - */ - borderEndStartRadius?: - | BorderEndStartRadiusProperty - | BorderEndStartRadiusProperty[]; - /** - * The **`border-image-outset`** CSS property sets the distance by which an element's border image is set out from its border box. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-outset - */ - borderImageOutset?: - | BorderImageOutsetProperty - | BorderImageOutsetProperty[]; - /** - * The **`border-image-repeat`** CSS property defines how the edge regions of a source image are adjusted to fit the dimensions of an element's border image. - * - * **Initial value**: `stretch` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-repeat - */ - borderImageRepeat?: BorderImageRepeatProperty | BorderImageRepeatProperty[]; - /** - * 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. - * - * **Initial value**: `100%` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice - */ - borderImageSlice?: BorderImageSliceProperty | BorderImageSliceProperty[]; - /** - * The **`border-image-source`** CSS property sets the source image used to create an element's border image. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-source - */ - borderImageSource?: BorderImageSourceProperty | BorderImageSourceProperty[]; - /** - * The **`border-image-width`** CSS property sets the width of an element's border image. - * - * **Initial value**: `1` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **13** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-width - */ - borderImageWidth?: - | BorderImageWidthProperty - | BorderImageWidthProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color - */ - borderInlineColor?: BorderInlineColorProperty | BorderInlineColorProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-end-color)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color - */ - borderInlineEndColor?: - | BorderInlineEndColorProperty - | BorderInlineEndColorProperty[]; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-end-style)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style - */ - borderInlineEndStyle?: - | BorderInlineEndStyleProperty - | BorderInlineEndStyleProperty[]; - /** - * 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`. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-end-width)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width - */ - borderInlineEndWidth?: - | BorderInlineEndWidthProperty - | BorderInlineEndWidthProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :---------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-start-color)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color - */ - borderInlineStartColor?: - | BorderInlineStartColorProperty - | BorderInlineStartColorProperty[]; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :---------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-start-style)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style - */ - borderInlineStartStyle?: - | BorderInlineStartStyleProperty - | BorderInlineStartStyleProperty[]; - /** - * 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`. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width - */ - borderInlineStartWidth?: - | BorderInlineStartWidthProperty - | BorderInlineStartWidthProperty[]; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style - */ - borderInlineStyle?: BorderInlineStyleProperty | BorderInlineStyleProperty[]; - /** - * 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`. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width - */ - borderInlineWidth?: - | BorderInlineWidthProperty - | BorderInlineWidthProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left-color - */ - borderLeftColor?: BorderLeftColorProperty | BorderLeftColorProperty[]; - /** - * The **`border-left-style`** CSS property sets the line style of an element's left `border`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left-style - */ - borderLeftStyle?: BorderLeftStyleProperty | BorderLeftStyleProperty[]; - /** - * The **`border-left-width`** CSS property sets the width of the left border of an element. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left-width - */ - borderLeftWidth?: - | BorderLeftWidthProperty - | BorderLeftWidthProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right-color - */ - borderRightColor?: BorderRightColorProperty | BorderRightColorProperty[]; - /** - * The **`border-right-style`** CSS property sets the line style of an element's right `border`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right-style - */ - borderRightStyle?: BorderRightStyleProperty | BorderRightStyleProperty[]; - /** - * The **`border-right-width`** CSS property sets the width of the right border of an element. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right-width - */ - borderRightWidth?: - | BorderRightWidthProperty - | BorderRightWidthProperty[]; - /** - * The **`border-spacing`** CSS property sets the distance between the borders of adjacent `
` cells. This property applies only when `border-collapse` is `separate`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-spacing - */ - borderSpacing?: - | BorderSpacingProperty - | BorderSpacingProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius - */ - borderStartEndRadius?: - | BorderStartEndRadiusProperty - | BorderStartEndRadiusProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius - */ - borderStartStartRadius?: - | BorderStartStartRadiusProperty - | BorderStartStartRadiusProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-color - */ - borderTopColor?: BorderTopColorProperty | BorderTopColorProperty[]; - /** - * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **4** | **4** | **5** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius - */ - borderTopLeftRadius?: - | BorderTopLeftRadiusProperty - | BorderTopLeftRadiusProperty[]; - /** - * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **4** | **4** | **5** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius - */ - borderTopRightRadius?: - | BorderTopRightRadiusProperty - | BorderTopRightRadiusProperty[]; - /** - * The **`border-top-style`** CSS property sets the line style of an element's top `border`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-style - */ - borderTopStyle?: BorderTopStyleProperty | BorderTopStyleProperty[]; - /** - * The **`border-top-width`** CSS property sets the width of the top border of an element. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-width - */ - borderTopWidth?: - | BorderTopWidthProperty - | BorderTopWidthProperty[]; - /** - * The **`bottom`** CSS property participates in specifying the vertical position of a _positioned element_. It has no effect on non-positioned elements. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/bottom - */ - bottom?: BottomProperty | BottomProperty[]; - /** - * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages. - * - * **Initial value**: `slice` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------: | :-----: | :-----: | :--: | :-: | - * | **22** _-x-_ | **32** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/box-decoration-break - */ - boxDecorationBreak?: - | BoxDecorationBreakProperty - | BoxDecorationBreakProperty[]; - /** - * 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 radii, and color. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **10** | **4** | **5.1** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/box-shadow - */ - boxShadow?: BoxShadowProperty | BoxShadowProperty[]; - /** - * The **`box-sizing`** CSS property defines how the user agent should calculate the total width and height of an element. - * - * **Initial value**: `content-box` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **10** | **29** | **5.1** | **12** | **8** | - * | 1 _-x-_ | 1 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/box-sizing - */ - boxSizing?: BoxSizingProperty | BoxSizingProperty[]; - /** - * The **`break-after`** CSS property defines how page, column, or region breaks should behave after a generated box. If there is no generated box, the property is ignored. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | No | No | **12** | **10** | - * - * --- - * - * _Supported in Paged Media_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in CSS Regions_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/break-after - */ - breakAfter?: BreakAfterProperty | BreakAfterProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | No | **12** | **10** | - * - * --- - * - * _Supported in Paged Media_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in CSS Regions_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/break-before - */ - breakBefore?: BreakBeforeProperty | BreakBeforeProperty[]; - /** - * The **`break-inside`** CSS property defines how page, column, or region breaks should behave inside a generated box. If there is no generated box, the property is ignored. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in Paged Media_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in CSS Regions_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/break-inside - */ - breakInside?: BreakInsideProperty | BreakInsideProperty[]; - /** - * The **`caption-side`** CSS property puts the content of a table's `
` on the specified side. The values are relative to the `writing-mode` of the table. - * - * **Initial value**: `top` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/caption-side - */ - captionSide?: CaptionSideProperty | CaptionSideProperty[]; - /** - * The **`caret-color`** CSS property sets the color of the insertion caret, the visible marker where the next character typed will be inserted. The caret appears in elements such as `` or those with the `contenteditable` attribute. The caret is typically a thin vertical line that flashes to help make it more noticeable. By default, it is black, but its color can be altered with this property. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **53** | **11.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/caret-color - */ - caretColor?: CaretColorProperty | CaretColorProperty[]; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/clear - */ - clear?: ClearProperty | ClearProperty[]; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **55** | **3.5** | **9.1** | **12** | **10** | - * | 23 _-x-_ | | 6.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/clip-path - */ - clipPath?: ClipPathProperty | ClipPathProperty[]; - /** - * 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`. - * - * **Initial value**: Varies from one browser to another - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/color - */ - color?: ColorProperty | ColorProperty[]; - /** - * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device. - * - * **Initial value**: `economy` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------: | :-----: | :---------: | :--: | :-: | - * | **49** _-x-_ | **48** | **6** _-x-_ | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/color-adjust - */ - colorAdjust?: ColorAdjustProperty | ColorAdjustProperty[]; - /** - * The **`column-count`** CSS property breaks an element's content into the specified number of columns. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 1.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-count - */ - columnCount?: ColumnCountProperty | ColumnCountProperty[]; - /** - * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns. - * - * **Initial value**: `balance` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | | 13 _-x-_ | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-fill - */ - columnFill?: ColumnFillProperty | ColumnFillProperty[]; - /** - * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns. - * - * **Initial value**: `normal` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :---------: | :--: | :-: | - * | No | **63** | **3** _-x-_ | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-------------: | :-------------: | :-------------------: | :----: | :-: | - * | **66** | **61** | **10.1** _(grid-gap)_ | **16** | No | - * | 57 _(grid-gap)_ | 52 _(grid-gap)_ | | | | - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **10** | **12** | **10** | - * | 1 _-x-_ | 1.5 _-x-_ | 3 _-x-_ | | | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-gap - */ - columnGap?: ColumnGapProperty | ColumnGapProperty[]; - /** - * The **`column-rule-color`** CSS property sets the color of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-color - */ - columnRuleColor?: ColumnRuleColorProperty | ColumnRuleColorProperty[]; - /** - * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-style - */ - columnRuleStyle?: ColumnRuleStyleProperty | ColumnRuleStyleProperty[]; - /** - * The **`column-rule-width`** CSS property sets the width of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-width - */ - columnRuleWidth?: - | ColumnRuleWidthProperty - | ColumnRuleWidthProperty[]; - /** - * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **50** | **71** | **9** | **12** | **10** | - * | 6 _-x-_ | | 5.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-span - */ - columnSpan?: ColumnSpanProperty | ColumnSpanProperty[]; - /** - * The **`column-width`** CSS property specifies 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **50** | **9** | **12** | **10** | - * | 1 _-x-_ | 1.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-width - */ - columnWidth?: ColumnWidthProperty | ColumnWidthProperty[]; - /** - * The **`contain`** CSS property allows an author to indicate that an element and its contents are, as much as possible, _independent_ of the rest of the document tree. This allows the browser to recalculate layout, style, paint, size, or any combination of them for a limited area of the DOM and not the entire page. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **52** | **69** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/contain - */ - contain?: ContainProperty | ContainProperty[]; - /** - * The **`content`** CSS property replaces an element with a generated value. Objects inserted using the `content` property are _anonymous replaced elements._ - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/content - */ - content?: ContentProperty | ContentProperty[]; - /** - * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **2** | **1** | **3** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/counter-increment - */ - counterIncrement?: CounterIncrementProperty | CounterIncrementProperty[]; - /** - * The **`counter-reset`** CSS property resets a CSS counter to a given value. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **2** | **1** | **3** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/counter-reset - */ - counterReset?: CounterResetProperty | CounterResetProperty[]; - /** - * The **`counter-set`** CSS property sets a CSS counter to a given value. It manipulates the value of existing counters, and will only create new counters if there isn't already a counter of the given name on the element. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **68** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/counter-set - */ - counterSet?: CounterSetProperty | CounterSetProperty[]; - /** - * The **`cursor`** CSS property sets mouse cursor to display when the mouse pointer is over an element. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1** | **1.2** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/cursor - */ - cursor?: CursorProperty | CursorProperty[]; - /** - * The **`direction`** CSS property sets the direction of text, table columns, and horizontal overflow. Use `rtl` for languages written from right to left (like Hebrew or Arabic), and `ltr` for those written from left to right (like English and most other languages). - * - * **Initial value**: `ltr` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **2** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/direction - */ - direction?: DirectionProperty | DirectionProperty[]; - /** - * The **`display`** CSS property defines the _display type_ of an element, which consists of the two basic qualities of how an element generates boxes — the **outer display type** defining how the box participates in flow layout, and the **inner display type** defining how the children of the box are laid out. - * - * **Initial value**: `inline` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/display - */ - display?: DisplayProperty | DisplayProperty[]; - /** - * The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `` cells that have no visible content. - * - * **Initial value**: `show` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1** | **1.2** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/empty-cells - */ - emptyCells?: EmptyCellsProperty | EmptyCellsProperty[]; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :-: | - * | **53** | **35** | **9.1** | **12** | No | - * | 18 _-x-_ | | 6 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/filter - */ - filter?: FilterProperty | FilterProperty[]; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :----: | - * | **29** | **22** | **9** | **12** | **11** | - * | 21 _-x-_ | | 7 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-basis - */ - flexBasis?: FlexBasisProperty | FlexBasisProperty[]; - /** - * 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). - * - * **Initial value**: `row` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :------: | - * | **29** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 7 _-x-_ | | 10 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-direction - */ - flexDirection?: FlexDirectionProperty | FlexDirectionProperty[]; - /** - * The **`flex-grow`** CSS property sets how much of the available space in the flex container should be assigned to that item (the flex grow factor). If all sibling items have the same flex grow factor, then all items will receive the same share of available space, otherwise it is distributed according to the ratio defined by the different flex grow factors. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----------------------: | - * | **29** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | 10 _(-ms-flex-positive)_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-grow - */ - flexGrow?: GlobalsNumber | GlobalsNumber[]; - /** - * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of flex items is larger than the flex container, items shrink to fit according to `flex-shrink`. - * - * **Initial value**: `1` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :----: | - * | **29** | **20** | **9** | **12** | **10** | - * | 21 _-x-_ | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-shrink - */ - flexShrink?: GlobalsNumber | GlobalsNumber[]; - /** - * 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. - * - * **Initial value**: `nowrap` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **29** | **28** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-wrap - */ - flexWrap?: FlexWrapProperty | FlexWrapProperty[]; - /** - * The **`float`** CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning). - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/float - */ - float?: FloatProperty | FloatProperty[]; - /** - * 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. - * - * **Initial value**: depends on user agent - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-family - */ - fontFamily?: FontFamilyProperty | FontFamilyProperty[]; - /** - * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :------: | :-----: | :----: | :----: | - * | **48** | **34** | **9.1** | **15** | **10** | - * | 16 _-x-_ | 15 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-feature-settings - */ - fontFeatureSettings?: - | FontFeatureSettingsProperty - | FontFeatureSettingsProperty[]; - /** - * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------: | :-----: | :----: | :--: | :-: | - * | **32** _-x-_ | **32** | **7** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-kerning - */ - fontKerning?: FontKerningProperty | FontKerningProperty[]; - /** - * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **34** | No | No | No | - * | | 4 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-language-override - */ - fontLanguageOverride?: - | FontLanguageOverrideProperty - | FontLanguageOverrideProperty[]; - /** - * The **`font-optical-sizing`** CSS property sets whether text rendering is optimized for viewing at different sizes. This only works for fonts that have an optical size variation axis. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | **79** | **62** | **11** | **17** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing - */ - fontOpticalSizing?: FontOpticalSizingProperty | FontOpticalSizingProperty[]; - /** - * The **`font-size`** CSS property sets the size of the font. This property is also used to compute the size of `em`, `ex`, and other relative `` units. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-size - */ - fontSize?: FontSizeProperty | FontSizeProperty[]; - /** - * The **`font-size-adjust`** CSS property sets how the font size should be chosen based on the height of lowercase rather than capital letters. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **54** | **1** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-size-adjust - */ - fontSizeAdjust?: FontSizeAdjustProperty | FontSizeAdjustProperty[]; - /** - * The **`font-stretch`** CSS property selects a normal, condensed, or expanded face from a font. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **60** | **9** | **11** | **12** | **9** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-stretch - */ - fontStretch?: FontStretchProperty | FontStretchProperty[]; - /** - * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-style - */ - fontStyle?: FontStyleProperty | FontStyleProperty[]; - /** - * The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser. - * - * **Initial value**: `weight style` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **34** | **9** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis - */ - fontSynthesis?: FontSynthesisProperty | FontSynthesisProperty[]; - /** - * The **font-variant** CSS property is a shorthand for the longhand properties `font-variant-caps`, `font-variant-numeric`, `font-variant-alternates`, `font-variant-ligatures`, and `font-variant-east-asian`. You can also set the CSS Level 2 (Revision 1) values of `font-variant`, (that is, `normal` or `small-caps`), by using the `font` shorthand. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant - */ - fontVariant?: FontVariantProperty | FontVariantProperty[]; - /** - * The **`font-variant-caps`** CSS property controls the use of alternate glyphs for capital letters. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **52** | **34** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-caps - */ - fontVariantCaps?: FontVariantCapsProperty | FontVariantCapsProperty[]; - /** - * The **`font-variant-east-asian`** CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **63** | **34** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian - */ - fontVariantEastAsian?: - | FontVariantEastAsianProperty - | FontVariantEastAsianProperty[]; - /** - * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :--: | :-: | - * | **34** | **34** | **9.1** | No | No | - * | 31 _-x-_ | | 7 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures - */ - fontVariantLigatures?: - | FontVariantLigaturesProperty - | FontVariantLigaturesProperty[]; - /** - * The **`font-variant-numeric`** CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **52** | **34** | **9.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric - */ - fontVariantNumeric?: - | FontVariantNumericProperty - | FontVariantNumericProperty[]; - /** - * The **`font-variant-position`** CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **34** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position - */ - fontVariantPosition?: - | FontVariantPositionProperty - | FontVariantPositionProperty[]; - /** - * The **`font-variation-settings`** CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | **62** | **62** | **11** | **17** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variation-settings - */ - fontVariationSettings?: - | FontVariationSettingsProperty - | FontVariationSettingsProperty[]; - /** - * The **`font-weight`** CSS property specifies the weight (or boldness) of the font. The font weights available to you will depend on the `font-family` you are using. Some fonts are only available in `normal` and `bold`. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **2** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-weight - */ - fontWeight?: FontWeightProperty | FontWeightProperty[]; - /** - * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :---------------------: | :-------------------------: | - * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-columns)_ | - * | | | | 12 _(-ms-grid-columns)_ | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns - */ - gridAutoColumns?: - | GridAutoColumnsProperty - | GridAutoColumnsProperty[]; - /** - * The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid. - * - * **Initial value**: `row` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow - */ - gridAutoFlow?: GridAutoFlowProperty | GridAutoFlowProperty[]; - /** - * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :------------------: | :----------------------: | - * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-rows)_ | - * | | | | 12 _(-ms-grid-rows)_ | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows - */ - gridAutoRows?: - | GridAutoRowsProperty - | GridAutoRowsProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-end - */ - gridColumnEnd?: GridColumnEndProperty | GridColumnEndProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-start - */ - gridColumnStart?: GridColumnStartProperty | GridColumnStartProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-end - */ - gridRowEnd?: GridRowEndProperty | GridRowEndProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-start - */ - gridRowStart?: GridRowStartProperty | GridRowStartProperty[]; - /** - * The **`grid-template-areas`** CSS property specifies named grid areas. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-areas - */ - gridTemplateAreas?: GridTemplateAreasProperty | GridTemplateAreasProperty[]; - /** - * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-columns - */ - gridTemplateColumns?: - | GridTemplateColumnsProperty - | GridTemplateColumnsProperty[]; - /** - * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-rows - */ - gridTemplateRows?: - | GridTemplateRowsProperty - | GridTemplateRowsProperty[]; - /** - * The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | **10** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/hanging-punctuation - */ - hangingPunctuation?: - | HangingPunctuationProperty - | HangingPunctuationProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/height - */ - height?: HeightProperty | HeightProperty[]; - /** - * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. You can prevent hyphenation entirely, use hyphenation in manually-specified points within the text, or let the browser automatically insert hyphens where appropriate. - * - * **Initial value**: `manual` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----------: | :----------: | :----------: | - * | **55** | **43** | **5.1** _-x-_ | **12** _-x-_ | **10** _-x-_ | - * | 13 _-x-_ | 6 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/hyphens - */ - hyphens?: HyphensProperty | HyphensProperty[]; - /** - * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image. It should _not_ be used for any other orientation adjustments; instead, the `transform` property should be used with the `rotate` ``. - * - * **Initial value**: `0deg` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **26** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/image-orientation - */ - imageOrientation?: ImageOrientationProperty | ImageOrientationProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **13** | **3.6** | **6** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/image-rendering - */ - imageRendering?: ImageRenderingProperty | ImageRenderingProperty[]; - /** **Initial value**: `1dppx` */ - imageResolution?: ImageResolutionProperty | ImageResolutionProperty[]; - /** - * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | **9** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/initial-letter - */ - initialLetter?: InitialLetterProperty | InitialLetterProperty[]; - /** - * The **`inline-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inline-size - */ - inlineSize?: InlineSizeProperty | InlineSizeProperty[]; - /** - * The **`inset`** CSS property defines the logical block and inline start and end offsets of an element, which map 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset - */ - inset?: InsetProperty | InsetProperty[]; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-block - */ - insetBlock?: InsetBlockProperty | InsetBlockProperty[]; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end - */ - insetBlockEnd?: - | InsetBlockEndProperty - | InsetBlockEndProperty[]; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start - */ - insetBlockStart?: - | InsetBlockStartProperty - | InsetBlockStartProperty[]; - /** - * The **`inset-inline`** 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline - */ - insetInline?: InsetInlineProperty | InsetInlineProperty[]; - /** - * The **`inset-inline-end`** CSS property defines the logical inline end inset 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end - */ - insetInlineEnd?: - | InsetInlineEndProperty - | InsetInlineEndProperty[]; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start - */ - insetInlineStart?: - | InsetInlineStartProperty - | InsetInlineStartProperty[]; - /** - * The **`isolation`** CSS property determines whether an element must create a new stacking context. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **41** | **36** | **8** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/isolation - */ - isolation?: IsolationProperty | IsolationProperty[]; - /** - * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container. - * - * **Initial value**: `normal` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **52** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/justify-content - */ - justifyContent?: JustifyContentProperty | JustifyContentProperty[]; - /** - * 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. - * - * **Initial value**: `legacy` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **52** | **20** | **9** | **12** | **11** | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **45** | **10.1** | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/justify-items - */ - justifyItems?: JustifyItemsProperty | JustifyItemsProperty[]; - /** - * The CSS **`justify-self`** property set the way a box is justified inside its alignment container along the appropriate axis. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **45** | **10.1** | **16** | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **45** | **10.1** | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/justify-self - */ - justifySelf?: JustifySelfProperty | JustifySelfProperty[]; - /** - * The **`left`** CSS property participates in specifying the horizontal position of a _positioned element_. It has no effect on non-positioned elements. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/left - */ - left?: LeftProperty | LeftProperty[]; - /** - * The **`letter-spacing`** CSS property sets the spacing behavior between text characters. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/letter-spacing - */ - letterSpacing?: - | LetterSpacingProperty - | LetterSpacingProperty[]; - /** - * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :---------: | :----: | :-----: | - * | **58** | **69** | **3** _-x-_ | **14** | **5.5** | - * | 1 _-x-_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/line-break - */ - lineBreak?: LineBreakProperty | LineBreakProperty[]; - /** - * The **`line-height`** CSS property sets the amount of space used for lines, such as in text. On block-level elements, it specifies the minimum height of line boxes within the element. On non-replaced inline elements, it specifies the height that is used to calculate line box height. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/line-height - */ - lineHeight?: LineHeightProperty | LineHeightProperty[]; - /** - * The **`line-height-step`** CSS property sets the step unit for line box heights. When the property is set, line box heights are rounded up to the closest multiple of the unit. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | No | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/line-height-step - */ - lineHeightStep?: - | LineHeightStepProperty - | LineHeightStepProperty[]; - /** - * The **`list-style-image`** CSS property sets an image to be used as the list item marker. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style-image - */ - listStyleImage?: ListStyleImageProperty | ListStyleImageProperty[]; - /** - * The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item. - * - * **Initial value**: `outside` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style-position - */ - listStylePosition?: ListStylePositionProperty | ListStylePositionProperty[]; - /** - * The **`list-style-type`** CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element. - * - * **Initial value**: `disc` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style-type - */ - listStyleType?: ListStyleTypeProperty | ListStyleTypeProperty[]; - /** - * The **`margin-block`** CSS 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-block - */ - marginBlock?: MarginBlockProperty | MarginBlockProperty[]; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end - */ - marginBlockEnd?: - | MarginBlockEndProperty - | MarginBlockEndProperty[]; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start - */ - marginBlockStart?: - | MarginBlockStartProperty - | MarginBlockStartProperty[]; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom - */ - marginBottom?: - | MarginBottomProperty - | MarginBottomProperty[]; - /** - * The **`margin-inline`** CSS property defines 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline - */ - marginInline?: - | MarginInlineProperty - | MarginInlineProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------------------: | :-------------------: | :----------------------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | 2 _(-webkit-margin-end)_ | 3 _(-moz-margin-end)_ | 3 _(-webkit-margin-end)_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end - */ - marginInlineEnd?: - | MarginInlineEndProperty - | MarginInlineEndProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------------------------: | :---------------------: | :------------------------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | 2 _(-webkit-margin-start)_ | 3 _(-moz-margin-start)_ | 3 _(-webkit-margin-start)_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start - */ - marginInlineStart?: - | MarginInlineStartProperty - | MarginInlineStartProperty[]; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-left - */ - marginLeft?: MarginLeftProperty | MarginLeftProperty[]; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-right - */ - marginRight?: MarginRightProperty | MarginRightProperty[]; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-top - */ - marginTop?: MarginTopProperty | MarginTopProperty[]; - /** - * The **`mask-border-mode`** CSS property specifies the blending mode used in a mask border. - * - * **Initial value**: `alpha` - */ - maskBorderMode?: MaskBorderModeProperty | MaskBorderModeProperty[]; - /** - * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box. - * - * **Initial value**: `0` - */ - maskBorderOutset?: - | MaskBorderOutsetProperty - | MaskBorderOutsetProperty[]; - /** - * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border. - * - * **Initial value**: `stretch` - */ - maskBorderRepeat?: MaskBorderRepeatProperty | MaskBorderRepeatProperty[]; - /** - * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border. - * - * **Initial value**: `0` - */ - maskBorderSlice?: MaskBorderSliceProperty | MaskBorderSliceProperty[]; - /** - * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border. - * - * **Initial value**: `none` - */ - maskBorderSource?: MaskBorderSourceProperty | MaskBorderSourceProperty[]; - /** - * The **`mask-border-width`** CSS property sets the width of an element's mask border. - * - * **Initial value**: `auto` - */ - maskBorderWidth?: - | MaskBorderWidthProperty - | MaskBorderWidthProperty[]; - /** - * 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. - * - * **Initial value**: `border-box` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :--: | :-: | - * | **1** _-x-_ | **53** | **4** _-x-_ | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-clip - */ - maskClip?: MaskClipProperty | MaskClipProperty[]; - /** - * The **`mask-composite`** CSS property represents a compositing operation used on the current mask layer with the mask layers below it. - * - * **Initial value**: `add` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | No | **53** | No | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-composite - */ - maskComposite?: MaskCompositeProperty | MaskCompositeProperty[]; - /** - * The **`mask-image`** CSS property sets the image that is used as mask layer for an element. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :----: | :-: | - * | **1** _-x-_ | **53** | **4** _-x-_ | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-image - */ - maskImage?: MaskImageProperty | MaskImageProperty[]; - /** - * The **`mask-mode`** CSS property sets whether the mask reference defined by `mask-image` is treated as a luminance or alpha mask. - * - * **Initial value**: `match-source` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **53** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-mode - */ - maskMode?: MaskModeProperty | MaskModeProperty[]; - /** - * The **`mask-origin`** CSS property sets the origin of a mask. - * - * **Initial value**: `border-box` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :--: | :-: | - * | **1** _-x-_ | **53** | **4** _-x-_ | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-origin - */ - maskOrigin?: MaskOriginProperty | MaskOriginProperty[]; - /** - * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image. - * - * **Initial value**: `center` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :-----------: | :----: | :-: | - * | **1** _-x-_ | **53** | **3.2** _-x-_ | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-position - */ - maskPosition?: - | MaskPositionProperty - | MaskPositionProperty[]; - /** - * 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. - * - * **Initial value**: `no-repeat` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :-----------: | :----: | :-: | - * | **1** _-x-_ | **53** | **3.2** _-x-_ | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-repeat - */ - maskRepeat?: MaskRepeatProperty | MaskRepeatProperty[]; - /** - * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :----: | :-: | - * | **4** _-x-_ | **53** | **4** _-x-_ | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-size - */ - maskSize?: MaskSizeProperty | MaskSizeProperty[]; - /** - * The **`mask-type`** CSS property sets whether an SVG `` element is used as a _luminance_ or an _alpha_ mask. It applies to the `` element itself. - * - * **Initial value**: `luminance` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **24** | **35** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-type - */ - maskType?: MaskTypeProperty | MaskTypeProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-block-size - */ - maxBlockSize?: - | MaxBlockSizeProperty - | MaxBlockSizeProperty[]; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **18** | **1** | **1.3** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-height - */ - maxHeight?: MaxHeightProperty | MaxHeightProperty[]; - /** - * 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 the `max-width` or the `max-height` property depending on the value defined for `writing-mode`. If the writing mode is vertically oriented, the value of `max-inline-size` relates to the maximal height of the element, otherwise it relates to the maximal width of the element. It relates to `max-block-size`, which defines the other dimension of the element. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :--------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * | | | 10.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-inline-size - */ - maxInlineSize?: - | MaxInlineSizeProperty - | MaxInlineSizeProperty[]; - /** **Initial value**: `none` */ - maxLines?: MaxLinesProperty | MaxLinesProperty[]; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-width - */ - maxWidth?: MaxWidthProperty | MaxWidthProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-block-size - */ - minBlockSize?: - | MinBlockSizeProperty - | MinBlockSizeProperty[]; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **3** | **1.3** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-height - */ - minHeight?: MinHeightProperty | MinHeightProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-inline-size - */ - minInlineSize?: - | MinInlineSizeProperty - | MinInlineSizeProperty[]; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-width - */ - minWidth?: MinWidthProperty | MinWidthProperty[]; - /** - * 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. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **41** | **32** | **8** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode - */ - mixBlendMode?: MixBlendModeProperty | MixBlendModeProperty[]; - /** - * The **`offset-distance`** CSS property specifies a position along an `offset-path`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :--------------------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion-distance)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance - */ - motionDistance?: - | OffsetDistanceProperty - | OffsetDistanceProperty[]; - /** - * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion-path)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset-path - */ - motionPath?: OffsetPathProperty | OffsetPathProperty[]; - /** - * The **`offset-rotate`** CSS property defines the direction of the element while positioning along the offset path. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :--------------------: | :-----: | :----: | :--: | :-: | - * | **56** | n/a | No | No | No | - * | 46 _(motion-rotation)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate - */ - motionRotation?: OffsetRotateProperty | OffsetRotateProperty[]; - /** - * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `` or `
` cells, rows, and columns. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **14** | **1** | **1** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/table-layout - */ - tableLayout?: TableLayoutProperty | TableLayoutProperty[]; - /** - * The **`text-align`** CSS property sets the horizontal alignment of an inline or table-cell box. This means it works like `vertical-align` but in the horizontal direction. - * - * **Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-align - */ - textAlign?: TextAlignProperty | TextAlignProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **47** | **49** | No | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-align-last - */ - textAlignLast?: TextAlignLastProperty | TextAlignLastProperty[]; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------------------------: | :-----: | :------------------------------: | :------------------------------------: | :------------------------------------: | - * | **48** | **48** | **5.1** _(-webkit-text-combine)_ | **12** _(-ms-text-combine-horizontal)_ | **11** _(-ms-text-combine-horizontal)_ | - * | 9 _(-webkit-text-combine)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-combine-upright - */ - textCombineUpright?: - | TextCombineUprightProperty - | TextCombineUprightProperty[]; - /** - * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **36** | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-color - */ - textDecorationColor?: - | TextDecorationColorProperty - | TextDecorationColorProperty[]; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **36** | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-line - */ - textDecorationLine?: - | TextDecorationLineProperty - | TextDecorationLineProperty[]; - /** - * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors. - * - * **Initial value**: `objects` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | 57-64 | No | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip - */ - textDecorationSkip?: - | TextDecorationSkipProperty - | TextDecorationSkipProperty[]; - /** - * The **`text-decoration-skip-ink`** CSS property specifies how overlines and underlines are drawn when they pass over glyph ascenders and descenders. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **64** | **70** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink - */ - textDecorationSkipInk?: - | TextDecorationSkipInkProperty - | TextDecorationSkipInkProperty[]; - /** - * 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`. - * - * **Initial value**: `solid` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **36** | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-style - */ - textDecorationStyle?: - | TextDecorationStyleProperty - | TextDecorationStyleProperty[]; - /** - * The **`text-decoration-thickness`** CSS property sets the thickness, or width, of the decoration line that is used on text in an element, such as a line-through, underline, or overline. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | No | **70** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness - */ - textDecorationThickness?: - | TextDecorationThicknessProperty - | TextDecorationThicknessProperty[]; - /** - * The **`text-decoration-thickness`** CSS property sets the thickness, or width, of the decoration line that is used on text in an element, such as a line-through, underline, or overline. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | No | **70** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness - */ - textDecorationWidth?: - | TextDecorationThicknessProperty - | TextDecorationThicknessProperty[]; - /** - * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color - */ - textEmphasisColor?: TextEmphasisColorProperty | TextEmphasisColorProperty[]; - /** - * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased. - * - * **Initial value**: `over right` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position - */ - textEmphasisPosition?: GlobalsString | GlobalsString[]; - /** - * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style - */ - textEmphasisStyle?: TextEmphasisStyleProperty | TextEmphasisStyleProperty[]; - /** - * The **`text-indent`** CSS property sets the length of empty space (indentation) that is put before lines of text in a block. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-indent - */ - textIndent?: TextIndentProperty | TextIndentProperty[]; - /** - * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | n/a | **55** | No | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-justify - */ - textJustify?: TextJustifyProperty | TextJustifyProperty[]; - /** - * 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. - * - * **Initial value**: `mixed` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----------: | :--: | :-: | - * | **48** | **41** | **5.1** _-x-_ | No | No | - * | 11 _-x-_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-orientation - */ - textOrientation?: TextOrientationProperty | TextOrientationProperty[]; - /** - * 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. - * - * **Initial value**: `clip` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **7** | **1.3** | **12** | **6** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-overflow - */ - textOverflow?: TextOverflowProperty | TextOverflowProperty[]; - /** - * The **`text-rendering`** CSS property provides information to the rendering engine about what to optimize for when rendering text. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **4** | **1** | **5** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-rendering - */ - textRendering?: TextRenderingProperty | TextRenderingProperty[]; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :----: | - * | **2** | **3.5** | **1.1** | **12** | **10** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-shadow - */ - textShadow?: TextShadowProperty | TextShadowProperty[]; - /** - * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property. - * - * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable). - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----------: | :-: | - * | **54** | No | No | **12** _-x-_ | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-size-adjust - */ - textSizeAdjust?: TextSizeAdjustProperty | TextSizeAdjustProperty[]; - /** - * 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 - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-transform - */ - textTransform?: TextTransformProperty | TextTransformProperty[]; - /** - * The **`text-underline-offset`** CSS property sets the offset distance of an underline text decoration line (applied using `text-decoration`) from its original position. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | No | **70** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-offset - */ - textUnderlineOffset?: - | TextUnderlineOffsetProperty - | TextUnderlineOffsetProperty[]; - /** - * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **33** | No | No | **12** | **6** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-position - */ - textUnderlinePosition?: - | TextUnderlinePositionProperty - | TextUnderlinePositionProperty[]; - /** - * The **`top`** CSS property participates in specifying the vertical position of a _positioned element_. It has no effect on non-positioned elements. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/top - */ - top?: TopProperty | TopProperty[]; - /** - * The **`touch-action`** CSS property sets how a region can be manipulated by a touchscreen user (for example, by zooming features built into the browser). - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :------: | - * | **36** | **52** | **13** | **12** | **11** | - * | | | | | 10 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/touch-action - */ - touchAction?: TouchActionProperty | TouchActionProperty[]; - /** - * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :-----: | - * | **36** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | | 3.1 _-x-_ | | 9 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform - */ - transform?: TransformProperty | TransformProperty[]; - /** - * The **`transform-box`** CSS property defines the layout box to which the `transform` and `transform-origin` properties relate. - * - * **Initial value**: `border-box ` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **64** | **55** | **11** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform-box - */ - transformBox?: TransformBoxProperty | TransformBoxProperty[]; - /** - * The **`transform-origin`** CSS property sets the origin for an element's transformations. - * - * **Initial value**: `50% 50% 0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :-----: | - * | **36** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 2 _-x-_ | | 9 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform-origin - */ - transformOrigin?: - | TransformOriginProperty - | TransformOriginProperty[]; - /** - * 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. - * - * **Initial value**: `flat` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :------: | :-----: | :----: | :-: | - * | **36** | **16** | **9** | **12** | No | - * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform-style - */ - transformStyle?: TransformStyleProperty | TransformStyleProperty[]; - /** - * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes. - * - * **Initial value**: `0s` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-delay - */ - transitionDelay?: GlobalsString | GlobalsString[]; - /** - * 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. - * - * **Initial value**: `0s` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-duration - */ - transitionDuration?: GlobalsString | GlobalsString[]; - /** - * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied. - * - * **Initial value**: all - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-property - */ - transitionProperty?: - | TransitionPropertyProperty - | TransitionPropertyProperty[]; - /** - * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect. - * - * **Initial value**: `ease` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-timing-function - */ - transitionTimingFunction?: - | TransitionTimingFunctionProperty - | TransitionTimingFunctionProperty[]; - /** - * The **`translate`** CSS property allows you to specify translation transforms individually and independantly 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | n/a | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/translate - */ - translate?: TranslateProperty | TranslateProperty[]; - /** - * 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. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :-----: | - * | **2** | **1** | **1.3** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/unicode-bidi - */ - unicodeBidi?: UnicodeBidiProperty | UnicodeBidiProperty[]; - /** - * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :---------: | :----------: | :----------: | - * | **54** | **69** | **3** _-x-_ | **12** _-x-_ | **10** _-x-_ | - * | 1 _-x-_ | 1 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/user-select - */ - userSelect?: UserSelectProperty | UserSelectProperty[]; - /** - * The **`vertical-align`** CSS property sets vertical alignment of an inline or table-cell box. - * - * **Initial value**: `baseline` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/vertical-align - */ - verticalAlign?: - | VerticalAlignProperty - | VerticalAlignProperty[]; - /** - * 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 `
`. - * - * **Initial value**: `visible` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/visibility - */ - visibility?: VisibilityProperty | VisibilityProperty[]; - /** - * The **`white-space`** CSS property sets how white space inside an element is handled. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/white-space - */ - whiteSpace?: WhiteSpaceProperty | WhiteSpaceProperty[]; - /** - * 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. - * - * **Initial value**: `2` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **25** | No | **1.3** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/widows - */ - widows?: GlobalsNumber | GlobalsNumber[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/width - */ - width?: WidthProperty | WidthProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **36** | **36** | **9.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/will-change - */ - willChange?: WillChangeProperty | WillChangeProperty[]; - /** - * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **15** | **3** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/word-break - */ - wordBreak?: WordBreakProperty | WordBreakProperty[]; - /** - * The **`word-spacing`** CSS property sets the length of space between words and between tags. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **6** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/word-spacing - */ - wordSpacing?: WordSpacingProperty | WordSpacingProperty[]; - /** - * The `**overflow-wrap**` CSS property sets whether the browser should insert line breaks within words to prevent text from overflowing its content box. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **3.5** | **2** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/overflow-wrap - */ - wordWrap?: WordWrapProperty | WordWrapProperty[]; - /** - * 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. - * - * **Initial value**: `horizontal-tb` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :---------: | - * | **48** | **41** | **10.1** | **12** | **9** _-x-_ | - * | 8 _-x-_ | | 5.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/writing-mode - */ - writingMode?: WritingModeProperty | WritingModeProperty[]; - /** - * The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/z-index - */ - zIndex?: ZIndexProperty | ZIndexProperty[]; - /** - * The non-standard **`zoom`** CSS property can be used to control the magnification level of an element. `transform: scale()` should be used instead of this property, if possible. However, unlike CSS Transforms, `zoom` affects the layout size of the element. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :-----: | - * | **1** | No | **3.1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/zoom - */ - zoom?: ZoomProperty | ZoomProperty[]; -} - -export interface StandardShorthandPropertiesFallback { - /** - * The `**all**` CSS shorthand property sets all of an element's properties (other than `unicode-bidi` and `direction`) to their initial or inherited values, or to the values specified in another stylesheet origin. - * - * **Initial value**: There is no practical initial value for it. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **37** | **27** | **9.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/all - */ - all?: Globals | Globals[]; - /** - * The **`animation`** shorthand CSS property sets an animated transition between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **43** | **16** | **9** | **12** | **10** | - * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/animation - */ - animation?: AnimationProperty | AnimationProperty[]; - /** - * The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/background - */ - background?: BackgroundProperty | BackgroundProperty[]; - /** - * The **`border`** CSS property sets an element's border. It's a shorthand for `border-width`, `border-style`, and `border-color`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border - */ - border?: BorderProperty | BorderProperty[]; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block - */ - borderBlock?: BorderBlockProperty | BorderBlockProperty[]; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end - */ - borderBlockEnd?: - | BorderBlockEndProperty - | BorderBlockEndProperty[]; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start - */ - borderBlockStart?: - | BorderBlockStartProperty - | BorderBlockStartProperty[]; - /** - * The **`border-bottom`** CSS property is a shorthand that sets the values of `border-bottom-width`, `border-bottom-style` and `border-bottom-color`. These properties set an element's bottom border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom - */ - borderBottom?: - | BorderBottomProperty - | BorderBottomProperty[]; - /** - * The **`border-color`** shorthand CSS property sets the color of all sides of an element's border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-color - */ - borderColor?: BorderColorProperty | BorderColorProperty[]; - /** - * The **`border-image`** CSS property draws an image in place of an element's `border-style`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **16** | **15** | **6** | **12** | **11** | - * | 7 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image - */ - borderImage?: BorderImageProperty | BorderImageProperty[]; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline - */ - borderInline?: - | BorderInlineProperty - | BorderInlineProperty[]; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end - */ - borderInlineEnd?: - | BorderInlineEndProperty - | BorderInlineEndProperty[]; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start - */ - borderInlineStart?: - | BorderInlineStartProperty - | BorderInlineStartProperty[]; - /** - * The **`border-left`** CSS property is a shorthand that sets the values of `border-left-width`, `border-left-style` and `border-left-color`. These properties set an element's left border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left - */ - borderLeft?: BorderLeftProperty | BorderLeftProperty[]; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **4** | **4** | **5** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-radius - */ - borderRadius?: - | BorderRadiusProperty - | BorderRadiusProperty[]; - /** - * The **`border-right`** CSS property is a shorthand that sets the values of `border-right-width`, `border-right-style` and `border-right-color`. These properties set an element's right border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right - */ - borderRight?: BorderRightProperty | BorderRightProperty[]; - /** - * The **`border-style`** CSS property is a shorthand property that sets the line style for all four sides of an element's border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-style - */ - borderStyle?: BorderStyleProperty | BorderStyleProperty[]; - /** - * The **`border-top`** CSS property is a shorthand that sets the values of `border-top-width`, `border-top-style` and `border-top-color`. These properties set an element's top border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top - */ - borderTop?: BorderTopProperty | BorderTopProperty[]; - /** - * The **`border-width`** shorthand CSS property sets the widths of all four sides of an element's border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-width - */ - borderWidth?: BorderWidthProperty | BorderWidthProperty[]; - /** - * The **`column-rule`** CSS property sets the width, style, and color of the rule (line) drawn between columns in a multi-column layout. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule - */ - columnRule?: ColumnRuleProperty | ColumnRuleProperty[]; - /** - * The **`columns`** CSS property sets the column width and column count of an element. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | | 9 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/columns - */ - columns?: ColumnsProperty | ColumnsProperty[]; - /** - * The **`flex`** CSS property sets how a flex item will grow or shrink to fit the space available in its flex container. It is a shorthand for `flex-grow`, `flex-shrink`, and `flex-basis`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :------: | - * | **29** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | 10 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex - */ - flex?: FlexProperty | FlexProperty[]; - /** - * The **`flex-flow`** CSS property is a shorthand property for `flex-direction` and `flex-wrap` properties. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **29** | **28** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-flow - */ - flexFlow?: FlexFlowProperty | FlexFlowProperty[]; - /** - * The **`font`** CSS property is a shorthand for `font-style`, `font-variant`, `font-weight`, `font-size`, `line-height`, and `font-family`. Alternatively, it sets an element's font to a system font. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font - */ - font?: FontProperty | FontProperty[]; - /** - * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`. - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **63** | No | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-------------: | :-------------: | :-------------------: | :----: | :-: | - * | **66** | **61** | **10.1** _(grid-gap)_ | **16** | No | - * | 57 _(grid-gap)_ | 52 _(grid-gap)_ | | | | - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | **66** | **61** | No | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/gap - */ - gap?: GapProperty | GapProperty[]; - /** - * The **`grid`** CSS property is a shorthand property that sets all of the explicit grid properties (`grid-template-rows`, `grid-template-columns`, and `grid-template-areas`), and all the implicit grid properties (`grid-auto-rows`, `grid-auto-columns`, and `grid-auto-flow`), in a single declaration. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid - */ - grid?: GridProperty | GridProperty[]; - /** - * The **`grid-area`** CSS property is a shorthand property for `grid-row-start`, `grid-column-start`, `grid-row-end` and `grid-column-end`, specifying a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the edges of its grid area. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-area - */ - gridArea?: GridAreaProperty | GridAreaProperty[]; - /** - * The **`grid-column`** CSS property is a shorthand property for `grid-column-start` and `grid-column-end` specifying a grid item's size and location within the 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-column - */ - gridColumn?: GridColumnProperty | GridColumnProperty[]; - /** - * The **`grid-row`** CSS property is a shorthand property for `grid-row-start` and `grid-row-end` specifying a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-row - */ - gridRow?: GridRowProperty | GridRowProperty[]; - /** - * The **`grid-template`** CSS property is a shorthand property for defining grid columns, rows, and areas. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template - */ - gridTemplate?: GridTemplateProperty | GridTemplateProperty[]; - /** **Initial value**: `none` */ - lineClamp?: LineClampProperty | LineClampProperty[]; - /** - * The **`list-style`** CSS property is a shorthand to set list style properties `list-style-type`, `list-style-image`, and `list-style-position`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style - */ - listStyle?: ListStyleProperty | ListStyleProperty[]; - /** - * The **`margin`** CSS property sets the margin area on all four sides of an element. It is a shorthand for `margin-top`, `margin-right`, `margin-bottom`, and `margin-left`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin - */ - margin?: MarginProperty | MarginProperty[]; - /** - * The **`mask`** CSS property hides an element (partially or fully) by masking or clipping the image at specific points. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :-: | - * | **1** | **2** | **3.2** | **12** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask - */ - mask?: MaskProperty | MaskProperty[]; - /** The **`mask-border`** CSS property lets you create a mask along the edge of an element's border. */ - maskBorder?: MaskBorderProperty | MaskBorderProperty[]; - /** - * The **`offset`** CSS property is a shorthand property for animating an element along a defined path. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset - */ - motion?: OffsetProperty | OffsetProperty[]; - /** - * The **`offset`** CSS property is a shorthand property for animating an element along a defined path. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset - */ - offset?: OffsetProperty | OffsetProperty[]; - /** - * The **`outline`** CSS property is a shorthand to set various outline properties in a single declaration: `outline-style`, `outline-width`, and `outline-color`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1.5** | **1.2** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/outline - */ - outline?: OutlineProperty | OutlineProperty[]; - /** - * The **`padding`** CSS property sets the padding area on all four sides of an element. It is a shorthand for `padding-top`, `padding-right`, `padding-bottom`, and `padding-left`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/padding - */ - padding?: PaddingProperty | PaddingProperty[]; - /** - * The CSS **`place-items`** shorthand property sets the `align-items` and `justify-items` properties, respectively. If the second value is not set, the first value is also used for it. - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | **11** | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | **11** | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/place-items - */ - placeItems?: PlaceItemsProperty | PlaceItemsProperty[]; - /** - * The **`place-self`** CSS property is a shorthand property sets both the `align-self` and `justify-self` properties. The first value is the `align-self` property value, the second the `justify-self` one. If the second value is not present, the first value is also used for it. - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | No | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/place-self - */ - placeSelf?: PlaceSelfProperty | PlaceSelfProperty[]; - /** - * The **`text-decoration`** CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, and `text-decoration-style`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration - */ - textDecoration?: - | TextDecorationProperty - | TextDecorationProperty[]; - /** - * 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`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis - */ - textEmphasis?: TextEmphasisProperty | TextEmphasisProperty[]; - /** - * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition - */ - transition?: TransitionProperty | TransitionProperty[]; -} - -export interface StandardPropertiesFallback - extends StandardLonghandPropertiesFallback, - StandardShorthandPropertiesFallback {} - -export interface VendorLonghandPropertiesFallback { - /** - * The **`animation-delay`** CSS property sets when an animation starts. The animation can start later, immediately from its beginning, or immediately and partway through the animation. - * - * **Initial value**: `0s` - */ - MozAnimationDelay?: GlobalsString | GlobalsString[]; - /** - * The **`animation-direction`** CSS property sets whether an animation should play forwards, backwards, or alternating back and forth. - * - * **Initial value**: `normal` - */ - MozAnimationDirection?: - | AnimationDirectionProperty - | AnimationDirectionProperty[]; - /** - * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle. - * - * **Initial value**: `0s` - */ - MozAnimationDuration?: GlobalsString | GlobalsString[]; - /** - * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution. - * - * **Initial value**: `none` - */ - MozAnimationFillMode?: - | AnimationFillModeProperty - | AnimationFillModeProperty[]; - /** - * The **`animation-iteration-count`** CSS property sets the number of times an animation cycle should be played before stopping. - * - * **Initial value**: `1` - */ - MozAnimationIterationCount?: - | AnimationIterationCountProperty - | AnimationIterationCountProperty[]; - /** - * The **`animation-name`** CSS property sets one or more animations to apply to an element. Each name is an `@keyframes` at-rule that sets the property values for the animation sequence. - * - * **Initial value**: `none` - */ - MozAnimationName?: AnimationNameProperty | AnimationNameProperty[]; - /** - * The **`animation-play-state`** CSS property sets whether an animation is running or paused. - * - * **Initial value**: `running` - */ - MozAnimationPlayState?: - | AnimationPlayStateProperty - | AnimationPlayStateProperty[]; - /** - * The `**animation-timing-function**` CSS property sets how an animation progresses through the duration of each cycle. - * - * **Initial value**: `ease` - */ - MozAnimationTimingFunction?: - | AnimationTimingFunctionProperty - | AnimationTimingFunctionProperty[]; - /** - * The **`-moz-appearance`** CSS property is used in Gecko (Firefox) to display an element using platform-native styling based on the operating system's theme. - * - * **Initial value**: `none` (but this value is overridden in the user agent CSS) - */ - MozAppearance?: MozAppearanceProperty | MozAppearanceProperty[]; - /** - * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user. - * - * **Initial value**: `visible` - */ - MozBackfaceVisibility?: - | BackfaceVisibilityProperty - | BackfaceVisibilityProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - */ - MozBorderEndColor?: - | BorderInlineEndColorProperty - | BorderInlineEndColorProperty[]; - /** - * 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`. - * - * **Initial value**: `none` - */ - MozBorderEndStyle?: - | BorderInlineEndStyleProperty - | BorderInlineEndStyleProperty[]; - /** - * 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`. - * - * **Initial value**: `medium` - */ - MozBorderEndWidth?: - | BorderInlineEndWidthProperty - | BorderInlineEndWidthProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - */ - MozBorderStartColor?: - | BorderInlineStartColorProperty - | BorderInlineStartColorProperty[]; - /** - * 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`. - * - * **Initial value**: `none` - */ - MozBorderStartStyle?: - | BorderInlineStartStyleProperty - | BorderInlineStartStyleProperty[]; - /** - * The **`box-sizing`** CSS property defines how the user agent should calculate the total width and height of an element. - * - * **Initial value**: `content-box` - */ - MozBoxSizing?: BoxSizingProperty | BoxSizingProperty[]; - /** - * The **`column-count`** CSS property breaks an element's content into the specified number of columns. - * - * **Initial value**: `auto` - */ - MozColumnCount?: ColumnCountProperty | ColumnCountProperty[]; - /** - * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns. - * - * **Initial value**: `balance` - */ - MozColumnFill?: ColumnFillProperty | ColumnFillProperty[]; - /** - * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns. - * - * **Initial value**: `normal` - */ - MozColumnGap?: ColumnGapProperty | ColumnGapProperty[]; - /** - * The **`column-rule-color`** CSS property sets the color of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `currentcolor` - */ - MozColumnRuleColor?: ColumnRuleColorProperty | ColumnRuleColorProperty[]; - /** - * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout. - * - * **Initial value**: `none` - */ - MozColumnRuleStyle?: ColumnRuleStyleProperty | ColumnRuleStyleProperty[]; - /** - * The **`column-rule-width`** CSS property sets the width of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `medium` - */ - MozColumnRuleWidth?: - | ColumnRuleWidthProperty - | ColumnRuleWidthProperty[]; - /** - * The **`column-width`** CSS property specifies 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. - * - * **Initial value**: `auto` - */ - MozColumnWidth?: - | ColumnWidthProperty - | ColumnWidthProperty[]; - /** - * If you reference an SVG image in a webpage (such as with the `` element or as a background image), the SVG image can coordinate with the embedding element (its context) to have the image adopt property values set on the embedding element. To do this the embedding element needs to list the properties that are to be made available to the image by listing them as values of the **`-moz-context-properties`** property, and the image needs to opt in to using those properties by using values such as the `context-fill` value. - * - * **Initial value**: `none` - */ - MozContextProperties?: - | MozContextPropertiesProperty - | MozContextPropertiesProperty[]; - /** - * The non-standard **`-moz-float-edge`** CSS property specifies whether the height and width properties of the element include the margin, border, or padding thickness. - * - * **Initial value**: `content-box` - */ - MozFloatEdge?: MozFloatEdgeProperty | MozFloatEdgeProperty[]; - /** - * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts. - * - * **Initial value**: `normal` - */ - MozFontFeatureSettings?: - | FontFeatureSettingsProperty - | FontFeatureSettingsProperty[]; - /** - * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface. - * - * **Initial value**: `normal` - */ - MozFontLanguageOverride?: - | FontLanguageOverrideProperty - | FontLanguageOverrideProperty[]; - /** - * The **`-moz-force-broken-image-icon`** extended CSS property can be used to force the broken image icon to be shown even when a broken image has an `alt` attribute. - * - * **Initial value**: `0` - */ - MozForceBrokenImageIcon?: GlobalsNumber | GlobalsNumber[]; - /** - * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. You can prevent hyphenation entirely, use hyphenation in manually-specified points within the text, or let the browser automatically insert hyphens where appropriate. - * - * **Initial value**: `manual` - */ - MozHyphens?: HyphensProperty | HyphensProperty[]; - /** - * For certain XUL elements and pseudo-elements that use an image from the `list-style-image` property, this property specifies a region of the image that is used in place of the whole image. This allows elements to use different pieces of the same image to improve performance. - * - * **Initial value**: `auto` - */ - MozImageRegion?: MozImageRegionProperty | MozImageRegionProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - */ - MozMarginEnd?: - | MarginInlineEndProperty - | MarginInlineEndProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - */ - MozMarginStart?: - | MarginInlineStartProperty - | MarginInlineStartProperty[]; - /** - * The **`-moz-orient`** CSS property specifies the orientation of the element to which it's applied. - * - * **Initial value**: `inline` - */ - MozOrient?: MozOrientProperty | MozOrientProperty[]; - /** - * In Mozilla applications, the **`-moz-outline-radius-bottomleft`** CSS property can be used to round the bottom-left corner of an element's `outline`. - * - * **Initial value**: `0` - */ - MozOutlineRadiusBottomleft?: - | MozOutlineRadiusBottomleftProperty - | MozOutlineRadiusBottomleftProperty[]; - /** - * In Mozilla applications, the **`-moz-outline-radius-bottomright`** CSS property can be used to round the bottom-right corner of an element's `outline`. - * - * **Initial value**: `0` - */ - MozOutlineRadiusBottomright?: - | MozOutlineRadiusBottomrightProperty - | MozOutlineRadiusBottomrightProperty[]; - /** - * In Mozilla applications, the **`-moz-outline-radius-topleft`** CSS property can be used to round the top-left corner of an element's `outline`. - * - * **Initial value**: `0` - */ - MozOutlineRadiusTopleft?: - | MozOutlineRadiusTopleftProperty - | MozOutlineRadiusTopleftProperty[]; - /** - * In Mozilla applications, the **`-moz-outline-radius-topright`** CSS property can be used to round the top-right corner of an element's `outline`. - * - * **Initial value**: `0` - */ - MozOutlineRadiusTopright?: - | MozOutlineRadiusToprightProperty - | MozOutlineRadiusToprightProperty[]; - /** - * 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. It corresponds to the `padding-top`, `padding-right`, `padding-bottom`, or `padding-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. - * - * **Initial value**: `0` - */ - MozPaddingEnd?: - | PaddingInlineEndProperty - | PaddingInlineEndProperty[]; - /** - * 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. It corresponds to the `padding-top`, `padding-right`, `padding-bottom`, or `padding-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. - * - * **Initial value**: `0` - */ - MozPaddingStart?: - | PaddingInlineStartProperty - | PaddingInlineStartProperty[]; - /** - * 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. Each 3D element with z>0 becomes larger; each 3D-element with z<0 becomes smaller. The strength of the effect is determined by the value of this property. - * - * **Initial value**: `none` - */ - MozPerspective?: - | PerspectiveProperty - | PerspectiveProperty[]; - /** - * 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. - * - * **Initial value**: `50% 50%` - */ - MozPerspectiveOrigin?: - | PerspectiveOriginProperty - | PerspectiveOriginProperty[]; - /** - * **`-moz-stack-sizing`** is an extended CSS property. Normally, a `stack` will change its size so that all of its child elements are completely visible. For example, moving a child of the stack far to the right will widen the stack so the child remains visible. - * - * **Initial value**: `stretch-to-fit` - */ - MozStackSizing?: MozStackSizingProperty | MozStackSizingProperty[]; - /** - * The **`tab-size`** CSS property is used to customize the width of a tab (`U+0009`) character. - * - * **Initial value**: `8` - */ - MozTabSize?: TabSizeProperty | TabSizeProperty[]; - /** - * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property. - * - * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable). - */ - MozTextSizeAdjust?: TextSizeAdjustProperty | TextSizeAdjustProperty[]; - /** - * The **`transform-origin`** CSS property sets the origin for an element's transformations. - * - * **Initial value**: `50% 50% 0` - */ - MozTransformOrigin?: - | TransformOriginProperty - | TransformOriginProperty[]; - /** - * 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. - * - * **Initial value**: `flat` - */ - MozTransformStyle?: TransformStyleProperty | TransformStyleProperty[]; - /** - * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes. - * - * **Initial value**: `0s` - */ - MozTransitionDelay?: GlobalsString | GlobalsString[]; - /** - * 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. - * - * **Initial value**: `0s` - */ - MozTransitionDuration?: GlobalsString | GlobalsString[]; - /** - * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied. - * - * **Initial value**: all - */ - MozTransitionProperty?: - | TransitionPropertyProperty - | TransitionPropertyProperty[]; - /** - * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect. - * - * **Initial value**: `ease` - */ - MozTransitionTimingFunction?: - | TransitionTimingFunctionProperty - | TransitionTimingFunctionProperty[]; - /** - * The **`-moz-user-focus`** CSS property is used to indicate whether an element can have the focus. - * - * **Initial value**: `none` - */ - MozUserFocus?: MozUserFocusProperty | MozUserFocusProperty[]; - /** - * The **`user-modify`** property has no effect in Firefox. It was originally planned to determine whether or not the content of an element can be edited by a user. - * - * **Initial value**: `read-only` - */ - MozUserModify?: MozUserModifyProperty | MozUserModifyProperty[]; - /** - * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. - * - * **Initial value**: `auto` - */ - MozUserSelect?: UserSelectProperty | UserSelectProperty[]; - /** - * The **`-moz-window-dragging`** CSS property specifies whether a window is draggable or not. It only works in Chrome code, and only on Mac OS X. - * - * **Initial value**: `drag` - */ - MozWindowDragging?: MozWindowDraggingProperty | MozWindowDraggingProperty[]; - /** - * The **`-ms-accelerator`** CSS property is a Microsoft extension that sets or retrieves a string indicating whether the object represents a keyboard shortcut. - * - * **Initial value**: `false` - */ - msAccelerator?: MsAcceleratorProperty | MsAcceleratorProperty[]; - /** - * The **`align-self`** CSS property aligns flex items of the current flex line overriding the `align-items` value. If any of the item's cross-axis margin is set to `auto`, then `align-self` is ignored. In Grid layout `align-self` aligns the item inside the grid area. - * - * **Initial value**: `auto` - */ - msAlignSelf?: AlignSelfProperty | AlignSelfProperty[]; - /** - * The **`-ms-block-progression`** CSS property is a Microsoft extension that specifies the block progression and layout orientation. - * - * **Initial value**: `tb` - */ - msBlockProgression?: - | MsBlockProgressionProperty - | MsBlockProgressionProperty[]; - /** - * The **`-ms-content-zoom-chaining`** CSS property is a Microsoft extension specifying the zoom behavior that occurs when a user hits the zoom limit during page manipulation. - * - * **Initial value**: `none` - */ - msContentZoomChaining?: - | MsContentZoomChainingProperty - | MsContentZoomChainingProperty[]; - /** - * The **`-ms-content-zoom-limit-max`** CSS property is a Microsoft extension that specifies the selected elements' maximum zoom factor. - * - * **Initial value**: `400%` - */ - msContentZoomLimitMax?: GlobalsString | GlobalsString[]; - /** - * The **`-ms-content-zoom-limit-min`** CSS property is a Microsoft extension that specifies the minimum zoom factor. - * - * **Initial value**: `100%` - */ - msContentZoomLimitMin?: GlobalsString | GlobalsString[]; - /** - * The **`-ms-content-zoom-snap-points`** CSS property is a Microsoft extension that specifies where zoom snap-points are located. - * - * **Initial value**: `snapInterval(0%, 100%)` - */ - msContentZoomSnapPoints?: GlobalsString | GlobalsString[]; - /** - * The **`-ms-content-zoom-snap-type`** CSS property is a Microsoft extension that specifies how zooming is affected by defined snap-points. - * - * **Initial value**: `none` - */ - msContentZoomSnapType?: - | MsContentZoomSnapTypeProperty - | MsContentZoomSnapTypeProperty[]; - /** - * The **`-ms-content-zooming`** CSS property is a Microsoft extension that specifies whether zooming is enabled. - * - * **Initial value**: zoom for the top level element, none for all other elements - */ - msContentZooming?: MsContentZoomingProperty | MsContentZoomingProperty[]; - /** - * The `-ms-filter` CSS property is a Microsoft extension that sets or retrieves the filter or collection of filters applied to an object. - * - * **Initial value**: "" (the empty string) - */ - msFilter?: GlobalsString | GlobalsString[]; - /** - * 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). - * - * **Initial value**: `row` - */ - msFlexDirection?: FlexDirectionProperty | FlexDirectionProperty[]; - /** - * The **`flex-grow`** CSS property sets how much of the available space in the flex container should be assigned to that item (the flex grow factor). If all sibling items have the same flex grow factor, then all items will receive the same share of available space, otherwise it is distributed according to the ratio defined by the different flex grow factors. - * - * **Initial value**: `0` - */ - msFlexPositive?: GlobalsNumber | GlobalsNumber[]; - /** - * The **`-ms-flow-from`** CSS property is a Microsoft extension that gets or sets a value identifying a region container in the document that accepts the content flow from the data source. - * - * **Initial value**: `none` - */ - msFlowFrom?: MsFlowFromProperty | MsFlowFromProperty[]; - /** - * The **`-ms-flow-into`** CSS property is a Microsoft extension that gets or sets a value identifying an iframe container in the document that serves as the region's data source. - * - * **Initial value**: `none` - */ - msFlowInto?: MsFlowIntoProperty | MsFlowIntoProperty[]; - /** - * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track. - * - * **Initial value**: `auto` - */ - msGridColumns?: - | GridAutoColumnsProperty - | GridAutoColumnsProperty[]; - /** - * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track. - * - * **Initial value**: `auto` - */ - msGridRows?: GridAutoRowsProperty | GridAutoRowsProperty[]; - /** - * The **`-ms-high-contrast-adjust`** CSS property is a Microsoft extension that gets or sets a value indicating whether to override any CSS properties that would have been set in high contrast mode. - * - * **Initial value**: `auto` - */ - msHighContrastAdjust?: - | MsHighContrastAdjustProperty - | MsHighContrastAdjustProperty[]; - /** - * The **`-ms-hyphenate-limit-chars`** CSS property is a Microsoft extension that specifies one to three values indicating the minimum number of characters in a hyphenated word. If the word does not meet the required minimum number of characters in the word, before the hyphen, or after the hyphen, then the word is not hyphenated. - * - * **Initial value**: `auto` - */ - msHyphenateLimitChars?: - | MsHyphenateLimitCharsProperty - | MsHyphenateLimitCharsProperty[]; - /** - * The **`-ms-hyphenate-limit-lines`** CSS property is a Microsoft extension specifying the maximum number of consecutive lines in an element that may be ended with a hyphenated word. - * - * **Initial value**: `no-limit` - */ - msHyphenateLimitLines?: - | MsHyphenateLimitLinesProperty - | MsHyphenateLimitLinesProperty[]; - /** - * The `**-ms-hyphenate-limit-zone**` CSS property is a Microsoft extension specifying the width of the hyphenation zone. - * - * **Initial value**: `0` - */ - msHyphenateLimitZone?: - | MsHyphenateLimitZoneProperty - | MsHyphenateLimitZoneProperty[]; - /** - * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. You can prevent hyphenation entirely, use hyphenation in manually-specified points within the text, or let the browser automatically insert hyphens where appropriate. - * - * **Initial value**: `manual` - */ - msHyphens?: HyphensProperty | HyphensProperty[]; - /** - * The **`-ms-ime-align`** CSS property is a Microsoft extension aligning the Input Method Editor (IME) candidate window box relative to the element on which the IME composition is active. The extension is implemented in Microsoft Edge and Internet Explorer 11. - * - * **Initial value**: `auto` - */ - msImeAlign?: MsImeAlignProperty | MsImeAlignProperty[]; - /** - * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols. - * - * **Initial value**: `auto` - */ - msLineBreak?: LineBreakProperty | LineBreakProperty[]; - /** - * 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. - * - * **Initial value**: `0` - */ - msOrder?: GlobalsNumber | GlobalsNumber[]; - /** - * The **`-ms-overflow-style`** CSS property is a Microsoft extension controlling the behavior of scrollbars when the content of an element overflows. - * - * **Initial value**: `auto` - */ - msOverflowStyle?: MsOverflowStyleProperty | MsOverflowStyleProperty[]; - /** - * 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. - * - * **Initial value**: `visible` - */ - msOverflowX?: OverflowXProperty | OverflowXProperty[]; - /** - * 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. - * - * **Initial value**: `visible` - */ - msOverflowY?: OverflowYProperty | OverflowYProperty[]; - /** - * The `**-ms-scroll-chaining**` CSS property is a Microsoft extension that specifies the scrolling behavior that occurs when a user hits the scroll limit during a manipulation. - * - * **Initial value**: `chained` - */ - msScrollChaining?: MsScrollChainingProperty | MsScrollChainingProperty[]; - /** - * The `**-ms-scroll-limit-x-max**` CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollLeft` property. - * - * **Initial value**: `auto` - */ - msScrollLimitXMax?: - | MsScrollLimitXMaxProperty - | MsScrollLimitXMaxProperty[]; - /** - * The **`-ms-scroll-limit-x-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollLeft` property. - * - * **Initial value**: `0` - */ - msScrollLimitXMin?: - | MsScrollLimitXMinProperty - | MsScrollLimitXMinProperty[]; - /** - * The **`-ms-scroll-limit-y-max`** CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollTop` property. - * - * **Initial value**: `auto` - */ - msScrollLimitYMax?: - | MsScrollLimitYMaxProperty - | MsScrollLimitYMaxProperty[]; - /** - * The **`-ms-scroll-limit-y-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollTop` property. - * - * **Initial value**: `0` - */ - msScrollLimitYMin?: - | MsScrollLimitYMinProperty - | MsScrollLimitYMinProperty[]; - /** - * The **`-ms-scroll-rails`** CSS property is a Microsoft extension that specifies whether scrolling locks to the primary axis of motion. - * - * **Initial value**: `railed` - */ - msScrollRails?: MsScrollRailsProperty | MsScrollRailsProperty[]; - /** - * The **`-ms-scroll-snap-points-x`** CSS property is a Microsoft extension that specifies where snap-points will be located along the x-axis. - * - * **Initial value**: `snapInterval(0px, 100%)` - */ - msScrollSnapPointsX?: GlobalsString | GlobalsString[]; - /** - * The **`-ms-scroll-snap-points-y`** CSS property is a Microsoft extension that specifies where snap-points will be located along the y-axis. - * - * **Initial value**: `snapInterval(0px, 100%)` - */ - msScrollSnapPointsY?: GlobalsString | GlobalsString[]; - /** - * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one. - * - * **Initial value**: `none` - */ - msScrollSnapType?: MsScrollSnapTypeProperty | MsScrollSnapTypeProperty[]; - /** - * The **`-ms-scroll-translation`** CSS property is a Microsoft extension that specifies whether vertical-to-horizontal scroll wheel translation occurs on the specified element. - * - * **Initial value**: `none` - */ - msScrollTranslation?: - | MsScrollTranslationProperty - | MsScrollTranslationProperty[]; - /** - * The **`-ms-scrollbar-3dlight-color`** CSS property is a Microsoft extension specifying the color of the top and left edges of the scroll box and scroll arrows of a scroll bar. - * - * **Initial value**: depends on user agent - */ - msScrollbar3dlightColor?: - | MsScrollbar3dlightColorProperty - | MsScrollbar3dlightColorProperty[]; - /** - * The **`-ms-scrollbar-arrow-color`** CSS property is a Microsoft extension that specifies the color of the arrow elements of a scroll arrow. - * - * **Initial value**: `ButtonText` - */ - msScrollbarArrowColor?: - | MsScrollbarArrowColorProperty - | MsScrollbarArrowColorProperty[]; - /** - * The `**-ms-scrollbar-base-color**` CSS property is a Microsoft extension that specifies the base color of the main elements of a scroll bar. - * - * **Initial value**: depends on user agent - */ - msScrollbarBaseColor?: - | MsScrollbarBaseColorProperty - | MsScrollbarBaseColorProperty[]; - /** - * The **`-ms-scrollbar-darkshadow-color`** CSS property is a Microsoft extension that specifies the color of a scroll bar's gutter. - * - * **Initial value**: `ThreeDDarkShadow` - */ - msScrollbarDarkshadowColor?: - | MsScrollbarDarkshadowColorProperty - | MsScrollbarDarkshadowColorProperty[]; - /** - * The `**-ms-scrollbar-face-color**` CSS property is a Microsoft extension that specifies the color of the scroll box and scroll arrows of a scroll bar. - * - * **Initial value**: `ThreeDFace` - */ - msScrollbarFaceColor?: - | MsScrollbarFaceColorProperty - | MsScrollbarFaceColorProperty[]; - /** - * The `**-ms-scrollbar-highlight-color**` CSS property is a Microsoft extension that specifies the color of the slider tray, the top and left edges of the scroll box, and the scroll arrows of a scroll bar. - * - * **Initial value**: `ThreeDHighlight` - */ - msScrollbarHighlightColor?: - | MsScrollbarHighlightColorProperty - | MsScrollbarHighlightColorProperty[]; - /** - * The **`-ms-scrollbar-shadow-color`** CSS property is a Microsoft extension that specifies the color of the bottom and right edges of the scroll box and scroll arrows of a scroll bar. - * - * **Initial value**: `ThreeDDarkShadow` - */ - msScrollbarShadowColor?: - | MsScrollbarShadowColorProperty - | MsScrollbarShadowColorProperty[]; - /** - * The **`-ms-scrollbar-track-color`** CSS property is a Microsoft extension that specifies the color of the track element of a scrollbar. - * - * **Initial value**: `Scrollbar` - */ - msScrollbarTrackColor?: - | MsScrollbarTrackColorProperty - | MsScrollbarTrackColorProperty[]; - /** - * The **`-ms-text-autospace`** CSS property is a Microsoft extension that specifies the autospacing and narrow space width adjustment of text. - * - * **Initial value**: `none` - */ - msTextAutospace?: MsTextAutospaceProperty | MsTextAutospaceProperty[]; - /** - * 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. - * - * **Initial value**: `none` - */ - msTextCombineHorizontal?: - | TextCombineUprightProperty - | TextCombineUprightProperty[]; - /** - * 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. - * - * **Initial value**: `clip` - */ - msTextOverflow?: TextOverflowProperty | TextOverflowProperty[]; - /** - * The **`touch-action`** CSS property sets how a region can be manipulated by a touchscreen user (for example, by zooming features built into the browser). - * - * **Initial value**: `auto` - */ - msTouchAction?: TouchActionProperty | TouchActionProperty[]; - /** - * The **`-ms-touch-select`** CSS property is a Microsoft extension that toggles the gripper visual elements that enable touch text selection. - * - * **Initial value**: `grippers` - */ - msTouchSelect?: MsTouchSelectProperty | MsTouchSelectProperty[]; - /** - * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model. - * - * **Initial value**: `none` - */ - msTransform?: TransformProperty | TransformProperty[]; - /** - * The **`transform-origin`** CSS property sets the origin for an element's transformations. - * - * **Initial value**: `50% 50% 0` - */ - msTransformOrigin?: - | TransformOriginProperty - | TransformOriginProperty[]; - /** - * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes. - * - * **Initial value**: `0s` - */ - msTransitionDelay?: GlobalsString | GlobalsString[]; - /** - * 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. - * - * **Initial value**: `0s` - */ - msTransitionDuration?: GlobalsString | GlobalsString[]; - /** - * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied. - * - * **Initial value**: all - */ - msTransitionProperty?: - | TransitionPropertyProperty - | TransitionPropertyProperty[]; - /** - * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect. - * - * **Initial value**: `ease` - */ - msTransitionTimingFunction?: - | TransitionTimingFunctionProperty - | TransitionTimingFunctionProperty[]; - /** - * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. - * - * **Initial value**: `text` - */ - msUserSelect?: MsUserSelectProperty | MsUserSelectProperty[]; - /** - * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box. - * - * **Initial value**: `normal` - */ - msWordBreak?: WordBreakProperty | WordBreakProperty[]; - /** - * The **`-ms-wrap-flow`** CSS property is a Microsoft extension that specifies how exclusions impact inline content within block-level elements. - * - * **Initial value**: `auto` - */ - msWrapFlow?: MsWrapFlowProperty | MsWrapFlowProperty[]; - /** - * The **`-ms-wrap-margin`** CSS property is a Microsoft extension that specifies a margin that offsets the inner wrap shape from other shapes. - * - * **Initial value**: `0` - */ - msWrapMargin?: - | MsWrapMarginProperty - | MsWrapMarginProperty[]; - /** - * The **`-ms-wrap-through`** CSS property is a Microsoft extension that specifies how content should wrap around an exclusion element. - * - * **Initial value**: `wrap` - */ - msWrapThrough?: MsWrapThroughProperty | MsWrapThroughProperty[]; - /** - * 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. - * - * **Initial value**: `horizontal-tb` - */ - msWritingMode?: WritingModeProperty | WritingModeProperty[]; - /** - * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `` or `
` have shared or separate borders. - * - * **Initial value**: `separate` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1** | **1.2** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-collapse - */ - "border-collapse"?: BorderCollapseProperty | BorderCollapseProperty[]; - /** - * 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 on the element's `writing-mode`, `direction`, and `text-orientation`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius - */ - "border-end-end-radius"?: - | BorderEndEndRadiusProperty - | BorderEndEndRadiusProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius - */ - "border-end-start-radius"?: - | BorderEndStartRadiusProperty - | BorderEndStartRadiusProperty[]; - /** - * The **`border-image-outset`** CSS property sets the distance by which an element's border image is set out from its border box. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-outset - */ - "border-image-outset"?: - | BorderImageOutsetProperty - | BorderImageOutsetProperty[]; - /** - * The **`border-image-repeat`** CSS property defines how the edge regions of a source image are adjusted to fit the dimensions of an element's border image. - * - * **Initial value**: `stretch` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-repeat - */ - "border-image-repeat"?: - | BorderImageRepeatProperty - | BorderImageRepeatProperty[]; - /** - * 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. - * - * **Initial value**: `100%` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice - */ - "border-image-slice"?: BorderImageSliceProperty | BorderImageSliceProperty[]; - /** - * The **`border-image-source`** CSS property sets the source image used to create an element's border image. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **15** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-source - */ - "border-image-source"?: - | BorderImageSourceProperty - | BorderImageSourceProperty[]; - /** - * The **`border-image-width`** CSS property sets the width of an element's border image. - * - * **Initial value**: `1` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **15** | **13** | **6** | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image-width - */ - "border-image-width"?: - | BorderImageWidthProperty - | BorderImageWidthProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color - */ - "border-inline-color"?: - | BorderInlineColorProperty - | BorderInlineColorProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-end-color)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color - */ - "border-inline-end-color"?: - | BorderInlineEndColorProperty - | BorderInlineEndColorProperty[]; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-end-style)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style - */ - "border-inline-end-style"?: - | BorderInlineEndStyleProperty - | BorderInlineEndStyleProperty[]; - /** - * 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`. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-end-width)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width - */ - "border-inline-end-width"?: - | BorderInlineEndWidthProperty - | BorderInlineEndWidthProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :---------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-start-color)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color - */ - "border-inline-start-color"?: - | BorderInlineStartColorProperty - | BorderInlineStartColorProperty[]; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :---------------------------: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | | 3 _(-moz-border-start-style)_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style - */ - "border-inline-start-style"?: - | BorderInlineStartStyleProperty - | BorderInlineStartStyleProperty[]; - /** - * 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`. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width - */ - "border-inline-start-width"?: - | BorderInlineStartWidthProperty - | BorderInlineStartWidthProperty[]; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style - */ - "border-inline-style"?: - | BorderInlineStyleProperty - | BorderInlineStyleProperty[]; - /** - * 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`. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width - */ - "border-inline-width"?: - | BorderInlineWidthProperty - | BorderInlineWidthProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left-color - */ - "border-left-color"?: BorderLeftColorProperty | BorderLeftColorProperty[]; - /** - * The **`border-left-style`** CSS property sets the line style of an element's left `border`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left-style - */ - "border-left-style"?: BorderLeftStyleProperty | BorderLeftStyleProperty[]; - /** - * The **`border-left-width`** CSS property sets the width of the left border of an element. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left-width - */ - "border-left-width"?: - | BorderLeftWidthProperty - | BorderLeftWidthProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right-color - */ - "border-right-color"?: BorderRightColorProperty | BorderRightColorProperty[]; - /** - * The **`border-right-style`** CSS property sets the line style of an element's right `border`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right-style - */ - "border-right-style"?: BorderRightStyleProperty | BorderRightStyleProperty[]; - /** - * The **`border-right-width`** CSS property sets the width of the right border of an element. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right-width - */ - "border-right-width"?: - | BorderRightWidthProperty - | BorderRightWidthProperty[]; - /** - * The **`border-spacing`** CSS property sets the distance between the borders of adjacent `
` cells. This property applies only when `border-collapse` is `separate`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-spacing - */ - "border-spacing"?: - | BorderSpacingProperty - | BorderSpacingProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius - */ - "border-start-end-radius"?: - | BorderStartEndRadiusProperty - | BorderStartEndRadiusProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius - */ - "border-start-start-radius"?: - | BorderStartStartRadiusProperty - | BorderStartStartRadiusProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-color - */ - "border-top-color"?: BorderTopColorProperty | BorderTopColorProperty[]; - /** - * The **`border-top-left-radius`** CSS property rounds the top-left corner of an element. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **4** | **4** | **5** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius - */ - "border-top-left-radius"?: - | BorderTopLeftRadiusProperty - | BorderTopLeftRadiusProperty[]; - /** - * The **`border-top-right-radius`** CSS property rounds the top-right corner of an element. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **4** | **4** | **5** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius - */ - "border-top-right-radius"?: - | BorderTopRightRadiusProperty - | BorderTopRightRadiusProperty[]; - /** - * The **`border-top-style`** CSS property sets the line style of an element's top `border`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-style - */ - "border-top-style"?: BorderTopStyleProperty | BorderTopStyleProperty[]; - /** - * The **`border-top-width`** CSS property sets the width of the top border of an element. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top-width - */ - "border-top-width"?: - | BorderTopWidthProperty - | BorderTopWidthProperty[]; - /** - * The **`bottom`** CSS property participates in specifying the vertical position of a _positioned element_. It has no effect on non-positioned elements. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/bottom - */ - bottom?: BottomProperty | BottomProperty[]; - /** - * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages. - * - * **Initial value**: `slice` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------: | :-----: | :-----: | :--: | :-: | - * | **22** _-x-_ | **32** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/box-decoration-break - */ - "box-decoration-break"?: - | BoxDecorationBreakProperty - | BoxDecorationBreakProperty[]; - /** - * 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 radii, and color. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **10** | **4** | **5.1** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/box-shadow - */ - "box-shadow"?: BoxShadowProperty | BoxShadowProperty[]; - /** - * The **`box-sizing`** CSS property defines how the user agent should calculate the total width and height of an element. - * - * **Initial value**: `content-box` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **10** | **29** | **5.1** | **12** | **8** | - * | 1 _-x-_ | 1 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/box-sizing - */ - "box-sizing"?: BoxSizingProperty | BoxSizingProperty[]; - /** - * The **`break-after`** CSS property defines how page, column, or region breaks should behave after a generated box. If there is no generated box, the property is ignored. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | No | No | **12** | **10** | - * - * --- - * - * _Supported in Paged Media_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in CSS Regions_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/break-after - */ - "break-after"?: BreakAfterProperty | BreakAfterProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | No | **12** | **10** | - * - * --- - * - * _Supported in Paged Media_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in CSS Regions_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/break-before - */ - "break-before"?: BreakBeforeProperty | BreakBeforeProperty[]; - /** - * The **`break-inside`** CSS property defines how page, column, or region breaks should behave inside a generated box. If there is no generated box, the property is ignored. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in Paged Media_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **50** | **65** | **10** | **12** | **10** | - * - * --- - * - * _Supported in CSS Regions_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/break-inside - */ - "break-inside"?: BreakInsideProperty | BreakInsideProperty[]; - /** - * The **`caption-side`** CSS property puts the content of a table's `
` on the specified side. The values are relative to the `writing-mode` of the table. - * - * **Initial value**: `top` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/caption-side - */ - "caption-side"?: CaptionSideProperty | CaptionSideProperty[]; - /** - * The **`caret-color`** CSS property sets the color of the insertion caret, the visible marker where the next character typed will be inserted. The caret appears in elements such as `` or those with the `contenteditable` attribute. The caret is typically a thin vertical line that flashes to help make it more noticeable. By default, it is black, but its color can be altered with this property. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **53** | **11.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/caret-color - */ - "caret-color"?: CaretColorProperty | CaretColorProperty[]; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/clear - */ - clear?: ClearProperty | ClearProperty[]; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **55** | **3.5** | **9.1** | **12** | **10** | - * | 23 _-x-_ | | 6.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/clip-path - */ - "clip-path"?: ClipPathProperty | ClipPathProperty[]; - /** - * 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`. - * - * **Initial value**: Varies from one browser to another - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/color - */ - color?: ColorProperty | ColorProperty[]; - /** - * The **`color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device. - * - * **Initial value**: `economy` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------: | :-----: | :---------: | :--: | :-: | - * | **49** _-x-_ | **48** | **6** _-x-_ | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/color-adjust - */ - "color-adjust"?: ColorAdjustProperty | ColorAdjustProperty[]; - /** - * The **`column-count`** CSS property breaks an element's content into the specified number of columns. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 1.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-count - */ - "column-count"?: ColumnCountProperty | ColumnCountProperty[]; - /** - * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns. - * - * **Initial value**: `balance` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | | 13 _-x-_ | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-fill - */ - "column-fill"?: ColumnFillProperty | ColumnFillProperty[]; - /** - * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns. - * - * **Initial value**: `normal` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :---------: | :--: | :-: | - * | No | **63** | **3** _-x-_ | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-------------: | :-------------: | :-------------------: | :----: | :-: | - * | **66** | **61** | **10.1** _(grid-gap)_ | **16** | No | - * | 57 _(grid-gap)_ | 52 _(grid-gap)_ | | | | - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **10** | **12** | **10** | - * | 1 _-x-_ | 1.5 _-x-_ | 3 _-x-_ | | | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-gap - */ - "column-gap"?: ColumnGapProperty | ColumnGapProperty[]; - /** - * The **`column-rule-color`** CSS property sets the color of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-color - */ - "column-rule-color"?: ColumnRuleColorProperty | ColumnRuleColorProperty[]; - /** - * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-style - */ - "column-rule-style"?: ColumnRuleStyleProperty | ColumnRuleStyleProperty[]; - /** - * The **`column-rule-width`** CSS property sets the width of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-width - */ - "column-rule-width"?: - | ColumnRuleWidthProperty - | ColumnRuleWidthProperty[]; - /** - * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **50** | **71** | **9** | **12** | **10** | - * | 6 _-x-_ | | 5.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-span - */ - "column-span"?: ColumnSpanProperty | ColumnSpanProperty[]; - /** - * The **`column-width`** CSS property specifies 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **50** | **9** | **12** | **10** | - * | 1 _-x-_ | 1.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-width - */ - "column-width"?: - | ColumnWidthProperty - | ColumnWidthProperty[]; - /** - * The **`contain`** CSS property allows an author to indicate that an element and its contents are, as much as possible, _independent_ of the rest of the document tree. This allows the browser to recalculate layout, style, paint, size, or any combination of them for a limited area of the DOM and not the entire page. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **52** | **69** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/contain - */ - contain?: ContainProperty | ContainProperty[]; - /** - * The **`content`** CSS property replaces an element with a generated value. Objects inserted using the `content` property are _anonymous replaced elements._ - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/content - */ - content?: ContentProperty | ContentProperty[]; - /** - * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **2** | **1** | **3** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/counter-increment - */ - "counter-increment"?: CounterIncrementProperty | CounterIncrementProperty[]; - /** - * The **`counter-reset`** CSS property resets a CSS counter to a given value. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **2** | **1** | **3** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/counter-reset - */ - "counter-reset"?: CounterResetProperty | CounterResetProperty[]; - /** - * The **`counter-set`** CSS property sets a CSS counter to a given value. It manipulates the value of existing counters, and will only create new counters if there isn't already a counter of the given name on the element. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **68** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/counter-set - */ - "counter-set"?: CounterSetProperty | CounterSetProperty[]; - /** - * The **`cursor`** CSS property sets mouse cursor to display when the mouse pointer is over an element. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1** | **1.2** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/cursor - */ - cursor?: CursorProperty | CursorProperty[]; - /** - * The **`direction`** CSS property sets the direction of text, table columns, and horizontal overflow. Use `rtl` for languages written from right to left (like Hebrew or Arabic), and `ltr` for those written from left to right (like English and most other languages). - * - * **Initial value**: `ltr` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **2** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/direction - */ - direction?: DirectionProperty | DirectionProperty[]; - /** - * The **`display`** CSS property defines the _display type_ of an element, which consists of the two basic qualities of how an element generates boxes — the **outer display type** defining how the box participates in flow layout, and the **inner display type** defining how the children of the box are laid out. - * - * **Initial value**: `inline` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/display - */ - display?: DisplayProperty | DisplayProperty[]; - /** - * The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `` cells that have no visible content. - * - * **Initial value**: `show` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1** | **1.2** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/empty-cells - */ - "empty-cells"?: EmptyCellsProperty | EmptyCellsProperty[]; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :-: | - * | **53** | **35** | **9.1** | **12** | No | - * | 18 _-x-_ | | 6 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/filter - */ - filter?: FilterProperty | FilterProperty[]; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :----: | - * | **29** | **22** | **9** | **12** | **11** | - * | 21 _-x-_ | | 7 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-basis - */ - "flex-basis"?: FlexBasisProperty | FlexBasisProperty[]; - /** - * 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). - * - * **Initial value**: `row` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :------: | - * | **29** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 7 _-x-_ | | 10 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-direction - */ - "flex-direction"?: FlexDirectionProperty | FlexDirectionProperty[]; - /** - * The **`flex-grow`** CSS property sets how much of the available space in the flex container should be assigned to that item (the flex grow factor). If all sibling items have the same flex grow factor, then all items will receive the same share of available space, otherwise it is distributed according to the ratio defined by the different flex grow factors. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----------------------: | - * | **29** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | 10 _(-ms-flex-positive)_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-grow - */ - "flex-grow"?: GlobalsNumber | GlobalsNumber[]; - /** - * The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of flex items is larger than the flex container, items shrink to fit according to `flex-shrink`. - * - * **Initial value**: `1` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :----: | :----: | - * | **29** | **20** | **9** | **12** | **10** | - * | 21 _-x-_ | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-shrink - */ - "flex-shrink"?: GlobalsNumber | GlobalsNumber[]; - /** - * 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. - * - * **Initial value**: `nowrap` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **29** | **28** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-wrap - */ - "flex-wrap"?: FlexWrapProperty | FlexWrapProperty[]; - /** - * The **`float`** CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning). - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/float - */ - float?: FloatProperty | FloatProperty[]; - /** - * 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. - * - * **Initial value**: depends on user agent - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-family - */ - "font-family"?: FontFamilyProperty | FontFamilyProperty[]; - /** - * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :------: | :-----: | :----: | :----: | - * | **48** | **34** | **9.1** | **15** | **10** | - * | 16 _-x-_ | 15 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-feature-settings - */ - "font-feature-settings"?: - | FontFeatureSettingsProperty - | FontFeatureSettingsProperty[]; - /** - * The **`font-kerning`** CSS property sets the use of the kerning information stored in a font. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------: | :-----: | :----: | :--: | :-: | - * | **32** _-x-_ | **32** | **7** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-kerning - */ - "font-kerning"?: FontKerningProperty | FontKerningProperty[]; - /** - * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **34** | No | No | No | - * | | 4 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-language-override - */ - "font-language-override"?: - | FontLanguageOverrideProperty - | FontLanguageOverrideProperty[]; - /** - * The **`font-optical-sizing`** CSS property sets whether text rendering is optimized for viewing at different sizes. This only works for fonts that have an optical size variation axis. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | **79** | **62** | **11** | **17** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing - */ - "font-optical-sizing"?: - | FontOpticalSizingProperty - | FontOpticalSizingProperty[]; - /** - * The **`font-size`** CSS property sets the size of the font. This property is also used to compute the size of `em`, `ex`, and other relative `` units. - * - * **Initial value**: `medium` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-size - */ - "font-size"?: FontSizeProperty | FontSizeProperty[]; - /** - * The **`font-size-adjust`** CSS property sets how the font size should be chosen based on the height of lowercase rather than capital letters. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **54** | **1** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-size-adjust - */ - "font-size-adjust"?: FontSizeAdjustProperty | FontSizeAdjustProperty[]; - /** - * The **`font-stretch`** CSS property selects a normal, condensed, or expanded face from a font. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **60** | **9** | **11** | **12** | **9** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-stretch - */ - "font-stretch"?: FontStretchProperty | FontStretchProperty[]; - /** - * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-style - */ - "font-style"?: FontStyleProperty | FontStyleProperty[]; - /** - * The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser. - * - * **Initial value**: `weight style` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **34** | **9** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis - */ - "font-synthesis"?: FontSynthesisProperty | FontSynthesisProperty[]; - /** - * The **font-variant** CSS property is a shorthand for the longhand properties `font-variant-caps`, `font-variant-numeric`, `font-variant-alternates`, `font-variant-ligatures`, and `font-variant-east-asian`. You can also set the CSS Level 2 (Revision 1) values of `font-variant`, (that is, `normal` or `small-caps`), by using the `font` shorthand. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant - */ - "font-variant"?: FontVariantProperty | FontVariantProperty[]; - /** - * The **`font-variant-caps`** CSS property controls the use of alternate glyphs for capital letters. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **52** | **34** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-caps - */ - "font-variant-caps"?: FontVariantCapsProperty | FontVariantCapsProperty[]; - /** - * The **`font-variant-east-asian`** CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **63** | **34** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian - */ - "font-variant-east-asian"?: - | FontVariantEastAsianProperty - | FontVariantEastAsianProperty[]; - /** - * The **`font-variant-ligatures`** CSS property controls which ligatures and contextual forms are used in textual content of the elements it applies to. This leads to more harmonized forms in the resulting text. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----: | :--: | :-: | - * | **34** | **34** | **9.1** | No | No | - * | 31 _-x-_ | | 7 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures - */ - "font-variant-ligatures"?: - | FontVariantLigaturesProperty - | FontVariantLigaturesProperty[]; - /** - * The **`font-variant-numeric`** CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **52** | **34** | **9.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric - */ - "font-variant-numeric"?: - | FontVariantNumericProperty - | FontVariantNumericProperty[]; - /** - * The **`font-variant-position`** CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **34** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position - */ - "font-variant-position"?: - | FontVariantPositionProperty - | FontVariantPositionProperty[]; - /** - * The **`font-variation-settings`** CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | **62** | **62** | **11** | **17** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-variation-settings - */ - "font-variation-settings"?: - | FontVariationSettingsProperty - | FontVariationSettingsProperty[]; - /** - * The **`font-weight`** CSS property specifies the weight (or boldness) of the font. The font weights available to you will depend on the `font-family` you are using. Some fonts are only available in `normal` and `bold`. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **2** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font-weight - */ - "font-weight"?: FontWeightProperty | FontWeightProperty[]; - /** - * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :---------------------: | :-------------------------: | - * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-columns)_ | - * | | | | 12 _(-ms-grid-columns)_ | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns - */ - "grid-auto-columns"?: - | GridAutoColumnsProperty - | GridAutoColumnsProperty[]; - /** - * The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid. - * - * **Initial value**: `row` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow - */ - "grid-auto-flow"?: GridAutoFlowProperty | GridAutoFlowProperty[]; - /** - * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :------------------: | :----------------------: | - * | **57** | **70** | **10.1** | **16** | **10** _(-ms-grid-rows)_ | - * | | | | 12 _(-ms-grid-rows)_ | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows - */ - "grid-auto-rows"?: - | GridAutoRowsProperty - | GridAutoRowsProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-end - */ - "grid-column-end"?: GridColumnEndProperty | GridColumnEndProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-start - */ - "grid-column-start"?: GridColumnStartProperty | GridColumnStartProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-end - */ - "grid-row-end"?: GridRowEndProperty | GridRowEndProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-start - */ - "grid-row-start"?: GridRowStartProperty | GridRowStartProperty[]; - /** - * The **`grid-template-areas`** CSS property specifies named grid areas. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-areas - */ - "grid-template-areas"?: - | GridTemplateAreasProperty - | GridTemplateAreasProperty[]; - /** - * The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-columns - */ - "grid-template-columns"?: - | GridTemplateColumnsProperty - | GridTemplateColumnsProperty[]; - /** - * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-rows - */ - "grid-template-rows"?: - | GridTemplateRowsProperty - | GridTemplateRowsProperty[]; - /** - * The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | **10** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/hanging-punctuation - */ - "hanging-punctuation"?: - | HangingPunctuationProperty - | HangingPunctuationProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/height - */ - height?: HeightProperty | HeightProperty[]; - /** - * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. You can prevent hyphenation entirely, use hyphenation in manually-specified points within the text, or let the browser automatically insert hyphens where appropriate. - * - * **Initial value**: `manual` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----------: | :----------: | :----------: | - * | **55** | **43** | **5.1** _-x-_ | **12** _-x-_ | **10** _-x-_ | - * | 13 _-x-_ | 6 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/hyphens - */ - hyphens?: HyphensProperty | HyphensProperty[]; - /** - * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image. It should _not_ be used for any other orientation adjustments; instead, the `transform` property should be used with the `rotate` ``. - * - * **Initial value**: `0deg` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **26** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/image-orientation - */ - "image-orientation"?: ImageOrientationProperty | ImageOrientationProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **13** | **3.6** | **6** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/image-rendering - */ - "image-rendering"?: ImageRenderingProperty | ImageRenderingProperty[]; - /** **Initial value**: `1dppx` */ - "image-resolution"?: ImageResolutionProperty | ImageResolutionProperty[]; - /** - * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | No | **9** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/initial-letter - */ - "initial-letter"?: InitialLetterProperty | InitialLetterProperty[]; - /** - * The **`inline-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inline-size - */ - "inline-size"?: InlineSizeProperty | InlineSizeProperty[]; - /** - * The **`inset`** CSS property defines the logical block and inline start and end offsets of an element, which map 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset - */ - inset?: InsetProperty | InsetProperty[]; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-block - */ - "inset-block"?: InsetBlockProperty | InsetBlockProperty[]; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end - */ - "inset-block-end"?: - | InsetBlockEndProperty - | InsetBlockEndProperty[]; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start - */ - "inset-block-start"?: - | InsetBlockStartProperty - | InsetBlockStartProperty[]; - /** - * The **`inset-inline`** 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline - */ - "inset-inline"?: - | InsetInlineProperty - | InsetInlineProperty[]; - /** - * The **`inset-inline-end`** CSS property defines the logical inline end inset 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end - */ - "inset-inline-end"?: - | InsetInlineEndProperty - | InsetInlineEndProperty[]; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | **63** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start - */ - "inset-inline-start"?: - | InsetInlineStartProperty - | InsetInlineStartProperty[]; - /** - * The **`isolation`** CSS property determines whether an element must create a new stacking context. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **41** | **36** | **8** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/isolation - */ - isolation?: IsolationProperty | IsolationProperty[]; - /** - * The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container. - * - * **Initial value**: `normal` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **52** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/justify-content - */ - "justify-content"?: JustifyContentProperty | JustifyContentProperty[]; - /** - * 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. - * - * **Initial value**: `legacy` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | **52** | **20** | **9** | **12** | **11** | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **45** | **10.1** | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/justify-items - */ - "justify-items"?: JustifyItemsProperty | JustifyItemsProperty[]; - /** - * The CSS **`justify-self`** property set the way a box is justified inside its alignment container along the appropriate axis. - * - * **Initial value**: `auto` - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **45** | **10.1** | **16** | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **45** | **10.1** | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/justify-self - */ - "justify-self"?: JustifySelfProperty | JustifySelfProperty[]; - /** - * The **`left`** CSS property participates in specifying the horizontal position of a _positioned element_. It has no effect on non-positioned elements. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/left - */ - left?: LeftProperty | LeftProperty[]; - /** - * The **`letter-spacing`** CSS property sets the spacing behavior between text characters. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/letter-spacing - */ - "letter-spacing"?: - | LetterSpacingProperty - | LetterSpacingProperty[]; - /** - * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :---------: | :----: | :-----: | - * | **58** | **69** | **3** _-x-_ | **14** | **5.5** | - * | 1 _-x-_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/line-break - */ - "line-break"?: LineBreakProperty | LineBreakProperty[]; - /** - * The **`line-height`** CSS property sets the amount of space used for lines, such as in text. On block-level elements, it specifies the minimum height of line boxes within the element. On non-replaced inline elements, it specifies the height that is used to calculate line box height. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/line-height - */ - "line-height"?: LineHeightProperty | LineHeightProperty[]; - /** - * The **`line-height-step`** CSS property sets the step unit for line box heights. When the property is set, line box heights are rounded up to the closest multiple of the unit. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | n/a | No | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/line-height-step - */ - "line-height-step"?: - | LineHeightStepProperty - | LineHeightStepProperty[]; - /** - * The **`list-style-image`** CSS property sets an image to be used as the list item marker. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style-image - */ - "list-style-image"?: ListStyleImageProperty | ListStyleImageProperty[]; - /** - * The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item. - * - * **Initial value**: `outside` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style-position - */ - "list-style-position"?: - | ListStylePositionProperty - | ListStylePositionProperty[]; - /** - * The **`list-style-type`** CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element. - * - * **Initial value**: `disc` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style-type - */ - "list-style-type"?: ListStyleTypeProperty | ListStyleTypeProperty[]; - /** - * The **`margin-block`** CSS 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-block - */ - "margin-block"?: - | MarginBlockProperty - | MarginBlockProperty[]; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end - */ - "margin-block-end"?: - | MarginBlockEndProperty - | MarginBlockEndProperty[]; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start - */ - "margin-block-start"?: - | MarginBlockStartProperty - | MarginBlockStartProperty[]; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom - */ - "margin-bottom"?: - | MarginBottomProperty - | MarginBottomProperty[]; - /** - * The **`margin-inline`** CSS property defines 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline - */ - "margin-inline"?: - | MarginInlineProperty - | MarginInlineProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------------------: | :-------------------: | :----------------------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | 2 _(-webkit-margin-end)_ | 3 _(-moz-margin-end)_ | 3 _(-webkit-margin-end)_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end - */ - "margin-inline-end"?: - | MarginInlineEndProperty - | MarginInlineEndProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------------------------: | :---------------------: | :------------------------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * | 2 _(-webkit-margin-start)_ | 3 _(-moz-margin-start)_ | 3 _(-webkit-margin-start)_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start - */ - "margin-inline-start"?: - | MarginInlineStartProperty - | MarginInlineStartProperty[]; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-left - */ - "margin-left"?: MarginLeftProperty | MarginLeftProperty[]; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-right - */ - "margin-right"?: - | MarginRightProperty - | MarginRightProperty[]; - /** - * 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. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin-top - */ - "margin-top"?: MarginTopProperty | MarginTopProperty[]; - /** - * The **`mask-border-mode`** CSS property specifies the blending mode used in a mask border. - * - * **Initial value**: `alpha` - */ - "mask-border-mode"?: MaskBorderModeProperty | MaskBorderModeProperty[]; - /** - * The **`mask-border-outset`** CSS property specifies the distance by which an element's mask border is set out from its border box. - * - * **Initial value**: `0` - */ - "mask-border-outset"?: - | MaskBorderOutsetProperty - | MaskBorderOutsetProperty[]; - /** - * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border. - * - * **Initial value**: `stretch` - */ - "mask-border-repeat"?: MaskBorderRepeatProperty | MaskBorderRepeatProperty[]; - /** - * The **`mask-border-slice`** CSS property divides the image set by `mask-border-source` into regions. These regions are used to form the components of an element's mask border. - * - * **Initial value**: `0` - */ - "mask-border-slice"?: MaskBorderSliceProperty | MaskBorderSliceProperty[]; - /** - * The **`mask-border-source`** CSS property sets the source image used to create an element's mask border. - * - * **Initial value**: `none` - */ - "mask-border-source"?: MaskBorderSourceProperty | MaskBorderSourceProperty[]; - /** - * The **`mask-border-width`** CSS property sets the width of an element's mask border. - * - * **Initial value**: `auto` - */ - "mask-border-width"?: - | MaskBorderWidthProperty - | MaskBorderWidthProperty[]; - /** - * 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. - * - * **Initial value**: `border-box` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :--: | :-: | - * | **1** _-x-_ | **53** | **4** _-x-_ | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-clip - */ - "mask-clip"?: MaskClipProperty | MaskClipProperty[]; - /** - * The **`mask-composite`** CSS property represents a compositing operation used on the current mask layer with the mask layers below it. - * - * **Initial value**: `add` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | No | **53** | No | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-composite - */ - "mask-composite"?: MaskCompositeProperty | MaskCompositeProperty[]; - /** - * The **`mask-image`** CSS property sets the image that is used as mask layer for an element. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :----: | :-: | - * | **1** _-x-_ | **53** | **4** _-x-_ | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-image - */ - "mask-image"?: MaskImageProperty | MaskImageProperty[]; - /** - * The **`mask-mode`** CSS property sets whether the mask reference defined by `mask-image` is treated as a luminance or alpha mask. - * - * **Initial value**: `match-source` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **53** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-mode - */ - "mask-mode"?: MaskModeProperty | MaskModeProperty[]; - /** - * The **`mask-origin`** CSS property sets the origin of a mask. - * - * **Initial value**: `border-box` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :--: | :-: | - * | **1** _-x-_ | **53** | **4** _-x-_ | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-origin - */ - "mask-origin"?: MaskOriginProperty | MaskOriginProperty[]; - /** - * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image. - * - * **Initial value**: `center` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :-----------: | :----: | :-: | - * | **1** _-x-_ | **53** | **3.2** _-x-_ | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-position - */ - "mask-position"?: - | MaskPositionProperty - | MaskPositionProperty[]; - /** - * 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. - * - * **Initial value**: `no-repeat` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :-----------: | :----: | :-: | - * | **1** _-x-_ | **53** | **3.2** _-x-_ | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-repeat - */ - "mask-repeat"?: MaskRepeatProperty | MaskRepeatProperty[]; - /** - * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :---------: | :-----: | :---------: | :----: | :-: | - * | **4** _-x-_ | **53** | **4** _-x-_ | **18** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-size - */ - "mask-size"?: MaskSizeProperty | MaskSizeProperty[]; - /** - * The **`mask-type`** CSS property sets whether an SVG `` element is used as a _luminance_ or an _alpha_ mask. It applies to the `` element itself. - * - * **Initial value**: `luminance` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **24** | **35** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask-type - */ - "mask-type"?: MaskTypeProperty | MaskTypeProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-block-size - */ - "max-block-size"?: - | MaxBlockSizeProperty - | MaxBlockSizeProperty[]; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **18** | **1** | **1.3** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-height - */ - "max-height"?: MaxHeightProperty | MaxHeightProperty[]; - /** - * 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 the `max-width` or the `max-height` property depending on the value defined for `writing-mode`. If the writing mode is vertically oriented, the value of `max-inline-size` relates to the maximal height of the element, otherwise it relates to the maximal width of the element. It relates to `max-block-size`, which defines the other dimension of the element. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :--------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * | | | 10.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-inline-size - */ - "max-inline-size"?: - | MaxInlineSizeProperty - | MaxInlineSizeProperty[]; - /** **Initial value**: `none` */ - "max-lines"?: MaxLinesProperty | MaxLinesProperty[]; - /** - * 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`. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/max-width - */ - "max-width"?: MaxWidthProperty | MaxWidthProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-block-size - */ - "min-block-size"?: - | MinBlockSizeProperty - | MinBlockSizeProperty[]; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **3** | **1.3** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-height - */ - "min-height"?: MinHeightProperty | MinHeightProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-inline-size - */ - "min-inline-size"?: - | MinInlineSizeProperty - | MinInlineSizeProperty[]; - /** - * 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`. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **7** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/min-width - */ - "min-width"?: MinWidthProperty | MinWidthProperty[]; - /** - * 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. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **41** | **32** | **8** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode - */ - "mix-blend-mode"?: MixBlendModeProperty | MixBlendModeProperty[]; - /** - * The **`offset-distance`** CSS property specifies a position along an `offset-path`. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :--------------------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion-distance)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance - */ - "motion-distance"?: - | OffsetDistanceProperty - | OffsetDistanceProperty[]; - /** - * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----------------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion-path)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset-path - */ - "motion-path"?: OffsetPathProperty | OffsetPathProperty[]; - /** - * The **`offset-rotate`** CSS property defines the direction of the element while positioning along the offset path. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :--------------------: | :-----: | :----: | :--: | :-: | - * | **56** | n/a | No | No | No | - * | 46 _(motion-rotation)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate - */ - "motion-rotation"?: OffsetRotateProperty | OffsetRotateProperty[]; - /** - * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `` or `
` cells, rows, and columns. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **14** | **1** | **1** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/table-layout - */ - "table-layout"?: TableLayoutProperty | TableLayoutProperty[]; - /** - * The **`text-align`** CSS property sets the horizontal alignment of an inline or table-cell box. This means it works like `vertical-align` but in the horizontal direction. - * - * **Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-align - */ - "text-align"?: TextAlignProperty | TextAlignProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **47** | **49** | No | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-align-last - */ - "text-align-last"?: TextAlignLastProperty | TextAlignLastProperty[]; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------------------------: | :-----: | :------------------------------: | :------------------------------------: | :------------------------------------: | - * | **48** | **48** | **5.1** _(-webkit-text-combine)_ | **12** _(-ms-text-combine-horizontal)_ | **11** _(-ms-text-combine-horizontal)_ | - * | 9 _(-webkit-text-combine)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-combine-upright - */ - "text-combine-upright"?: - | TextCombineUprightProperty - | TextCombineUprightProperty[]; - /** - * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **36** | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-color - */ - "text-decoration-color"?: - | TextDecorationColorProperty - | TextDecorationColorProperty[]; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **36** | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-line - */ - "text-decoration-line"?: - | TextDecorationLineProperty - | TextDecorationLineProperty[]; - /** - * The **`text-decoration-skip`** CSS property sets what parts of an element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors. - * - * **Initial value**: `objects` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | 57-64 | No | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip - */ - "text-decoration-skip"?: - | TextDecorationSkipProperty - | TextDecorationSkipProperty[]; - /** - * The **`text-decoration-skip-ink`** CSS property specifies how overlines and underlines are drawn when they pass over glyph ascenders and descenders. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **64** | **70** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink - */ - "text-decoration-skip-ink"?: - | TextDecorationSkipInkProperty - | TextDecorationSkipInkProperty[]; - /** - * 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`. - * - * **Initial value**: `solid` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **57** | **36** | **12.1** | No | No | - * | | | 8 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-style - */ - "text-decoration-style"?: - | TextDecorationStyleProperty - | TextDecorationStyleProperty[]; - /** - * The **`text-decoration-thickness`** CSS property sets the thickness, or width, of the decoration line that is used on text in an element, such as a line-through, underline, or overline. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | No | **70** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness - */ - "text-decoration-thickness"?: - | TextDecorationThicknessProperty - | TextDecorationThicknessProperty[]; - /** - * The **`text-decoration-thickness`** CSS property sets the thickness, or width, of the decoration line that is used on text in an element, such as a line-through, underline, or overline. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | No | **70** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness - */ - "text-decoration-width"?: - | TextDecorationThicknessProperty - | TextDecorationThicknessProperty[]; - /** - * The **`text-emphasis-color`** CSS property sets the color of emphasis marks. This value can also be set using the `text-emphasis` shorthand. - * - * **Initial value**: `currentcolor` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color - */ - "text-emphasis-color"?: - | TextEmphasisColorProperty - | TextEmphasisColorProperty[]; - /** - * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased. - * - * **Initial value**: `over right` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position - */ - "text-emphasis-position"?: GlobalsString | GlobalsString[]; - /** - * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style - */ - "text-emphasis-style"?: - | TextEmphasisStyleProperty - | TextEmphasisStyleProperty[]; - /** - * The **`text-indent`** CSS property sets the length of empty space (indentation) that is put before lines of text in a block. - * - * **Initial value**: `0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-indent - */ - "text-indent"?: TextIndentProperty | TextIndentProperty[]; - /** - * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :----: | - * | n/a | **55** | No | **12** | **11** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-justify - */ - "text-justify"?: TextJustifyProperty | TextJustifyProperty[]; - /** - * 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. - * - * **Initial value**: `mixed` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-----------: | :--: | :-: | - * | **48** | **41** | **5.1** _-x-_ | No | No | - * | 11 _-x-_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-orientation - */ - "text-orientation"?: TextOrientationProperty | TextOrientationProperty[]; - /** - * 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. - * - * **Initial value**: `clip` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **7** | **1.3** | **12** | **6** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-overflow - */ - "text-overflow"?: TextOverflowProperty | TextOverflowProperty[]; - /** - * The **`text-rendering`** CSS property provides information to the rendering engine about what to optimize for when rendering text. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **4** | **1** | **5** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-rendering - */ - "text-rendering"?: TextRenderingProperty | TextRenderingProperty[]; - /** - * 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :----: | - * | **2** | **3.5** | **1.1** | **12** | **10** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-shadow - */ - "text-shadow"?: TextShadowProperty | TextShadowProperty[]; - /** - * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property. - * - * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable). - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----------: | :-: | - * | **54** | No | No | **12** _-x-_ | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-size-adjust - */ - "text-size-adjust"?: TextSizeAdjustProperty | TextSizeAdjustProperty[]; - /** - * 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 - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-transform - */ - "text-transform"?: TextTransformProperty | TextTransformProperty[]; - /** - * The **`text-underline-offset`** CSS property sets the offset distance of an underline text decoration line (applied using `text-decoration`) from its original position. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | No | **70** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-offset - */ - "text-underline-offset"?: - | TextUnderlineOffsetProperty - | TextUnderlineOffsetProperty[]; - /** - * The **`text-underline-position`** CSS property specifies the position of the underline which is set using the `text-decoration` property's `underline` value. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **33** | No | No | **12** | **6** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-position - */ - "text-underline-position"?: - | TextUnderlinePositionProperty - | TextUnderlinePositionProperty[]; - /** - * The **`top`** CSS property participates in specifying the vertical position of a _positioned element_. It has no effect on non-positioned elements. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/top - */ - top?: TopProperty | TopProperty[]; - /** - * The **`touch-action`** CSS property sets how a region can be manipulated by a touchscreen user (for example, by zooming features built into the browser). - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :------: | - * | **36** | **52** | **13** | **12** | **11** | - * | | | | | 10 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/touch-action - */ - "touch-action"?: TouchActionProperty | TouchActionProperty[]; - /** - * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :-----: | - * | **36** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | | 3.1 _-x-_ | | 9 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform - */ - transform?: TransformProperty | TransformProperty[]; - /** - * The **`transform-box`** CSS property defines the layout box to which the `transform` and `transform-origin` properties relate. - * - * **Initial value**: `border-box ` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **64** | **55** | **11** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform-box - */ - "transform-box"?: TransformBoxProperty | TransformBoxProperty[]; - /** - * The **`transform-origin`** CSS property sets the origin for an element's transformations. - * - * **Initial value**: `50% 50% 0` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :-----: | - * | **36** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 2 _-x-_ | | 9 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform-origin - */ - "transform-origin"?: - | TransformOriginProperty - | TransformOriginProperty[]; - /** - * 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. - * - * **Initial value**: `flat` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :------: | :-----: | :----: | :-: | - * | **36** | **16** | **9** | **12** | No | - * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transform-style - */ - "transform-style"?: TransformStyleProperty | TransformStyleProperty[]; - /** - * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes. - * - * **Initial value**: `0s` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-delay - */ - "transition-delay"?: GlobalsString | GlobalsString[]; - /** - * 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. - * - * **Initial value**: `0s` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-duration - */ - "transition-duration"?: GlobalsString | GlobalsString[]; - /** - * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied. - * - * **Initial value**: all - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-property - */ - "transition-property"?: - | TransitionPropertyProperty - | TransitionPropertyProperty[]; - /** - * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect. - * - * **Initial value**: `ease` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition-timing-function - */ - "transition-timing-function"?: - | TransitionTimingFunctionProperty - | TransitionTimingFunctionProperty[]; - /** - * The **`translate`** CSS property allows you to specify translation transforms individually and independantly 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. - * - * **Initial value**: `none` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | n/a | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/translate - */ - translate?: TranslateProperty | TranslateProperty[]; - /** - * 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. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :-----: | - * | **2** | **1** | **1.3** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/unicode-bidi - */ - "unicode-bidi"?: UnicodeBidiProperty | UnicodeBidiProperty[]; - /** - * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :---------: | :----------: | :----------: | - * | **54** | **69** | **3** _-x-_ | **12** _-x-_ | **10** _-x-_ | - * | 1 _-x-_ | 1 _-x-_ | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/user-select - */ - "user-select"?: UserSelectProperty | UserSelectProperty[]; - /** - * The **`vertical-align`** CSS property sets vertical alignment of an inline or table-cell box. - * - * **Initial value**: `baseline` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/vertical-align - */ - "vertical-align"?: - | VerticalAlignProperty - | VerticalAlignProperty[]; - /** - * 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 `
`. - * - * **Initial value**: `visible` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/visibility - */ - visibility?: VisibilityProperty | VisibilityProperty[]; - /** - * The **`white-space`** CSS property sets how white space inside an element is handled. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/white-space - */ - "white-space"?: WhiteSpaceProperty | WhiteSpaceProperty[]; - /** - * 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. - * - * **Initial value**: `2` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **25** | No | **1.3** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/widows - */ - widows?: GlobalsNumber | GlobalsNumber[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/width - */ - width?: WidthProperty | WidthProperty[]; - /** - * 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. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **36** | **36** | **9.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/will-change - */ - "will-change"?: WillChangeProperty | WillChangeProperty[]; - /** - * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **15** | **3** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/word-break - */ - "word-break"?: WordBreakProperty | WordBreakProperty[]; - /** - * The **`word-spacing`** CSS property sets the length of space between words and between tags. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **6** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/word-spacing - */ - "word-spacing"?: - | WordSpacingProperty - | WordSpacingProperty[]; - /** - * The `**overflow-wrap**` CSS property sets whether the browser should insert line breaks within words to prevent text from overflowing its content box. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **3.5** | **2** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/overflow-wrap - */ - "word-wrap"?: WordWrapProperty | WordWrapProperty[]; - /** - * 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. - * - * **Initial value**: `horizontal-tb` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :---------: | - * | **48** | **41** | **10.1** | **12** | **9** _-x-_ | - * | 8 _-x-_ | | 5.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/writing-mode - */ - "writing-mode"?: WritingModeProperty | WritingModeProperty[]; - /** - * The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one. - * - * **Initial value**: `auto` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/z-index - */ - "z-index"?: ZIndexProperty | ZIndexProperty[]; - /** - * The non-standard **`zoom`** CSS property can be used to control the magnification level of an element. `transform: scale()` should be used instead of this property, if possible. However, unlike CSS Transforms, `zoom` affects the layout size of the element. - * - * **Initial value**: `normal` - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :-----: | - * | **1** | No | **3.1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/zoom - */ - zoom?: ZoomProperty | ZoomProperty[]; -} - -export interface StandardShorthandPropertiesHyphenFallback< - TLength = string | 0 -> { - /** - * The `**all**` CSS shorthand property sets all of an element's properties (other than `unicode-bidi` and `direction`) to their initial or inherited values, or to the values specified in another stylesheet origin. - * - * **Initial value**: There is no practical initial value for it. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **37** | **27** | **9.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/all - */ - all?: Globals | Globals[]; - /** - * The **`animation`** shorthand CSS property sets an animated transition between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :----: | - * | **43** | **16** | **9** | **12** | **10** | - * | 3 _-x-_ | 5 _-x-_ | 4 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/animation - */ - animation?: AnimationProperty | AnimationProperty[]; - /** - * The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/background - */ - background?: BackgroundProperty | BackgroundProperty[]; - /** - * The **`border`** CSS property sets an element's border. It's a shorthand for `border-width`, `border-style`, and `border-color`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border - */ - border?: BorderProperty | BorderProperty[]; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block - */ - "border-block"?: - | BorderBlockProperty - | BorderBlockProperty[]; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end - */ - "border-block-end"?: - | BorderBlockEndProperty - | BorderBlockEndProperty[]; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start - */ - "border-block-start"?: - | BorderBlockStartProperty - | BorderBlockStartProperty[]; - /** - * The **`border-bottom`** CSS property is a shorthand that sets the values of `border-bottom-width`, `border-bottom-style` and `border-bottom-color`. These properties set an element's bottom border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom - */ - "border-bottom"?: - | BorderBottomProperty - | BorderBottomProperty[]; - /** - * The **`border-color`** shorthand CSS property sets the color of all sides of an element's border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-color - */ - "border-color"?: BorderColorProperty | BorderColorProperty[]; - /** - * The **`border-image`** CSS property draws an image in place of an element's `border-style`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **16** | **15** | **6** | **12** | **11** | - * | 7 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-image - */ - "border-image"?: BorderImageProperty | BorderImageProperty[]; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **69** | **66** | No | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline - */ - "border-inline"?: - | BorderInlineProperty - | BorderInlineProperty[]; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end - */ - "border-inline-end"?: - | BorderInlineEndProperty - | BorderInlineEndProperty[]; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :--: | :-: | - * | **69** | **41** | **12.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start - */ - "border-inline-start"?: - | BorderInlineStartProperty - | BorderInlineStartProperty[]; - /** - * The **`border-left`** CSS property is a shorthand that sets the values of `border-left-width`, `border-left-style` and `border-left-color`. These properties set an element's left border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-left - */ - "border-left"?: BorderLeftProperty | BorderLeftProperty[]; - /** - * 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-----: | :----: | :---: | - * | **4** | **4** | **5** | **12** | **9** | - * | 1 _-x-_ | | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-radius - */ - "border-radius"?: - | BorderRadiusProperty - | BorderRadiusProperty[]; - /** - * The **`border-right`** CSS property is a shorthand that sets the values of `border-right-width`, `border-right-style` and `border-right-color`. These properties set an element's right border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-----: | - * | **1** | **1** | **1** | **12** | **5.5** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-right - */ - "border-right"?: - | BorderRightProperty - | BorderRightProperty[]; - /** - * The **`border-style`** CSS property is a shorthand property that sets the line style for all four sides of an element's border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-style - */ - "border-style"?: BorderStyleProperty | BorderStyleProperty[]; - /** - * The **`border-top`** CSS property is a shorthand that sets the values of `border-top-width`, `border-top-style` and `border-top-color`. These properties set an element's top border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-top - */ - "border-top"?: BorderTopProperty | BorderTopProperty[]; - /** - * The **`border-width`** shorthand CSS property sets the widths of all four sides of an element's border. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/border-width - */ - "border-width"?: - | BorderWidthProperty - | BorderWidthProperty[]; - /** - * The **`column-rule`** CSS property sets the width, style, and color of the rule (line) drawn between columns in a multi-column layout. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-------: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | 1 _-x-_ | 3.5 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/column-rule - */ - "column-rule"?: ColumnRuleProperty | ColumnRuleProperty[]; - /** - * The **`columns`** CSS property sets the column width and column count of an element. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :----: | - * | **50** | **52** | **9** | **12** | **10** | - * | | 9 _-x-_ | 3 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/columns - */ - columns?: ColumnsProperty | ColumnsProperty[]; - /** - * The **`flex`** CSS property sets how a flex item will grow or shrink to fit the space available in its flex container. It is a shorthand for `flex-grow`, `flex-shrink`, and `flex-basis`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :------: | - * | **29** | **20** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | 10 _-x-_ | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex - */ - flex?: FlexProperty | FlexProperty[]; - /** - * The **`flex-flow`** CSS property is a shorthand property for `flex-direction` and `flex-wrap` properties. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :------: | :-----: | :-------: | :----: | :----: | - * | **29** | **28** | **9** | **12** | **11** | - * | 21 _-x-_ | | 6.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/flex-flow - */ - "flex-flow"?: FlexFlowProperty | FlexFlowProperty[]; - /** - * The **`font`** CSS property is a shorthand for `font-style`, `font-variant`, `font-weight`, `font-size`, `line-height`, and `font-family`. Alternatively, it sets an element's font to a system font. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/font - */ - font?: FontProperty | FontProperty[]; - /** - * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`. - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | No | **63** | No | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-------------: | :-------------: | :-------------------: | :----: | :-: | - * | **66** | **61** | **10.1** _(grid-gap)_ | **16** | No | - * | 57 _(grid-gap)_ | 52 _(grid-gap)_ | | | | - * - * --- - * - * _Supported in Multi-column Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :-: | - * | **66** | **61** | No | **16** | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/gap - */ - gap?: GapProperty | GapProperty[]; - /** - * The **`grid`** CSS property is a shorthand property that sets all of the explicit grid properties (`grid-template-rows`, `grid-template-columns`, and `grid-template-areas`), and all the implicit grid properties (`grid-auto-rows`, `grid-auto-columns`, and `grid-auto-flow`), in a single declaration. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid - */ - grid?: GridProperty | GridProperty[]; - /** - * The **`grid-area`** CSS property is a shorthand property for `grid-row-start`, `grid-column-start`, `grid-row-end` and `grid-column-end`, specifying a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the edges of its grid area. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-area - */ - "grid-area"?: GridAreaProperty | GridAreaProperty[]; - /** - * The **`grid-column`** CSS property is a shorthand property for `grid-column-start` and `grid-column-end` specifying a grid item's size and location within the 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. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-column - */ - "grid-column"?: GridColumnProperty | GridColumnProperty[]; - /** - * The **`grid-row`** CSS property is a shorthand property for `grid-row-start` and `grid-row-end` specifying a grid item’s size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-row - */ - "grid-row"?: GridRowProperty | GridRowProperty[]; - /** - * The **`grid-template`** CSS property is a shorthand property for defining grid columns, rows, and areas. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :------: | :----: | :-: | - * | **57** | **52** | **10.1** | **16** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/grid-template - */ - "grid-template"?: GridTemplateProperty | GridTemplateProperty[]; - /** **Initial value**: `none` */ - "line-clamp"?: LineClampProperty | LineClampProperty[]; - /** - * The **`list-style`** CSS property is a shorthand to set list style properties `list-style-type`, `list-style-image`, and `list-style-position`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/list-style - */ - "list-style"?: ListStyleProperty | ListStyleProperty[]; - /** - * The **`margin`** CSS property sets the margin area on all four sides of an element. It is a shorthand for `margin-top`, `margin-right`, `margin-bottom`, and `margin-left`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/margin - */ - margin?: MarginProperty | MarginProperty[]; - /** - * The **`mask`** CSS property hides an element (partially or fully) by masking or clipping the image at specific points. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :-: | - * | **1** | **2** | **3.2** | **12** | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/mask - */ - mask?: MaskProperty | MaskProperty[]; - /** The **`mask-border`** CSS property lets you create a mask along the edge of an element's border. */ - "mask-border"?: MaskBorderProperty | MaskBorderProperty[]; - /** - * The **`offset`** CSS property is a shorthand property for animating an element along a defined path. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset - */ - motion?: OffsetProperty | OffsetProperty[]; - /** - * The **`offset`** CSS property is a shorthand property for animating an element along a defined path. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----------: | :-----: | :----: | :--: | :-: | - * | **55** | n/a | No | No | No | - * | 46 _(motion)_ | | | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/offset - */ - offset?: OffsetProperty | OffsetProperty[]; - /** - * The **`outline`** CSS property is a shorthand to set various outline properties in a single declaration: `outline-style`, `outline-width`, and `outline-color`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :----: | :---: | - * | **1** | **1.5** | **1.2** | **12** | **8** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/outline - */ - outline?: OutlineProperty | OutlineProperty[]; - /** - * The **`padding`** CSS property sets the padding area on all four sides of an element. It is a shorthand for `padding-top`, `padding-right`, `padding-bottom`, and `padding-left`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **4** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/padding - */ - padding?: PaddingProperty | PaddingProperty[]; - /** - * The CSS **`place-items`** shorthand property sets the `align-items` and `justify-items` properties, respectively. If the second value is not set, the first value is also used for it. - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | **11** | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | **11** | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/place-items - */ - "place-items"?: PlaceItemsProperty | PlaceItemsProperty[]; - /** - * The **`place-self`** CSS property is a shorthand property sets both the `align-self` and `justify-self` properties. The first value is the `align-self` property value, the second the `justify-self` one. If the second value is not present, the first value is also used for it. - * - * --- - * - * _Supported in Flex Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | No | No | No | - * - * --- - * - * _Supported in Grid Layout_ - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :--: | :-: | - * | **59** | **45** | No | No | No | - * - * --- - * - * @see https://developer.mozilla.org/docs/Web/CSS/place-self - */ - "place-self"?: PlaceSelfProperty | PlaceSelfProperty[]; - /** - * The **`text-decoration`** CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, and `text-decoration-style`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :----: | :----: | :---: | - * | **1** | **1** | **1** | **12** | **3** | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration - */ - "text-decoration"?: - | TextDecorationProperty - | TextDecorationProperty[]; - /** - * 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`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :----: | :-----: | :-----: | :--: | :-: | - * | **25** | **46** | **6.1** | No | No | - * - * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis - */ - "text-emphasis"?: TextEmphasisProperty | TextEmphasisProperty[]; - /** - * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`. - * - * | Chrome | Firefox | Safari | Edge | IE | - * | :-----: | :-----: | :-------: | :----: | :----: | - * | **26** | **16** | **9** | **12** | **10** | - * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | | - * - * @see https://developer.mozilla.org/docs/Web/CSS/transition - */ - transition?: TransitionProperty | TransitionProperty[]; -} - -export interface StandardPropertiesHyphenFallback - extends StandardLonghandPropertiesHyphenFallback, - StandardShorthandPropertiesHyphenFallback {} - -export interface VendorLonghandPropertiesHyphenFallback { - /** - * The **`animation-delay`** CSS property sets when an animation starts. The animation can start later, immediately from its beginning, or immediately and partway through the animation. - * - * **Initial value**: `0s` - */ - "-moz-animation-delay"?: GlobalsString | GlobalsString[]; - /** - * The **`animation-direction`** CSS property sets whether an animation should play forwards, backwards, or alternating back and forth. - * - * **Initial value**: `normal` - */ - "-moz-animation-direction"?: - | AnimationDirectionProperty - | AnimationDirectionProperty[]; - /** - * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle. - * - * **Initial value**: `0s` - */ - "-moz-animation-duration"?: GlobalsString | GlobalsString[]; - /** - * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution. - * - * **Initial value**: `none` - */ - "-moz-animation-fill-mode"?: - | AnimationFillModeProperty - | AnimationFillModeProperty[]; - /** - * The **`animation-iteration-count`** CSS property sets the number of times an animation cycle should be played before stopping. - * - * **Initial value**: `1` - */ - "-moz-animation-iteration-count"?: - | AnimationIterationCountProperty - | AnimationIterationCountProperty[]; - /** - * The **`animation-name`** CSS property sets one or more animations to apply to an element. Each name is an `@keyframes` at-rule that sets the property values for the animation sequence. - * - * **Initial value**: `none` - */ - "-moz-animation-name"?: AnimationNameProperty | AnimationNameProperty[]; - /** - * The **`animation-play-state`** CSS property sets whether an animation is running or paused. - * - * **Initial value**: `running` - */ - "-moz-animation-play-state"?: - | AnimationPlayStateProperty - | AnimationPlayStateProperty[]; - /** - * The `**animation-timing-function**` CSS property sets how an animation progresses through the duration of each cycle. - * - * **Initial value**: `ease` - */ - "-moz-animation-timing-function"?: - | AnimationTimingFunctionProperty - | AnimationTimingFunctionProperty[]; - /** - * The **`-moz-appearance`** CSS property is used in Gecko (Firefox) to display an element using platform-native styling based on the operating system's theme. - * - * **Initial value**: `none` (but this value is overridden in the user agent CSS) - */ - "-moz-appearance"?: MozAppearanceProperty | MozAppearanceProperty[]; - /** - * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user. - * - * **Initial value**: `visible` - */ - "-moz-backface-visibility"?: - | BackfaceVisibilityProperty - | BackfaceVisibilityProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - */ - "-moz-border-end-color"?: - | BorderInlineEndColorProperty - | BorderInlineEndColorProperty[]; - /** - * 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`. - * - * **Initial value**: `none` - */ - "-moz-border-end-style"?: - | BorderInlineEndStyleProperty - | BorderInlineEndStyleProperty[]; - /** - * 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`. - * - * **Initial value**: `medium` - */ - "-moz-border-end-width"?: - | BorderInlineEndWidthProperty - | BorderInlineEndWidthProperty[]; - /** - * 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`. - * - * **Initial value**: `currentcolor` - */ - "-moz-border-start-color"?: - | BorderInlineStartColorProperty - | BorderInlineStartColorProperty[]; - /** - * 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`. - * - * **Initial value**: `none` - */ - "-moz-border-start-style"?: - | BorderInlineStartStyleProperty - | BorderInlineStartStyleProperty[]; - /** - * The **`box-sizing`** CSS property defines how the user agent should calculate the total width and height of an element. - * - * **Initial value**: `content-box` - */ - "-moz-box-sizing"?: BoxSizingProperty | BoxSizingProperty[]; - /** - * The **`column-count`** CSS property breaks an element's content into the specified number of columns. - * - * **Initial value**: `auto` - */ - "-moz-column-count"?: ColumnCountProperty | ColumnCountProperty[]; - /** - * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns. - * - * **Initial value**: `balance` - */ - "-moz-column-fill"?: ColumnFillProperty | ColumnFillProperty[]; - /** - * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns. - * - * **Initial value**: `normal` - */ - "-moz-column-gap"?: ColumnGapProperty | ColumnGapProperty[]; - /** - * The **`column-rule-color`** CSS property sets the color of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `currentcolor` - */ - "-moz-column-rule-color"?: - | ColumnRuleColorProperty - | ColumnRuleColorProperty[]; - /** - * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout. - * - * **Initial value**: `none` - */ - "-moz-column-rule-style"?: - | ColumnRuleStyleProperty - | ColumnRuleStyleProperty[]; - /** - * The **`column-rule-width`** CSS property sets the width of the rule (line) drawn between columns in a multi-column layout. - * - * **Initial value**: `medium` - */ - "-moz-column-rule-width"?: - | ColumnRuleWidthProperty - | ColumnRuleWidthProperty[]; - /** - * The **`column-width`** CSS property specifies 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. - * - * **Initial value**: `auto` - */ - "-moz-column-width"?: - | ColumnWidthProperty - | ColumnWidthProperty[]; - /** - * If you reference an SVG image in a webpage (such as with the `` element or as a background image), the SVG image can coordinate with the embedding element (its context) to have the image adopt property values set on the embedding element. To do this the embedding element needs to list the properties that are to be made available to the image by listing them as values of the **`-moz-context-properties`** property, and the image needs to opt in to using those properties by using values such as the `context-fill` value. - * - * **Initial value**: `none` - */ - "-moz-context-properties"?: - | MozContextPropertiesProperty - | MozContextPropertiesProperty[]; - /** - * The non-standard **`-moz-float-edge`** CSS property specifies whether the height and width properties of the element include the margin, border, or padding thickness. - * - * **Initial value**: `content-box` - */ - "-moz-float-edge"?: MozFloatEdgeProperty | MozFloatEdgeProperty[]; - /** - * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts. - * - * **Initial value**: `normal` - */ - "-moz-font-feature-settings"?: - | FontFeatureSettingsProperty - | FontFeatureSettingsProperty[]; - /** - * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface. - * - * **Initial value**: `normal` - */ - "-moz-font-language-override"?: - | FontLanguageOverrideProperty - | FontLanguageOverrideProperty[]; - /** - * The **`-moz-force-broken-image-icon`** extended CSS property can be used to force the broken image icon to be shown even when a broken image has an `alt` attribute. - * - * **Initial value**: `0` - */ - "-moz-force-broken-image-icon"?: GlobalsNumber | GlobalsNumber[]; - /** - * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. You can prevent hyphenation entirely, use hyphenation in manually-specified points within the text, or let the browser automatically insert hyphens where appropriate. - * - * **Initial value**: `manual` - */ - "-moz-hyphens"?: HyphensProperty | HyphensProperty[]; - /** - * For certain XUL elements and pseudo-elements that use an image from the `list-style-image` property, this property specifies a region of the image that is used in place of the whole image. This allows elements to use different pieces of the same image to improve performance. - * - * **Initial value**: `auto` - */ - "-moz-image-region"?: MozImageRegionProperty | MozImageRegionProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - */ - "-moz-margin-end"?: - | MarginInlineEndProperty - | MarginInlineEndProperty[]; - /** - * 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`. - * - * **Initial value**: `0` - */ - "-moz-margin-start"?: - | MarginInlineStartProperty - | MarginInlineStartProperty[]; - /** - * The **`-moz-orient`** CSS property specifies the orientation of the element to which it's applied. - * - * **Initial value**: `inline` - */ - "-moz-orient"?: MozOrientProperty | MozOrientProperty[]; - /** - * In Mozilla applications, the **`-moz-outline-radius-bottomleft`** CSS property can be used to round the bottom-left corner of an element's `outline`. - * - * **Initial value**: `0` - */ - "-moz-outline-radius-bottomleft"?: - | MozOutlineRadiusBottomleftProperty - | MozOutlineRadiusBottomleftProperty[]; - /** - * In Mozilla applications, the **`-moz-outline-radius-bottomright`** CSS property can be used to round the bottom-right corner of an element's `outline`. - * - * **Initial value**: `0` - */ - "-moz-outline-radius-bottomright"?: - | MozOutlineRadiusBottomrightProperty - | MozOutlineRadiusBottomrightProperty[]; - /** - * In Mozilla applications, the **`-moz-outline-radius-topleft`** CSS property can be used to round the top-left corner of an element's `outline`. - * - * **Initial value**: `0` - */ - "-moz-outline-radius-topleft"?: - | MozOutlineRadiusTopleftProperty - | MozOutlineRadiusTopleftProperty[]; - /** - * In Mozilla applications, the **`-moz-outline-radius-topright`** CSS property can be used to round the top-right corner of an element's `outline`. - * - * **Initial value**: `0` - */ - "-moz-outline-radius-topright"?: - | MozOutlineRadiusToprightProperty - | MozOutlineRadiusToprightProperty[]; - /** - * 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. It corresponds to the `padding-top`, `padding-right`, `padding-bottom`, or `padding-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. - * - * **Initial value**: `0` - */ - "-moz-padding-end"?: - | PaddingInlineEndProperty - | PaddingInlineEndProperty[]; - /** - * 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. It corresponds to the `padding-top`, `padding-right`, `padding-bottom`, or `padding-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. - * - * **Initial value**: `0` - */ - "-moz-padding-start"?: - | PaddingInlineStartProperty - | PaddingInlineStartProperty[]; - /** - * 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. Each 3D element with z>0 becomes larger; each 3D-element with z<0 becomes smaller. The strength of the effect is determined by the value of this property. - * - * **Initial value**: `none` - */ - "-moz-perspective"?: - | PerspectiveProperty - | PerspectiveProperty[]; - /** - * 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. - * - * **Initial value**: `50% 50%` - */ - "-moz-perspective-origin"?: - | PerspectiveOriginProperty - | PerspectiveOriginProperty[]; - /** - * **`-moz-stack-sizing`** is an extended CSS property. Normally, a `stack` will change its size so that all of its child elements are completely visible. For example, moving a child of the stack far to the right will widen the stack so the child remains visible. - * - * **Initial value**: `stretch-to-fit` - */ - "-moz-stack-sizing"?: MozStackSizingProperty | MozStackSizingProperty[]; - /** - * The **`tab-size`** CSS property is used to customize the width of a tab (`U+0009`) character. - * - * **Initial value**: `8` - */ - "-moz-tab-size"?: TabSizeProperty | TabSizeProperty[]; - /** - * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property. - * - * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable). - */ - "-moz-text-size-adjust"?: TextSizeAdjustProperty | TextSizeAdjustProperty[]; - /** - * The **`transform-origin`** CSS property sets the origin for an element's transformations. - * - * **Initial value**: `50% 50% 0` - */ - "-moz-transform-origin"?: - | TransformOriginProperty - | TransformOriginProperty[]; - /** - * 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. - * - * **Initial value**: `flat` - */ - "-moz-transform-style"?: TransformStyleProperty | TransformStyleProperty[]; - /** - * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes. - * - * **Initial value**: `0s` - */ - "-moz-transition-delay"?: GlobalsString | GlobalsString[]; - /** - * 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. - * - * **Initial value**: `0s` - */ - "-moz-transition-duration"?: GlobalsString | GlobalsString[]; - /** - * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied. - * - * **Initial value**: all - */ - "-moz-transition-property"?: - | TransitionPropertyProperty - | TransitionPropertyProperty[]; - /** - * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect. - * - * **Initial value**: `ease` - */ - "-moz-transition-timing-function"?: - | TransitionTimingFunctionProperty - | TransitionTimingFunctionProperty[]; - /** - * The **`-moz-user-focus`** CSS property is used to indicate whether an element can have the focus. - * - * **Initial value**: `none` - */ - "-moz-user-focus"?: MozUserFocusProperty | MozUserFocusProperty[]; - /** - * The **`user-modify`** property has no effect in Firefox. It was originally planned to determine whether or not the content of an element can be edited by a user. - * - * **Initial value**: `read-only` - */ - "-moz-user-modify"?: MozUserModifyProperty | MozUserModifyProperty[]; - /** - * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. - * - * **Initial value**: `auto` - */ - "-moz-user-select"?: UserSelectProperty | UserSelectProperty[]; - /** - * The **`-moz-window-dragging`** CSS property specifies whether a window is draggable or not. It only works in Chrome code, and only on Mac OS X. - * - * **Initial value**: `drag` - */ - "-moz-window-dragging"?: - | MozWindowDraggingProperty - | MozWindowDraggingProperty[]; - /** - * The **`-ms-accelerator`** CSS property is a Microsoft extension that sets or retrieves a string indicating whether the object represents a keyboard shortcut. - * - * **Initial value**: `false` - */ - "-ms-accelerator"?: MsAcceleratorProperty | MsAcceleratorProperty[]; - /** - * The **`align-self`** CSS property aligns flex items of the current flex line overriding the `align-items` value. If any of the item's cross-axis margin is set to `auto`, then `align-self` is ignored. In Grid layout `align-self` aligns the item inside the grid area. - * - * **Initial value**: `auto` - */ - "-ms-align-self"?: AlignSelfProperty | AlignSelfProperty[]; - /** - * The **`-ms-block-progression`** CSS property is a Microsoft extension that specifies the block progression and layout orientation. - * - * **Initial value**: `tb` - */ - "-ms-block-progression"?: - | MsBlockProgressionProperty - | MsBlockProgressionProperty[]; - /** - * The **`-ms-content-zoom-chaining`** CSS property is a Microsoft extension specifying the zoom behavior that occurs when a user hits the zoom limit during page manipulation. - * - * **Initial value**: `none` - */ - "-ms-content-zoom-chaining"?: - | MsContentZoomChainingProperty - | MsContentZoomChainingProperty[]; - /** - * The **`-ms-content-zoom-limit-max`** CSS property is a Microsoft extension that specifies the selected elements' maximum zoom factor. - * - * **Initial value**: `400%` - */ - "-ms-content-zoom-limit-max"?: GlobalsString | GlobalsString[]; - /** - * The **`-ms-content-zoom-limit-min`** CSS property is a Microsoft extension that specifies the minimum zoom factor. - * - * **Initial value**: `100%` - */ - "-ms-content-zoom-limit-min"?: GlobalsString | GlobalsString[]; - /** - * The **`-ms-content-zoom-snap-points`** CSS property is a Microsoft extension that specifies where zoom snap-points are located. - * - * **Initial value**: `snapInterval(0%, 100%)` - */ - "-ms-content-zoom-snap-points"?: GlobalsString | GlobalsString[]; - /** - * The **`-ms-content-zoom-snap-type`** CSS property is a Microsoft extension that specifies how zooming is affected by defined snap-points. - * - * **Initial value**: `none` - */ - "-ms-content-zoom-snap-type"?: - | MsContentZoomSnapTypeProperty - | MsContentZoomSnapTypeProperty[]; - /** - * The **`-ms-content-zooming`** CSS property is a Microsoft extension that specifies whether zooming is enabled. - * - * **Initial value**: zoom for the top level element, none for all other elements - */ - "-ms-content-zooming"?: MsContentZoomingProperty | MsContentZoomingProperty[]; - /** - * The `-ms-filter` CSS property is a Microsoft extension that sets or retrieves the filter or collection of filters applied to an object. - * - * **Initial value**: "" (the empty string) - */ - "-ms-filter"?: GlobalsString | GlobalsString[]; - /** - * 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). - * - * **Initial value**: `row` - */ - "-ms-flex-direction"?: FlexDirectionProperty | FlexDirectionProperty[]; - /** - * The **`flex-grow`** CSS property sets how much of the available space in the flex container should be assigned to that item (the flex grow factor). If all sibling items have the same flex grow factor, then all items will receive the same share of available space, otherwise it is distributed according to the ratio defined by the different flex grow factors. - * - * **Initial value**: `0` - */ - "-ms-flex-positive"?: GlobalsNumber | GlobalsNumber[]; - /** - * The **`-ms-flow-from`** CSS property is a Microsoft extension that gets or sets a value identifying a region container in the document that accepts the content flow from the data source. - * - * **Initial value**: `none` - */ - "-ms-flow-from"?: MsFlowFromProperty | MsFlowFromProperty[]; - /** - * The **`-ms-flow-into`** CSS property is a Microsoft extension that gets or sets a value identifying an iframe container in the document that serves as the region's data source. - * - * **Initial value**: `none` - */ - "-ms-flow-into"?: MsFlowIntoProperty | MsFlowIntoProperty[]; - /** - * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track. - * - * **Initial value**: `auto` - */ - "-ms-grid-columns"?: - | GridAutoColumnsProperty - | GridAutoColumnsProperty[]; - /** - * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track. - * - * **Initial value**: `auto` - */ - "-ms-grid-rows"?: - | GridAutoRowsProperty - | GridAutoRowsProperty[]; - /** - * The **`-ms-high-contrast-adjust`** CSS property is a Microsoft extension that gets or sets a value indicating whether to override any CSS properties that would have been set in high contrast mode. - * - * **Initial value**: `auto` - */ - "-ms-high-contrast-adjust"?: - | MsHighContrastAdjustProperty - | MsHighContrastAdjustProperty[]; - /** - * The **`-ms-hyphenate-limit-chars`** CSS property is a Microsoft extension that specifies one to three values indicating the minimum number of characters in a hyphenated word. If the word does not meet the required minimum number of characters in the word, before the hyphen, or after the hyphen, then the word is not hyphenated. - * - * **Initial value**: `auto` - */ - "-ms-hyphenate-limit-chars"?: - | MsHyphenateLimitCharsProperty - | MsHyphenateLimitCharsProperty[]; - /** - * The **`-ms-hyphenate-limit-lines`** CSS property is a Microsoft extension specifying the maximum number of consecutive lines in an element that may be ended with a hyphenated word. - * - * **Initial value**: `no-limit` - */ - "-ms-hyphenate-limit-lines"?: - | MsHyphenateLimitLinesProperty - | MsHyphenateLimitLinesProperty[]; - /** - * The `**-ms-hyphenate-limit-zone**` CSS property is a Microsoft extension specifying the width of the hyphenation zone. - * - * **Initial value**: `0` - */ - "-ms-hyphenate-limit-zone"?: - | MsHyphenateLimitZoneProperty - | MsHyphenateLimitZoneProperty[]; - /** - * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. You can prevent hyphenation entirely, use hyphenation in manually-specified points within the text, or let the browser automatically insert hyphens where appropriate. - * - * **Initial value**: `manual` - */ - "-ms-hyphens"?: HyphensProperty | HyphensProperty[]; - /** - * The **`-ms-ime-align`** CSS property is a Microsoft extension aligning the Input Method Editor (IME) candidate window box relative to the element on which the IME composition is active. The extension is implemented in Microsoft Edge and Internet Explorer 11. - * - * **Initial value**: `auto` - */ - "-ms-ime-align"?: MsImeAlignProperty | MsImeAlignProperty[]; - /** - * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols. - * - * **Initial value**: `auto` - */ - "-ms-line-break"?: LineBreakProperty | LineBreakProperty[]; - /** - * 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. - * - * **Initial value**: `0` - */ - "-ms-order"?: GlobalsNumber | GlobalsNumber[]; - /** - * The **`-ms-overflow-style`** CSS property is a Microsoft extension controlling the behavior of scrollbars when the content of an element overflows. - * - * **Initial value**: `auto` - */ - "-ms-overflow-style"?: MsOverflowStyleProperty | MsOverflowStyleProperty[]; - /** - * 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. - * - * **Initial value**: `visible` - */ - "-ms-overflow-x"?: OverflowXProperty | OverflowXProperty[]; - /** - * 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. - * - * **Initial value**: `visible` - */ - "-ms-overflow-y"?: OverflowYProperty | OverflowYProperty[]; - /** - * The `**-ms-scroll-chaining**` CSS property is a Microsoft extension that specifies the scrolling behavior that occurs when a user hits the scroll limit during a manipulation. - * - * **Initial value**: `chained` - */ - "-ms-scroll-chaining"?: MsScrollChainingProperty | MsScrollChainingProperty[]; - /** - * The `**-ms-scroll-limit-x-max**` CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollLeft` property. - * - * **Initial value**: `auto` - */ - "-ms-scroll-limit-x-max"?: - | MsScrollLimitXMaxProperty - | MsScrollLimitXMaxProperty[]; - /** - * The **`-ms-scroll-limit-x-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollLeft` property. - * - * **Initial value**: `0` - */ - "-ms-scroll-limit-x-min"?: - | MsScrollLimitXMinProperty - | MsScrollLimitXMinProperty[]; - /** - * The **`-ms-scroll-limit-y-max`** CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollTop` property. - * - * **Initial value**: `auto` - */ - "-ms-scroll-limit-y-max"?: - | MsScrollLimitYMaxProperty - | MsScrollLimitYMaxProperty[]; - /** - * The **`-ms-scroll-limit-y-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollTop` property. - * - * **Initial value**: `0` - */ - "-ms-scroll-limit-y-min"?: - | MsScrollLimitYMinProperty - | MsScrollLimitYMinProperty[]; - /** - * The **`-ms-scroll-rails`** CSS property is a Microsoft extension that specifies whether scrolling locks to the primary axis of motion. - * - * **Initial value**: `railed` - */ - "-ms-scroll-rails"?: MsScrollRailsProperty | MsScrollRailsProperty[]; - /** - * The **`-ms-scroll-snap-points-x`** CSS property is a Microsoft extension that specifies where snap-points will be located along the x-axis. - * - * **Initial value**: `snapInterval(0px, 100%)` - */ - "-ms-scroll-snap-points-x"?: GlobalsString | GlobalsString[]; - /** - * The **`-ms-scroll-snap-points-y`** CSS property is a Microsoft extension that specifies where snap-points will be located along the y-axis. - * - * **Initial value**: `snapInterval(0px, 100%)` - */ - "-ms-scroll-snap-points-y"?: GlobalsString | GlobalsString[]; - /** - * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one. - * - * **Initial value**: `none` - */ - "-ms-scroll-snap-type"?: - | MsScrollSnapTypeProperty - | MsScrollSnapTypeProperty[]; - /** - * The **`-ms-scroll-translation`** CSS property is a Microsoft extension that specifies whether vertical-to-horizontal scroll wheel translation occurs on the specified element. - * - * **Initial value**: `none` - */ - "-ms-scroll-translation"?: - | MsScrollTranslationProperty - | MsScrollTranslationProperty[]; - /** - * The **`-ms-scrollbar-3dlight-color`** CSS property is a Microsoft extension specifying the color of the top and left edges of the scroll box and scroll arrows of a scroll bar. - * - * **Initial value**: depends on user agent - */ - "-ms-scrollbar-3dlight-color"?: - | MsScrollbar3dlightColorProperty - | MsScrollbar3dlightColorProperty[]; - /** - * The **`-ms-scrollbar-arrow-color`** CSS property is a Microsoft extension that specifies the color of the arrow elements of a scroll arrow. - * - * **Initial value**: `ButtonText` - */ - "-ms-scrollbar-arrow-color"?: - | MsScrollbarArrowColorProperty - | MsScrollbarArrowColorProperty[]; - /** - * The `**-ms-scrollbar-base-color**` CSS property is a Microsoft extension that specifies the base color of the main elements of a scroll bar. - * - * **Initial value**: depends on user agent - */ - "-ms-scrollbar-base-color"?: - | MsScrollbarBaseColorProperty - | MsScrollbarBaseColorProperty[]; - /** - * The **`-ms-scrollbar-darkshadow-color`** CSS property is a Microsoft extension that specifies the color of a scroll bar's gutter. - * - * **Initial value**: `ThreeDDarkShadow` - */ - "-ms-scrollbar-darkshadow-color"?: - | MsScrollbarDarkshadowColorProperty - | MsScrollbarDarkshadowColorProperty[]; - /** - * The `**-ms-scrollbar-face-color**` CSS property is a Microsoft extension that specifies the color of the scroll box and scroll arrows of a scroll bar. - * - * **Initial value**: `ThreeDFace` - */ - "-ms-scrollbar-face-color"?: - | MsScrollbarFaceColorProperty - | MsScrollbarFaceColorProperty[]; - /** - * The `**-ms-scrollbar-highlight-color**` CSS property is a Microsoft extension that specifies the color of the slider tray, the top and left edges of the scroll box, and the scroll arrows of a scroll bar. - * - * **Initial value**: `ThreeDHighlight` - */ - "-ms-scrollbar-highlight-color"?: - | MsScrollbarHighlightColorProperty - | MsScrollbarHighlightColorProperty[]; - /** - * The **`-ms-scrollbar-shadow-color`** CSS property is a Microsoft extension that specifies the color of the bottom and right edges of the scroll box and scroll arrows of a scroll bar. - * - * **Initial value**: `ThreeDDarkShadow` - */ - "-ms-scrollbar-shadow-color"?: - | MsScrollbarShadowColorProperty - | MsScrollbarShadowColorProperty[]; - /** - * The **`-ms-scrollbar-track-color`** CSS property is a Microsoft extension that specifies the color of the track element of a scrollbar. - * - * **Initial value**: `Scrollbar` - */ - "-ms-scrollbar-track-color"?: - | MsScrollbarTrackColorProperty - | MsScrollbarTrackColorProperty[]; - /** - * The **`-ms-text-autospace`** CSS property is a Microsoft extension that specifies the autospacing and narrow space width adjustment of text. - * - * **Initial value**: `none` - */ - "-ms-text-autospace"?: MsTextAutospaceProperty | MsTextAutospaceProperty[]; - /** - * 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. - * - * **Initial value**: `none` - */ - "-ms-text-combine-horizontal"?: - | TextCombineUprightProperty - | TextCombineUprightProperty[]; - /** - * 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. - * - * **Initial value**: `clip` - */ - "-ms-text-overflow"?: TextOverflowProperty | TextOverflowProperty[]; - /** - * The **`touch-action`** CSS property sets how a region can be manipulated by a touchscreen user (for example, by zooming features built into the browser). - * - * **Initial value**: `auto` - */ - "-ms-touch-action"?: TouchActionProperty | TouchActionProperty[]; - /** - * The **`-ms-touch-select`** CSS property is a Microsoft extension that toggles the gripper visual elements that enable touch text selection. - * - * **Initial value**: `grippers` - */ - "-ms-touch-select"?: MsTouchSelectProperty | MsTouchSelectProperty[]; - /** - * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model. - * - * **Initial value**: `none` - */ - "-ms-transform"?: TransformProperty | TransformProperty[]; - /** - * The **`transform-origin`** CSS property sets the origin for an element's transformations. - * - * **Initial value**: `50% 50% 0` - */ - "-ms-transform-origin"?: - | TransformOriginProperty - | TransformOriginProperty[]; - /** - * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes. - * - * **Initial value**: `0s` - */ - "-ms-transition-delay"?: GlobalsString | GlobalsString[]; - /** - * 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. - * - * **Initial value**: `0s` - */ - "-ms-transition-duration"?: GlobalsString | GlobalsString[]; - /** - * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied. - * - * **Initial value**: all - */ - "-ms-transition-property"?: - | TransitionPropertyProperty - | TransitionPropertyProperty[]; - /** - * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect. - * - * **Initial value**: `ease` - */ - "-ms-transition-timing-function"?: - | TransitionTimingFunctionProperty - | TransitionTimingFunctionProperty[]; - /** - * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. - * - * **Initial value**: `text` - */ - "-ms-user-select"?: MsUserSelectProperty | MsUserSelectProperty[]; - /** - * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box. - * - * **Initial value**: `normal` - */ - "-ms-word-break"?: WordBreakProperty | WordBreakProperty[]; - /** - * The **`-ms-wrap-flow`** CSS property is a Microsoft extension that specifies how exclusions impact inline content within block-level elements. - * - * **Initial value**: `auto` - */ - "-ms-wrap-flow"?: MsWrapFlowProperty | MsWrapFlowProperty[]; - /** - * The **`-ms-wrap-margin`** CSS property is a Microsoft extension that specifies a margin that offsets the inner wrap shape from other shapes. - * - * **Initial value**: `0` - */ - "-ms-wrap-margin"?: - | MsWrapMarginProperty - | MsWrapMarginProperty[]; - /** - * The **`-ms-wrap-through`** CSS property is a Microsoft extension that specifies how content should wrap around an exclusion element. - * - * **Initial value**: `wrap` - */ - "-ms-wrap-through"?: MsWrapThroughProperty | MsWrapThroughProperty[]; - /** - * 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. - * - * **Initial value**: `horizontal-tb` - */ - "-ms-writing-mode"?: WritingModeProperty | WritingModeProperty[]; - /** - * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `` or `