import { StringHack, Globals } from "./index"; /** * The **`block-size`** CSS property defines the horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `width` or the `height` property, depending on the value of `writing-mode`. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **57** | **41** | No | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/block-size */ export type BlockSizeProperty = Globals | TLength | "auto" | "available" | "fit-content" | "max-content" | "min-content" | StringHack;