diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/svg/attribute/writing-mode/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/svg/attribute/writing-mode/index.html')
-rw-r--r-- | files/ja/web/svg/attribute/writing-mode/index.html | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/files/ja/web/svg/attribute/writing-mode/index.html b/files/ja/web/svg/attribute/writing-mode/index.html new file mode 100644 index 0000000000..e62465900f --- /dev/null +++ b/files/ja/web/svg/attribute/writing-mode/index.html @@ -0,0 +1,85 @@ +--- +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> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<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> |