aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/unicode-bidi/index.html
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-12-31 10:52:02 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-01-07 10:13:24 +0900
commit15794207e9497086ce2f74dc801d0935c3fc12b1 (patch)
tree3fc1a182634b00807ed34fb40b16ccf15b20bb4e /files/ja/web/css/unicode-bidi/index.html
parent0aff12b61cf881773f78b2e489cf163637ca8cd4 (diff)
downloadtranslated-content-15794207e9497086ce2f74dc801d0935c3fc12b1.tar.gz
translated-content-15794207e9497086ce2f74dc801d0935c3fc12b1.tar.bz2
translated-content-15794207e9497086ce2f74dc801d0935c3fc12b1.zip
CSS Writing Modes のプロパティを変換準備
Diffstat (limited to 'files/ja/web/css/unicode-bidi/index.html')
-rw-r--r--files/ja/web/css/unicode-bidi/index.html115
1 files changed, 0 insertions, 115 deletions
diff --git a/files/ja/web/css/unicode-bidi/index.html b/files/ja/web/css/unicode-bidi/index.html
deleted file mode 100644
index 1883e219b1..0000000000
--- a/files/ja/web/css/unicode-bidi/index.html
+++ /dev/null
@@ -1,115 +0,0 @@
----
-title: unicode-bidi
-slug: Web/CSS/unicode-bidi
-tags:
- - BiDi
- - CSS
- - CSS プロパティ
- - CSS 書字方向
- - Reference
- - リファレンス
-translation_of: Web/CSS/unicode-bidi
----
-<div>{{CSSRef}}</div>
-
-<p><strong><code>unicode-bidi</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、 {{Cssxref("direction")}} プロパティと共に、文書内の双方向テキストの扱いを指定します。例えば、テキストブロックに左から右 (LTR) 方向と右から左 (RTL) 方向へ記述されるテキストの両方が含まれる場合、ユーザエージェントは、複雑な Unicode アルゴリズムを用いてテキストの表示方法を決定します。 <code>unicode-bidi</code> プロパティは、このアルゴリズムを上書きして開発者がテキストの埋め込みを制御できるようにします。</p>
-
-<p><code>unicode-bidi</code> と {{cssxref("direction")}} プロパティだけは、 {{cssxref("all")}} 一括指定プロパティによる影響を受けません。</p>
-
-<p class="warning"><strong>メモ:</strong> このプロパティは文書型定義 (DTD) デザイナー向けです。ウェブデザイナー等の作者は、このアルゴリズムを<strong>上書きすべきではありません</strong>。</p>
-
-<pre class="brush:css">/* キーワード値 */
-unicode-bidi: normal;
-unicode-bidi: embed;
-unicode-bidi: isolate;
-unicode-bidi: bidi-override;
-unicode-bidi: isolate-override;
-unicode-bidi: plaintext;
-/* グローバル値 */
-unicode-bidi: inherit;
-unicode-bidi: initial;
-unicode-bidi: unset;</pre>
-
-<p>{{cssinfo}}</p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<h3 id="Values" name="Values">値</h3>
-
-<dl>
- <dt><code>normal</code></dt>
- <dd>要素は、双方向アルゴリズムを尊重し、追加の埋め込みのレベルを提供しません。インライン要素に対しては、要素の境界に渡って、並べ替え作業を省略します。</dd>
- <dt><code>embed</code></dt>
- <dd>要素がインラインの場合、この値は双方向アルゴリズムを尊重し、追加の埋め込みのレベルを開きます。この埋め込みレベルの方向は、{{Cssxref("direction")}} プロパティにより与えられます。</dd>
- <dt><code>bidi-override</code></dt>
- <dd>インライン要素に対しては、この値で上書きされます。ブロックコンテナ要素に対しては、この値でインラインレベルの子孫を上書きし、別のブロックコンテナ要素は上書きしません。これは、要素内部に作用することを意味し、並べ替えは {{Cssxref("direction")}} による順序に従います。双方向アルゴリズムの省略された部分は無視されます。</dd>
- <dt><code>isolate</code></dt>
- <dd>このキーワードは、要素のコンテナの記述方向が、要素の内容を考慮せずに計算されることを示します。要素はその兄弟から <em>隔離</em> (isolated) されます。双方向解決アルゴリズムが適用される時、そのコンテナ要素は、対象の要素を 1 個またはいくつかの <code>U+FFFC Object Replacement Character</code> として処理します。つまり、画像要素のように扱います。</dd>
- <dt><code>isolate-override</code></dt>
- <dd>このキーワードは、周囲のコンテンツに <code>isolate</code> キーワードの隔離処理を適用し、内部のコンテンツに <code>bidi-override</code> キーワードの上書き処理を適用します。</dd>
- <dt><code>plaintext</code></dt>
- <dd>このキーワードは、要素の記述方向を、その親要素の双方向状態や {{cssxref("direction")}} プロパティの値を考慮せずに計算します。記述方向は、Unicode Bidirectional Algorithm の P2 および P3 規則を用いて計算されます。<br>
- この値により、Unicode Bidirectional Algorithm に従うツールを用いてすでに整形されたデータを表示できます。</dd>
-</dl>
-
-<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3>
-
-{{csssyntax}}
-
-<h2 id="Examples" name="Examples">例</h2>
-
-<h3 id="CSS">CSS</h3>
-
-<pre class="brush: css">.bible-quote {
- direction: rtl;
- unicode-bidi: embed;
-}
-</pre>
-
-<h3 id="HTML">HTML</h3>
-
-<pre class="brush: html">&lt;div class="bible-quote"&gt;
- A line of text
-&lt;/div&gt;
-&lt;div&gt;
- Another line of text
-&lt;/div&gt;
-</pre>
-
-<h3 id="Result" name="Result">結果</h3>
-
-<p>{{EmbedLiveSample('Examples')}}</p>
-
-<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', '#unicode-bidi', 'unicode-bidi')}}</td>
- <td>{{Spec2('CSS3 Writing Modes')}}</td>
- <td><code>plaintext</code> および <code>isolate</code>、<code>isolate-override</code> キーワードを追加</td>
- </tr>
- <tr>
- <td>{{SpecName('CSS2.1', 'visuren.html#propdef-unicode-bidi', 'unicode-bidi')}}</td>
- <td>{{Spec2('CSS2.1')}}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat("css.properties.unicode-bidi")}}</p>
-
-<h2 id="See_also" name="See_also">関連情報</h2>
-
-<ul>
- <li>{{Cssxref("direction")}}</li>
-</ul>