HTML & CSS Wiki

READ MORE

HTML & CSS Wiki
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 -webkit-column-rule Apple extension property is a shorthand property for setting the values of the -webkit-column-rule-width, -webkit-column-rule-style, and -webkit-column-rule-color properties. Firefox supports the -moz-column-rule property.

Values[]

Omitted values are set to their initial values.

Value Description
<column-rule-width> Optional. See the values of the -webkit-column-rule-width property.
<column-rule-style> Required. If absent, it will be rendered as if none. See -webkit-column-rule-style for values.
<column-rule-color> Optional. If absent, the color of the color property will be used. See -webkit-column-rule-color for values. transparent is valid.


CSS example:

body {
      -webkit-column-count:2;
      -webkit-column-rule:thick dashed red;
}