aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/order/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/css/order/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/web/css/order/index.html')
-rw-r--r--files/zh-cn/web/css/order/index.html164
1 files changed, 164 insertions, 0 deletions
diff --git a/files/zh-cn/web/css/order/index.html b/files/zh-cn/web/css/order/index.html
new file mode 100644
index 0000000000..44f597ff11
--- /dev/null
+++ b/files/zh-cn/web/css/order/index.html
@@ -0,0 +1,164 @@
+---
+title: order
+slug: Web/CSS/order
+translation_of: Web/CSS/order
+---
+<div>{{ CSSRef("CSS Flexible Boxes") }}</div>
+
+<h2 id="Summary" name="Summary">概述</h2>
+
+<p><a href="/zh-CN/docs/CSS" title="CSS">CSS</a> <strong><code>order</code></strong> 属性规定了弹性容器中的可伸缩项目在布局时的顺序。元素按照 <code>order</code> 属性的值的增序进行布局。拥有相同 <code>order</code> 属性值的元素按照它们在源代码中出现的顺序进行布局。</p>
+
+<div class="note">
+<p><strong>注意</strong>: <code>order</code> 仅仅对元素的视觉顺序 (<strong>visual order</strong>) 产生作用,并不会影响元素的逻辑或 tab 顺序。 <code><strong>order</strong></code> 不可以用于非视觉媒体,例如 speech。</p>
+</div>
+
+<p>{{cssinfo}}</p>
+
+<p>参考 <a href="/zh-CN/docs/Web/CSS/CSS_Flexible_Box_Layout/Using_CSS_flexible_boxes" title="使用 CSS 弹性盒子">使用 CSS 弹性盒子</a> 获取更多信息。</p>
+
+<h2 id="Syntax" name="Syntax">语法</h2>
+
+<pre class="brush:css">/* Numerical value including negative numbers */
+order: 5;
+order: -5;
+
+/* Global values */
+order: inherit;
+order: initial;
+order: unset;
+</pre>
+
+<h3 id="Values" name="Values">取值</h3>
+
+<dl>
+ <dt><code>&lt;integer&gt;</code></dt>
+ <dd>表示此可伸缩项目所在的次序组。</dd>
+</dl>
+
+<h3 id="Formal_syntax">Formal syntax</h3>
+
+<pre class="syntaxbox">{{csssyntax}}
+</pre>
+
+<h2 id="Examples" name="Examples">例子</h2>
+
+<p>这里是一个基本的HTML代码片段:</p>
+
+<pre class="brush:html;">&lt;!DOCTYPE html&gt;
+&lt;header&gt;…&lt;/header&gt;
+&lt;div id='main'&gt;
+ &lt;article&gt;…&lt;/article&gt;
+ &lt;nav&gt;…&lt;/nav&gt;
+ &lt;aside&gt;…&lt;/aside&gt;
+&lt;/div&gt;
+&lt;footer&gt;…&lt;/footer&gt;</pre>
+
+<p>下面的CSS代码会创建一个经典的双 sidebar 围绕一个中央内容块的布局。 Flexible Box 布局模块会自动地创建三个具有相同高度的内容块,也会使用所有可用的水平空间。</p>
+
+<pre class="brush:css;">#main { display: flex; }
+#main &gt; article { flex:1; order: 2; }
+#main &gt; nav { width: 200px; order: 1; }
+#main &gt; aside { width: 200px; order: 3; }</pre>
+
+<h2 id="Specifications" name="Specifications">规范</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 Flexbox', '#order-property', 'order') }}</td>
+ <td>{{ Spec2('CSS3 Flexbox') }}</td>
+ <td> </td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">浏览器兼容性</h2>
+
+<p>{{ CompatibilityTable }}</p>
+
+<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</th>
+ </tr>
+ <tr>
+ <td>Basic support</td>
+ <td>{{ CompatChrome(21.0) }}{{ property_prefix("-webkit") }}<br>
+ 29</td>
+ <td>
+ <p>{{ CompatGeckoDesktop("18.0") }} (behind a pref) [1][3]<br>
+ {{CompatGeckoDesktop("20.0")}}<br>
+ 28</p>
+ </td>
+ <td>
+ <p>10.0, but under the non-standard <code>-ms-flex-order</code> name {{ property_prefix("-ms") }}  [2]<br>
+ 11</p>
+ </td>
+ <td>12.10</td>
+ <td>
+ <p>7 {{ property_prefix("-webkit") }}<br>
+ 9</p>
+ </td>
+ </tr>
+ </tbody>
+</table>
+</div>
+
+<div id="compat-mobile">
+<table class="compat-table">
+ <tbody>
+ <tr>
+ <th>Feature</th>
+ <th>Android</th>
+ <th>Chrome for Android</th>
+ <th>Firefox Mobile (Gecko)</th>
+ <th>IE Mobile</th>
+ <th>Opera Mobile</th>
+ <th>Safari Mobile</th>
+ </tr>
+ <tr>
+ <td>Basic support</td>
+ <td>{{ CompatUnknown }}</td>
+ <td>{{ CompatUnknown }}</td>
+ <td>{{ CompatGeckoMobile("18.0") }} (behind a pref) [1]<br>
+ {{CompatGeckoMobile("20.0")}}</td>
+ <td>{{ CompatUnknown }}</td>
+ <td>12.10</td>
+ <td>
+ <p><span style="font-size: 12px; line-height: 18px;">7 {{ property_prefix("-webkit") }}</span><br>
+ <span style="font-size: 12px; line-height: 18px;">9</span></p>
+
+ <p> </p>
+ </td>
+ </tr>
+ </tbody>
+</table>
+</div>
+
+<p>[1] 在 Firefox 18 和 19 中使用弹性布局,需要将 about:config 中 <code>layout.css.flexbox.enabled</code> 设置为 <code>true</code>。从 Firefox 28 起开始完整支持。</p>
+
+<p>Firefox 中不正确地更改元素的 Tab 顺序. 查看 {{bug("812687")}}。</p>
+
+<p>[2] In addition to the unprefixed support, Gecko 48.0 {{geckoRelease("48.0")}} added support for a <code>-webkit</code> prefixed version of the property for web compatibility reasons behind the preference <code>layout.css.prefixes.webkit</code>, defaulting to <code>false</code>. Since Gecko 49.0 {{geckoRelease("49.0")}} the preference defaults to <code>true</code>.</p>
+
+<p>[3] 在 Internet Explorer 10 中,使用 <code>display: -ms-flexbox</code> 来声明弹性盒子。<code>-ms-flex-order</code> 属性是非标准实现。</p>
+
+<h2 id="See_also" name="See_also">参考</h2>
+
+<ul>
+ <li><a href="/zh-CN/docs/Web/CSS/CSS_Flexible_Box_Layout/Using_CSS_flexible_boxes" title="使用 CSS 弹性盒子">使用 CSS 弹性盒子</a></li>
+</ul>