import { StringHack, Globals } from "./index"; /** * 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** | No | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end */ export type MarginBlockEndProperty = Globals | TLength | "auto" | StringHack;