From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/ru/web/css/column-rule-style/index.html | 95 +++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 files/ru/web/css/column-rule-style/index.html (limited to 'files/ru/web/css/column-rule-style') diff --git a/files/ru/web/css/column-rule-style/index.html b/files/ru/web/css/column-rule-style/index.html new file mode 100644 index 0000000000..926175caa1 --- /dev/null +++ b/files/ru/web/css/column-rule-style/index.html @@ -0,0 +1,95 @@ +--- +title: column-rule-style +slug: Web/CSS/column-rule-style +tags: + - мультиколоночная верстка +translation_of: Web/CSS/column-rule-style +--- +
{{ CSSRef}}
+ +

CSS свойство column-rule-style устанавливает стиль линии, расположенной между колонками при мультиколоночной верстке.

+ +
{{EmbedInteractiveExample("pages/css/column-rule-style.html")}}
+ + + +

Синтаксис

+ +
/* <'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'>
+
Ключевое слово, определяющее  {{ cssxref("border-style") }}, описывающий стиль для линии, разделяющей столбцы. Стилизация должна быть интерпретирована как разрушающая границы модель.
+
+ +

Формальный синтаксис

+ +
{{csssyntax}}
+
+ +

Пример

+ +

HTML

+ +
<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>
+ +

CSS

+ +
p {
+  column-count: 3;
+  column-rule-style: dashed;
+}
+ +

Результат

+ +

{{ EmbedLiveSample('Example') }}

+ +

Спецификации

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{ SpecName('CSS3 Multicol', '#crs', 'column-rule-style') }}{{ Spec2('CSS3 Multicol') }}Первое определение
+ +

{{cssinfo}}

+ +

Поддержка браузерами

+ + + +

{{Compat("css.properties.column-rule-style")}}

-- cgit v1.2.3-54-g00ecf