Style columnRuleWidth property
- Forrige side columnRuleStyle
- Næste side columns
- Tilbage til forrige niveau HTML DOM Style Object
Definition and usage
columnRuleWidth
Property specifies the width of the rule between columns.
See also:
CSS3 Tutorial:CSS flere kolonner
CSS Reference Manual:column-rule-width property
Example
Change the width of the rule between columns:
document.getElementById("myDIV").style.columnRuleWidth = "10px";
Syntax
Return columnRuleWidth property:
object.style.columnRuleWidth
Set columnRuleWidth property:
object.style.columnRuleWidth = "medium|thin|thick|length|initial|inherit"
Attribute value
Value | Description |
---|---|
medium | Default value. Defines a medium rule. |
thin | Defines the thin rule. |
thick | Defines the thickness of the rule. |
length | Specifies the width of the rule. |
initial | Sets this property to its default value. See initial. |
inherit | Inherits this property from its parent element. See inherit. |
Technical details
Default value: | medium |
---|---|
Return value: | string, representing the element's column-rule-width property. |
CSS version: | CSS3 |
browser support
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
50.0 | 10.0 | 52.0 | 10.0 | 37.0 |
- Forrige side columnRuleStyle
- Næste side columns
- Tilbage til forrige niveau HTML DOM Style Object