aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/box-orient
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/box-orient
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/box-orient')
-rw-r--r--files/zh-cn/web/css/box-orient/index.html99
1 files changed, 99 insertions, 0 deletions
diff --git a/files/zh-cn/web/css/box-orient/index.html b/files/zh-cn/web/css/box-orient/index.html
new file mode 100644
index 0000000000..33f8d38a72
--- /dev/null
+++ b/files/zh-cn/web/css/box-orient/index.html
@@ -0,0 +1,99 @@
+---
+title: box-orient
+slug: Web/CSS/box-orient
+translation_of: Web/CSS/box-orient
+---
+<div>{{CSSRef}}{{Non-standard_header}}
+<p class="blockIndicator warning">这是原始的css弹性布局草案的一个属性,已经被最新的标准替代。 查看 <a href="/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Using_CSS_flexible_boxes">flexbox</a> 了解现行标准。</p>
+</div>
+
+<p><strong><code>box-orient</code></strong> <a href="/en-US/docs/Web/CSS">CSS </a>属性用来设置一个元素是水平还是垂直布局其内容。</p>
+
+<pre class="brush:css notranslate">/* Keyword values */
+box-orient: horizontal;
+box-orient: vertical;
+box-orient: inline-axis;
+box-orient: block-axis;
+
+/* Global values */
+box-orient: inherit;
+box-orient: initial;
+box-orient: unset;
+</pre>
+
+<h2 id="Syntax" name="Syntax">语法</h2>
+
+<p><code>box-orient</code> 属性值需指定为以下关键字之一。</p>
+
+<h3 id="Values" name="Values">值</h3>
+
+<dl>
+ <dt><code>horizontal</code></dt>
+ <dd>盒子水平布局其内容。</dd>
+ <dt><code>vertical</code></dt>
+ <dd>盒子垂直布局其内容。</dd>
+ <dt><code>inline-axis</code> (HTML)</dt>
+ <dd>盒子沿内联轴展示其子元素。</dd>
+ <dt><code>block-axis</code> (HTML)</dt>
+ <dd>盒子沿块轴展示其子元素。</dd>
+</dl>
+
+<p>内联轴和块轴取决于写入模式的关键字,在英语中,分别对应水平和垂直方向。</p>
+
+<h2 id="规范">规范</h2>
+
+<p>{{CSSInfo}}</p>
+
+<h2 id="正式语法">正式语法</h2>
+
+<pre class="syntaxbox notranslate">{{CSSSyntax}}</pre>
+
+<h2 id="Examples" name="Examples">示例</h2>
+
+<h3 id="设置盒子水平布局">设置盒子水平布局</h3>
+
+<p>在这里,box-orient 属性会将两个 {{HTMLElement("p")}} 段落布局到同一行。</p>
+
+<h4 id="HTML">HTML</h4>
+
+<pre class="brush: html notranslate">&lt;div class="example"&gt;
+ &lt;p&gt;I will be to the left of my sibling.&lt;/p&gt;
+ &lt;p&gt;I will be to the right of my sibling.&lt;/p&gt;
+&lt;/div&gt;</pre>
+
+<h4 id="CSS">CSS</h4>
+
+<pre class="brush: css notranslate">div.example {
+ display: -moz-box; /* Mozilla */
+ display: -webkit-box; /* WebKit */
+ display: box; /* As specified */
+
+ /* Children should be oriented vertically */
+ -moz-box-orient: horizontal; /* Mozilla */
+ -webkit-box-orient: horizontal; /* WebKit */
+ box-orient: horizontal; /* As specified */
+}
+</pre>
+
+<h4 id="结果">结果</h4>
+
+<p>{{ EmbedLiveSample('Examples', 600, 50, '', 'Web/CSS/box-orient') }}</p>
+
+<h2 id="Specifications" name="Specifications">规范</h2>
+
+<p>不是任何标准的一部分。</p>
+
+<h2 id="浏览器兼容性">浏览器兼容性</h2>
+
+
+
+<p>{{Compat("css.properties.box-orient")}}</p>
+
+<h2 id="See_Also" name="See_Also">参见</h2>
+
+<ul>
+ <li>{{CSSxRef("box-direction")}}</li>
+ <li>{{CSSxRef("box-pack")}}</li>
+ <li>{{CSSxRef("box-align")}}</li>
+ <li>{{CSSxRef("flex-direction")}}</li>
+</ul>