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