diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-11-07 01:32:20 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-11-17 08:54:09 +0900 |
commit | 1230f83b7b538b7ab6fcbe0e6a8381a54b96edff (patch) | |
tree | ac7ec9e5edde0108be0c95260e2eb0abba384baf /files/ja/web/css/right/index.html | |
parent | ba0b8bed72d6898a4631cefed88655527ef108b7 (diff) | |
download | translated-content-1230f83b7b538b7ab6fcbe0e6a8381a54b96edff.tar.gz translated-content-1230f83b7b538b7ab6fcbe0e6a8381a54b96edff.tar.bz2 translated-content-1230f83b7b538b7ab6fcbe0e6a8381a54b96edff.zip |
CSS Positioned Layout のプロパティを変換準備
Diffstat (limited to 'files/ja/web/css/right/index.html')
-rw-r--r-- | files/ja/web/css/right/index.html | 141 |
1 files changed, 0 insertions, 141 deletions
diff --git a/files/ja/web/css/right/index.html b/files/ja/web/css/right/index.html deleted file mode 100644 index 91156b300d..0000000000 --- a/files/ja/web/css/right/index.html +++ /dev/null @@ -1,141 +0,0 @@ ---- -title: right -slug: Web/CSS/right -tags: - - CSS - - CSS プロパティ - - CSS 位置指定レイアウト - - Reference - - ウェブ -translation_of: Web/CSS/right ---- -<div>{{CSSRef}}</div> - -<p><a href="/ja/docs/Web/CSS" title="CSS">CSS</a> の <strong><code>right</code></strong> プロパティは、<ruby>位置指定要素<rp> (</rp><rt>positioned elements</rt><rp>) </rp></ruby>の水平位置の決定に関与します。位置指定されていない要素には効果はありません。</p> - -<div>{{EmbedInteractiveExample("pages/css/right.html")}}</div> - -<p class="hidden">この対話型サンプルのソースファイルは GitHub リポジトリに格納されています。対話型サンプルプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</p> - -<p><code>right</code> の効果は、要素がどの様に配置されているか (つまり、 {{cssxref("position")}} プロパティの値) によって変わります。</p> - -<ul> - <li><code>position</code> が <code>absolute</code> 又は <code>fixed</code> に設定されている場合、 <code>right</code> プロパティは要素の右辺と包含ブロックの右辺との間の距離を指定します。</li> - <li><code>position</code> が <code>relative</code> に設定されている場合、 <code>right</code> プロパティは要素の右辺が通常位置から左方向へ移動する量を指定します。</li> - <li><code>position</code> が <code>sticky</code> に設定されている場合、 <code>right</code> プロパティは要素がビューポート内にある場合は <code>position</code> が <code>relative</code> であるかのように、外の場合は <code>position</code> が <code>fixed</code> の場合と同様に動作します。</li> - <li><code>position</code> が <code>static</code> に設定されている場合、 <code>right</code> プロパティは<em>効果がありません</em>。</li> -</ul> - -<p>{{cssxref("left")}} と <code>right</code> の両方が定義された場合、要素の位置は<em>過剰指定</em>になります。内包ブロックが左書きの場合 (つまり、 <code>right</code> の計算値が <code>-left</code> に設定されていた場合)、 <code>left</code> の値が優先されます。内包ブロックが右書きの場合 (つまり、 <code>left</code> の計算値が <code>-right</code> に設定されていた場合)、 <code>right</code> の値が優先されます。</p> - -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre class="brush:css no-line-numbers">/* <length> 値 */ -right: 3px; -right: 2.4em; - -/* 内包ブロックの幅に対する <percentage> */ -right: 10%; - -/* キーワード値 */ -right: auto; - -/* グローバル値 */ -right: inherit; -right: initial; -right: unset; -</pre> - -<h3 id="Values" name="Values">値</h3> - -<dl> - <dt>{{cssxref("<length>")}}</dt> - <dd>負、null、または正の {{cssxref("<length>")}} で、以下のものを表します。 - <ul> - <li><em>絶対位置指定要素</em>の場合は、包含ブロックの右辺までの距離。</li> - <li><em>相対位置指定要素</em>の場合は、通常の位置からの左方向への移動量。</li> - </ul> - </dd> - <dt>{{cssxref("<percentage>")}}</dt> - <dd>包含ブロックの幅に対する {{cssxref("<percentage>")}} です。</dd> - <dt><code>auto</code></dt> - <dd>以下のように指定します。 - <ul> - <li><em>絶対位置指定要素</em>では、要素の位置は {{Cssxref("left")}} プロパティに基づいて決まり、 <code>width: auto</code> は内容物の幅に基づいて決まります。また、 <code>left</code> も <code>auto</code> であった場合は、要素は水平方向には静的要素が配置される場合と同様に配置されます。</li> - <li><em>相対位置指定要素</em>では、通常の位置から要素までの距離は {{Cssxref("left")}} に基づきます。また、 <code>left</code> も <code>auto</code> であった場合は、水平方向には移動しません。</li> - </ul> - </dd> - <dt><code>inherit</code></dt> - <dd>値が親要素 (包含ブロックとは限りません) の計算値と同じであることを示すキーワードです。そして、この計算値は {{cssxref("<length>")}}, {{cssxref("<percentage>")}}, 又は <code>auto</code> キーワードと同様に扱われます。</dd> -</dl> - -<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> - -{{csssyntax}} - -<h2 id="Examples" name="Examples">例</h2> - -<pre class="brush: css; highlight:[16]">#example_3 { - width: 100px; - height: 100px; - background-color: #FFC7E4; - position: relative; - top: 20px; - left: 20px; -} - -#example_4 { - width: 100px; - height: 100px; - background-color: #FFD7C2; - position: absolute; - bottom: 10px; - right: 20px; -}</pre> - -<pre class="brush: html"><div id="example_3">Example 3</div> -<div id="example_4">Example 4</div> -</pre> - -<p>{{ EmbedLiveSample('Examples', 500, 220) }}</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 Transitions', '#animatable-css', 'right')}}</td> - <td>{{Spec2('CSS3 Transitions')}}</td> - <td><code>right</code> をアニメーション可能として定義</td> - </tr> - <tr> - <td>{{SpecName('CSS3 Positioning', '#propdef-right', 'right')}}</td> - <td>{{Spec2('CSS3 Positioning')}}</td> - <td>sticky の位置の動作を追加</td> - </tr> - <tr> - <td>{{SpecName('CSS2.1', 'visuren.html#propdef-right', 'right')}}</td> - <td>{{Spec2('CSS2.1')}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<p>{{cssinfo}}</p> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> - -<p>{{Compat("css.properties.right")}}</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li>{{cssxref("position")}}, {{cssxref("left")}}, {{cssxref("top")}}, {{cssxref("bottom")}}</li> -</ul> |