diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/css/column-rule | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/web/css/column-rule')
-rw-r--r-- | files/zh-cn/web/css/column-rule/index.html | 125 |
1 files changed, 125 insertions, 0 deletions
diff --git a/files/zh-cn/web/css/column-rule/index.html b/files/zh-cn/web/css/column-rule/index.html new file mode 100644 index 0000000000..be4a2b55d9 --- /dev/null +++ b/files/zh-cn/web/css/column-rule/index.html @@ -0,0 +1,125 @@ +--- +title: column-rule +slug: Web/CSS/column-rule +tags: + - CSS + - CSS 多列布局 + - CSS 属性 +translation_of: Web/CSS/column-rule +--- +<div>{{CSSRef("CSS Multi-columns")}}</div> + +<div>{{EmbedInteractiveExample("pages/css/column-rule.html")}}</div> + +<h2 id="概述">概述</h2> + +<p>在多列布局中,<code>column-rule</code> 属性规定了列与列之间的直线,也称“规则”。该简写可以避免单独设置各个 <code>column-rule-*</code> 属性:{{Cssxref("column-rule-width")}},{{Cssxref("column-rule-style")}} 和 {{Cssxref("column-rule-color")}}。</p> + +<p>{{cssinfo}}</p> + +<h2 id="语法">语法</h2> + +<pre class="twopartsyntaxbox notranslate"><a href="/en-US/docs/CSS/Value_definition_syntax" title="CSS/Value_definition_syntax">Formal syntax</a>: {{csssyntax("column-rule")}} +</pre> + +<pre class="notranslate">column-rule: dotted; +column-rule: solid blue; +column-rule: solid 8px; +column-rule: thick inset blue; +</pre> + +<h3 id="取值">取值</h3> + +<p><code>column-rule</code> 属性可以按任何顺序指定为下面列出的一个,两个或三个值。</p> + +<dl> + <dt><code><'column-rule-width'></code> </dt> + <dd>定义为 {{cssxref("<length>")}} 或是 <code>thin</code>,<code>medium</code>,<code>thick</code> 关键字的其中一个。请参阅 {{cssxref("border-width")}} 。</dd> + <dt><code><'column-rule-style'></code></dt> + <dd>请参阅 {{cssxref("border-style")}}。</dd> + <dt><code><'column-rule-color'></code></dt> + <dd>一个 {{cssxref("<color>")}} 值。</dd> +</dl> + +<h2 id="示例">示例</h2> + +<pre class="notranslate">p.foo { column-rule: dotted; } /* 与 "medium dotted currentColor" 相同 */ +p.bar { column-rule: solid blue; } /* 与 "medium solid blue" 相同 */ +p.baz { column-rule: solid 8px; } /* 与 "8px solid currentColor" 相同 */ +p.abc { column-rule: thick inset blue; } +</pre> + +<h3 id="运行实例">运行实例</h3> + +<div style=""> +<p>padding:0.3em; background:gold; border:groove 2px gold; <strong>column-rule: inset 2px gold;</strong> <strong>column-width:17em;</strong></p> +</div> + +<h2 id="规范">规范</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">规范</th> + <th scope="col">状态</th> + <th scope="col">说明</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('CSS3 Multicol', '#column-rule', 'column-rule')}}</td> + <td>{{Spec2('CSS3 Multicol')}}</td> + <td></td> + </tr> + </tbody> +</table> + +<h2 id="浏览器兼容性">浏览器兼容性</h2> + +<div>{{CompatibilityTable}}</div> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari (WebKit)</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{CompatVersionUnknown}}{{property_prefix('-webkit')}}</td> + <td>3.5 (1.9.1){{property_prefix('-moz')}}</td> + <td>10</td> + <td>11.1</td> + <td>3.0 (522){{property_prefix('-webkit')}}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Phone</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + </tr> + </tbody> +</table> +</div> |