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