blob: 33f8d38a723748db6cb333c59fc1f7ff8256289f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
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"><div class="example">
<p>I will be to the left of my sibling.</p>
<p>I will be to the right of my sibling.</p>
</div></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>
|