aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/svg/attribute/writing-mode/index.html
blob: 7529d1ef822187b68c562b3d48d06c2bcc202bc2 (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
---
title: writing-mode
slug: Web/SVG/Attribute/writing-mode
tags:
  - NeedsExample
  - SVG
  - SVG Attribute
translation_of: Web/SVG/Attribute/writing-mode
---
<div>{{SVGRef}}</div>

<p><strong><code>writing-mode</code></strong> 属性は、 {{SVGElement("text")}} 要素の最初のインライン進行方向が左から右、右から左、上から下のいずれであるかを指定します。 <code>writing-mode</code> 属性は {{ SVGElement("text") }} 要素にのみ適用されます。 {{ SVGElement("tspan") }}, {{ SVGElement("tref") }}, {{ SVGElement("altGlyph") }}, {{ SVGElement("textPath") }} サブ要素には無視されます。 (なお、インライン進行方向は、 Unicode 双方向アルゴリズムとプロパティ {{ SVGAttr("direction") }} および {{ SVGAttr("unicode-bidi") }} により、 {{ SVGElement("text") }} 要素内で変更される可能性があることに注意してください)。</p>

<p class="note"><strong>注:</strong> プレゼンテーション属性なので、 <code>writing-mode</code> は CSS プロパティとして使用することができます。詳しくは CSS の {{cssxref("writing-mode")}} プロパティを参照してください。</p>

<p>プレゼンテーション属性として、どの要素にも適用できますが、 {{SVGElement("altGlyph")}}, {{SVGElement("text")}}, {{SVGElement("textPath")}}, {{SVGElement("tref")}}, {{SVGElement("tspan")}} の5つの要素にのみ効果があります。</p>

<h2 id="Usage_notes" name="Usage_notes">使用上の注意</h2>

<table class="properties">
 <tbody>
  <tr>
   <th scope="row">既定値</th>
   <td><code>horizontal-tb</code></td>
  </tr>
  <tr>
   <th scope="row"></th>
   <td><code>horizontal-tb</code> | <code>vertical-rl</code> | <code>vertical-lr</code></td>
  </tr>
  <tr>
   <th scope="row">アニメーション可能</th>
   <td>はい</td>
  </tr>
 </tbody>
</table>

<dl>
 <dt><code>horizontal-tb</code></dt>
 <dd>この値はブロックのフロー方向を上から下に定義します。書字方向と文字の方向は共に水平方向です。</dd>
 <dt><code>vertical-rl</code></dt>
 <dd>この値はブロックのフロー方向を右から左に定義します。書字方向と文字の方向は共に垂直方向です。</dd>
 <dt><code>vertical-lr</code></dt>
 <dd>この値はブロックのフロー方向を左から右に定義します。書字方向と文字の方向は共に垂直方向です。</dd>
</dl>

<h2 id="Specifications" name="Specifications">仕様書</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">状態</th>
   <th scope="col">備考</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName("CSS3 Writing Modes", "#block-flow", "writing-mode")}}</td>
   <td>{{Spec2("CSS3 Writing Modes")}}</td>
   <td>CSS Writing Modes 3 の中で定義</td>
  </tr>
  <tr>
   <td>{{SpecName("SVG2", "text.html#WritingModeProperty", "writing-mode")}}</td>
   <td>{{Spec2("SVG2")}}</td>
   <td>主に CSS Writing Modes 3 の定義を参照し、非推奨の SVG 1.1 の値と新しい値との対応付けを定義します。</td>
  </tr>
  <tr>
   <td>{{SpecName("SVG1.1", "text.html#WritingModeProperty", "writing-mode")}}</td>
   <td>{{Spec2("SVG1.1")}}</td>
   <td>初回定義</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<p>{{Compat("svg.attributes.presentation.writing-mode")}}</p>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li>{{cssxref("writing-mode", "CSS writing-mode")}}</li>
</ul>