diff options
Diffstat (limited to 'files/ja/web/css/ruby-position/index.md')
-rw-r--r-- | files/ja/web/css/ruby-position/index.md | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/files/ja/web/css/ruby-position/index.md b/files/ja/web/css/ruby-position/index.md new file mode 100644 index 0000000000..6cb66cd58d --- /dev/null +++ b/files/ja/web/css/ruby-position/index.md @@ -0,0 +1,115 @@ +--- +title: ruby-position +slug: Web/CSS/ruby-position +tags: + - CSS + - CSS プロパティ + - CSS ルビ + - リファレンス +translation_of: Web/CSS/ruby-position +--- +<div>{{CSSRef}}{{SeeCompatTable}}</div> + +<p>CSS の <code><strong>ruby-position</strong></code> プロパティは、ベース要素に対するルビ要素の位置を定義します。要素の上方 (<code>over</code>)、下方 (<code>under</code>)、文字の間の右側 (<code>inter-character</code>) に配置できます。</p> + +<pre class="brush:css">/* キーワード値 */ +ruby-position: over; +ruby-position: under; +ruby-position: inter-character; + +/* グローバル値 */ +ruby-position: inherit; +ruby-position: initial; +ruby-position: unset; +</pre> + +<p>{{cssinfo}}</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<h3 id="Values" name="Values">値</h3> + +<dl> + <dt><code>over</code></dt> + <dd><img alt="over の例" src="https://mdn.mozillademos.org/files/10251/Screen%20Shot%202015-03-04%20at%2013.02.20.png" style="height: 31px; width: 77px;">ルビをメインテキストの上 (横書きの場合) または右 (縦書きの場合) に配置することを示すキーワードです。</dd> + <dt><code>under</code></dt> + <dd><img alt="under の例" src="https://mdn.mozillademos.org/files/10249/Screen%20Shot%202015-03-04%20at%2013.02.07.png" style="height: 34px; width: 78px;">ルビをメインテキストの下 (横書きの場合) または左 (縦書きの場合) に配置することを示すキーワードです。</dd> + <dt><code>inter-character</code></dt> + <dd>ルビをそれぞれの文字の間に配置することを示すキーワードです。</dd> +</dl> + +<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> + +{{csssyntax}} + +<h2 id="Examples" name="Examples">例</h2> + +<p>この HTML は、 <code>ruby-position</code> のそれぞれの値でレンダリングします。</p> + +<pre class="brush: html"><ruby> + <rb>超電磁砲</rb> + <rp>(</rp><rt>レールガン</rt><rp>)</rp> +</ruby> +</pre> + +<h3 id="Ruby_positioned_over_the_text" name="Ruby_positioned_over_the_text">テキストの上に配置したルビ</h3> + +<pre class="brush: html" style="display: none;"><ruby> + <rb>超電磁砲</rb> + <rp>(</rp><rt>レールガン</rt><rp>)</rp> +</ruby> +</pre> + +<pre class="brush: css">ruby { + ruby-position:over; +}</pre> + +<p>結果は以下のとおりです。</p> + +<p>{{EmbedLiveSample("Ruby_positioned_over_the_text", 100, 40)}}</p> + +<h3 id="Ruby_positioned_under_the_text" name="Ruby_positioned_under_the_text">テキストの下に配置したルビ</h3> + +<pre class="brush: html" style="display: none;"><ruby> + <rb>超電磁砲</rb> + <rp>(</rp><rt>レールガン</rt><rp>)</rp> +</ruby> +</pre> + +<pre class="brush: css">ruby { + ruby-position:under; +}</pre> + +<p>結果は以下のとおりです。</p> + +<p>{{EmbedLiveSample("Ruby_positioned_under_the_text", 100, 40)}}</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 Ruby', '#rubypos', 'ruby-position')}}</td> + <td>{{Spec2('CSS3 Ruby')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> + +<p>{{Compat("css.properties.ruby-position")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>HTML のルビ関連要素: {{HTMLElement("ruby")}}, {{HTMLElement("rt")}}, {{HTMLElement("rp")}}, {{HTMLElement("rtc")}}</li> + <li>CSS のルビ関連プロパティ: {{cssxref("ruby-align")}}, {{cssxref("ruby-merge")}}</li> +</ul> |