Stub
This article is a stub. Please help the wiki by coding it. Spamming and vandalism is not considered an improvement and will result in discipline, up to, and including a permanent block.
The CSS -moz-column-rule Mozilla extension property is a shorthand property for setting the values of the -moz-column-rule-width, -moz-column-rule-style, and -moz-column-rule-color properties. Safari supports the -webkit-column-rule property.
Values[]
Omitted values are set to their initial values.
| Value | Description |
|---|---|
<column-rule-width> |
Optional. See the values of the -moz-column-rule-width property.
|
<column-rule-style> |
Required. If absent, it will be rendered as if none. See -moz-column-rule-style for values.
|
<column-rule-color> |
Optional. If absent, the color of the color property will be used. See -moz-column-rule-color for values. transparent is valid.
|
CSS example:
body {
-moz-column-count:2;
-moz-column-rule:thick dashed red;
}
