import { StringHack, Globals } from "./index"; /** * 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** | **3** _(-webkit-margin-start)_ | No | No | * | 2 _(-webkit-margin-start)_ | 3 _(-moz-margin-start)_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start */ export type MarginInlineStartProperty = Globals | TLength | "auto" | StringHack;