import { StringHack, Globals, LineWidth, LineStyle, Color } from "./index"; /** * The **`column-rule`** CSS property sets the width, style, and color of the rule (line) drawn between columns in a multi-column layout. * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-------: | :---------: | :----------: | :----: | * | **50** | **52** | **3** _-x-_ | **12** _-x-_ | **10** | * | | 3.5 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/column-rule */ export type ColumnRuleProperty = Globals | LineWidth | LineStyle | Color | StringHack;