HTML & CSS Wiki

READ MORE

HTML & CSS Wiki

The CSS column-rule-style property sets the style of the rule drawn between columns in multi-column layouts. Currently no browsers support this property (maybe Firefox 4.0 and IE9), but some browsers have their own vendor extensions (see below).

Values[]

Value Description
<border-style> See the values of the border-style property.
none If present, forces the computed value of column-rule-width to be 0.


CSS example:

body {
      column-count:2;
      column-rule-style:thin solid red;
}

See Also[]

External Links[]