import { StringHack, Globals } from "./index"; /** * The **`columns`** CSS property sets the column width and column count of an element. * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :---------: | :----: | :----: | * | **50** | **52** | **3** _-x-_ | **12** | **10** | * | | 9 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/columns */ export type ColumnsProperty = Globals | TLength | "auto" | StringHack | number;