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