column-rule - CSS 3
The column-rule property is a shorthand property for setting all the column-rule-* properties.The column-rule property sets the width, style, and color of the rule between columns.
Syntax
column-rule: column-rule-width column-rule-style column-rule-color|initial|inherit;
Example
div
{
-webkit-column-rule: 4px outset #ff00ff; /* Chrome,
Safari, Opera */ -moz-column-rule: 4px outset #ff00ff;
/* Firefox */ column-rule: 4px outset #ff00ff;
}
Output / Return Value
Limitations
Alternatives / See Also
Reference