--- title: column-rule-style slug: Web/CSS/column-rule-style tags: - мультиколоночная вёрстка translation_of: Web/CSS/column-rule-style ---
CSS свойство column-rule-style
устанавливает стиль линии, расположенной между колонками при мультиколоночной вёрстке.
/* <'border-style'> значения */ column-rule-style: none; column-rule-style: hidden; column-rule-style: dotted; column-rule-style: dashed; column-rule-style: solid; column-rule-style: double; column-rule-style: groove; column-rule-style: ridge; column-rule-style: inset; column-rule-style: outset; /* глобальные значения */ column-rule-style: inherit; column-rule-style: initial; column-rule-style: unset;
Свойство column-rule-style
указывается как одиночное <'border-style'>
значение.
<'border-style'>
<p>This is a bunch of text split into three columns. The `column-rule-style` property is used to change the style of the line that is drawn between columns. Don't you think that's wonderful?</p>
p { column-count: 3; column-rule-style: dashed; }
{{ EmbedLiveSample('Пример') }}
Specification | Status | Comment |
---|---|---|
{{ SpecName('CSS3 Multicol', '#crs', 'column-rule-style') }} | {{ Spec2('CSS3 Multicol') }} | Первое определение |
{{cssinfo}}
{{Compat("css.properties.column-rule-style")}}