aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/direction/index.html
blob: 1d5e67154fc398bb1a36e76c7f72255156d56b8e (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
---
title: direction
slug: Web/CSS/direction
translation_of: Web/CSS/direction
---
<div><span class="seoSummary">CSS属性 <strong><code>direction</code></strong> 用来设置文本、表列水平溢出的方向。</span>  <code>rtl</code> 表示从右到左 (类似希伯来语或阿拉伯语), <code>ltr</code> 表示从左到右 (类似英语等大部分语言).</div>

<div> </div>

<div>{{EmbedInteractiveExample("pages/css/direction.html")}}</div>



<p>值得注意的是文本方向通常由文档定义 (e.g., with <a href="/en-US/docs/Web/HTML/Global_attributes/dir">HTML's <code>dir</code> attribute</a>)而不是通过直接使用 <code>direction</code> 属性定义。</p>

<p>该属性设置可以设置块级元素文本的基本方向,也可以设置由通过 {{Cssxref("unicode-bidi")}}属性创建的嵌入元素的方向。与此同时,它还可以设置文本、块级元素的默认对齐方式 ,以及表行中的单元格的流动方向。</p>

<p>与 HTML 中的 <code>dir</code> 属性不同,<code>direction</code>属性不会从表列继承到表单元格, 因为 CSS 继承遵从文档流, 而表单元格位于行内部, 但不在列内部。</p>

<p><code>direction</code> 属性和 {{cssxref("unicode-bidi")}} 属性不受 {{cssxref("all")}} 属性影响。</p>

<h2 id="语法">语法</h2>

<pre class="brush:css no-line-numbers">/* Keyword values */
direction: ltr;
direction: rtl;

/* Global values */
direction: inherit;
direction: initial;
direction: unset;
</pre>

<h3 id="取值">取值</h3>

<dl>
 <dt><code>ltr</code></dt>
 <dd>默认属性。可设置文本和其他元素的默认方向是从左到右。</dd>
 <dt><code>rtl</code></dt>
 <dd>可设置文本和其他元素的默认方向是从右到左。</dd>
</dl>

<h3 id="标准语法">标准语法</h3>

{{csssyntax}}

<h2 id="示例">示例</h2>

<pre class="brush: css">blockquote {
  direction: rtl;
}
</pre>

<h2 id="Specification" name="Specification">规范</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', '#direction', 'direction')}}</td>
   <td>{{Spec2('CSS3 Writing Modes')}}</td>
   <td>No change.</td>
  </tr>
  <tr>
   <td>{{SpecName('CSS2.1', 'visuren.html#direction', 'direction')}}</td>
   <td>{{Spec2('CSS2.1')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<p>{{cssinfo}}</p>

<h2 id="Browser_compatibility" name="Browser_compatibility">浏览器兼容性</h2>

<div>


<p>{{Compat("css.properties.direction")}}</p>
</div>

<h2 id="参见">参见</h2>

<ul>
 <li>{{Cssxref("unicode-bidi")}}</li>
 <li>{{Cssxref("writing-mode")}}</li>
</ul>