import { Globals } from "./index"; /** * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns. * * **Initial value**: `balance` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :------: | :----: | :----: | :-: | * | Yes | **52** | n/a | **12** | n/a | * | | 13 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/column-fill */ export type ColumnFillProperty = Globals | "auto" | "balance" | "balance-all";