blob: 34decf78f36933d1aa196467e14fdc5ae99218b2 (
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
100
101
102
103
104
105
106
107
108
|
---
title: text-orientation
slug: Web/CSS/text-orientation
tags:
- CSS
- 书写方式
- 书写模式
- 文字方向
translation_of: Web/CSS/text-orientation
---
<div>{{CSSRef}}</div>
<p><span class="seoSummary"><strong><code>text-orientation</code></strong> <a href="/en-US/docs/Web/CSS">CSS</a> 属性设定行中字符的方向。但它仅影响纵向模式(当 {{cssxref("writing-mode")}} 的值不是<code>horizontal-tb</code>)下的文本。此属性在控制使用竖排文字的语言的显示上很有作用,也可以用来构建垂直的表格头。</span></p>
<div>{{EmbedInteractiveExample("pages/css/text-orientation.html")}}</div>
<h2 id="语法">语法</h2>
<pre class="brush:css no-line-numbers notranslate">/* Keyword values */
text-orientation: mixed;
text-orientation: upright;
text-orientation: sideways-right;
text-orientation: sideways;
text-orientation: use-glyph-orientation;
/* Global values */
text-orientation: inherit;
text-orientation: initial;
text-orientation: unset;
</pre>
<p><code>text-orientation</code> 应当被设置为上述关键字之一。</p>
<h3 id="值">值</h3>
<dl>
<dt><code>mixed</code></dt>
<dd>默认值。顺时针旋转水平书写的字符90°,将垂直书写的文字自然布局。</dd>
<dt><code>upright</code></dt>
<dd>将水平书写的字符自然布局(直排),包括垂直书写的文字(as well as the glyphs for vertical scripts)。注意这个关键字会导致所有字符被视为从左到右,也就是 {{cssxref("direction")}} 被强制设为 <code>ltr</code>。</dd>
<dt><code>sideways</code></dt>
<dd>所有字符被布局为与水平方式一样,但是整行文本被顺时针旋转90°。</dd>
<dt><code>sideways-right</code></dt>
<dd>处于兼容目的,<code>sideways</code> 的别名。</dd>
<dt><code>use-glyph-orientation</code></dt>
<dd>对于SVG元素,这个关键字导致使用已弃用的SVG属性。 <code>glyph-orientation-vertical</code> 和 <code>glyph-orientation-horizontal</code>。</dd>
</dl>
<h2 id="形式化定义">形式化定义</h2>
<p>{{CSSInfo}}</p>
<h2 id="形式化语法">形式化语法</h2>
<pre class="syntaxbox notranslate">{{csssyntax}}</pre>
<h2 id="例子">例子</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html notranslate"><p>Lorem ipsum dolet semper quisquam.</p></pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css notranslate">p {
writing-mode: vertical-rl;
text-orientation: upright;
}</pre>
<h3 id="结果">结果</h3>
<p>{{EmbedLiveSample('例子')}}</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 Writing Modes', '#text-orientation', 'text-orientation')}}</td>
<td>{{Spec2('CSS3 Writing Modes')}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("css.properties.text-orientation")}}</p>
<h2 id="参见">参见</h2>
<ul>
<li>The other vertical-script related CSS properties: {{cssxref("writing-mode")}}, {{cssxref("text-combine-upright")}}, and {{cssxref("unicode-bidi")}}.</li>
<li><a href="/docs/Web/CSS/CSS_Logical_Properties">CSS Logical properties</a></li>
<li><a href="https://www.w3.org/International/articles/vertical-text/">Styling vertical text (Chinese, Japanese, Korean and Mongolian)</a></li>
<li>Extensive browsers support test results: <a href="https://w3c.github.io/i18n-tests/results/horizontal-in-vertical.html#text_orientation">https://w3c.github.io/i18n-tests/results/horizontal-in-vertical.html#text_orientation</a></li>
</ul>
|