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