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