import { StringHack, Globals } from "./index"; /** * The **`column-width`** CSS property specifies the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-------: | :---------: | :----: | :----: | * | **50** | **50** | **3** _-x-_ | **12** | **10** | * | | 1.5 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/column-width */ export type ColumnWidthProperty = Globals | TLength | "auto";