import { StringHack, Globals } from "./index"; /** * The **`padding-block-start`** CSS property defines the logical block 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` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **69** | **41** | No | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-start */ export type PaddingBlockStartProperty = Globals | TLength | StringHack;