import { Globals } from "./index"; /** * The **`column-count`** CSS property breaks an element's content into the specified number of columns. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-------: | :---------: | :----: | :----: | * | **50** | **52** | **3** _-x-_ | **12** | **10** | * | | 1.5 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/column-count */ export type ColumnCountProperty = Globals | "auto" | number;