import { StringHack, Globals } from "./index"; /** * The **`min-height`** CSS property sets the minimum height of an element. It prevents the used value of the `height` property from becoming smaller than the value specified for `min-height`. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **3** | **1** | **12** | **7** | * * @see https://developer.mozilla.org/docs/Web/CSS/min-height */ export type MinHeightProperty = Globals | TLength | "auto" | "fill-available" | "fit-content" | "max-content" | "min-content" | StringHack;