import { Globals } from "./index"; /** * The **`column-span`** CSS property makes it possible for an element to span across all columns when its value is set to `all`. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **50** | n/a | Yes | **12** | **10** | * * @see https://developer.mozilla.org/docs/Web/CSS/column-span */ export type ColumnSpanProperty = Globals | "all" | "none";