diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
commit | 074785cea106179cb3305637055ab0a009ca74f2 (patch) | |
tree | e6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/ru/web/css/column-rule-style | |
parent | da78a9e329e272dedb2400b79a3bdeebff387d47 (diff) | |
download | translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2 translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip |
initial commit
Diffstat (limited to 'files/ru/web/css/column-rule-style')
-rw-r--r-- | files/ru/web/css/column-rule-style/index.html | 95 |
1 files changed, 95 insertions, 0 deletions
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 +--- +<div>{{ CSSRef}}</div> + +<p><a href="/en-US/docs/Web/CSS">CSS</a> свойство <strong><code>column-rule-style</code></strong> устанавливает стиль линии, расположенной между колонками при мультиколоночной верстке.</p> + +<div>{{EmbedInteractiveExample("pages/css/column-rule-style.html")}}</div> + + + +<h2 id="Syntax" name="Syntax">Синтаксис</h2> + +<pre class="brush:css no-line-numbers">/* <'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; +</pre> + +<p>Свойство <code>column-rule-style</code> указывается как одиночное <code><'border-style'></code> значение.</p> + +<h3 id="Values" name="Values">Значения</h3> + +<dl> + <dt><code><'border-style'></code></dt> + <dd>Ключевое слово, определяющее {{ cssxref("border-style") }}, описывающий стиль для линии, разделяющей столбцы. Стилизация должна быть интерпретирована как разрушающая границы модель.</dd> +</dl> + +<h3 id="Формальный_синтаксис">Формальный синтаксис</h3> + +<pre class="syntaxbox">{{csssyntax}} +</pre> + +<h2 id="Пример">Пример</h2> + +<h3 id="HTML">HTML</h3> + +<pre class="brush: 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></pre> + +<h3 id="CSS">CSS</h3> + +<pre class="brush: css">p { + column-count: 3; + column-rule-style: dashed; +}</pre> + +<h3 id="Результат">Результат</h3> + +<p>{{ EmbedLiveSample('Example') }}</p> + +<h2 id="Спецификации">Спецификации</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{ SpecName('CSS3 Multicol', '#crs', 'column-rule-style') }}</td> + <td>{{ Spec2('CSS3 Multicol') }}</td> + <td>Первое определение</td> + </tr> + </tbody> +</table> + +<p>{{cssinfo}}</p> + +<h2 id="Поддержка_браузерами">Поддержка браузерами</h2> + + + +<p>{{Compat("css.properties.column-rule-style")}}</p> |