aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/left/index.html
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-07 01:32:20 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-17 08:54:09 +0900
commit1230f83b7b538b7ab6fcbe0e6a8381a54b96edff (patch)
treeac7ec9e5edde0108be0c95260e2eb0abba384baf /files/ja/web/css/left/index.html
parentba0b8bed72d6898a4631cefed88655527ef108b7 (diff)
downloadtranslated-content-1230f83b7b538b7ab6fcbe0e6a8381a54b96edff.tar.gz
translated-content-1230f83b7b538b7ab6fcbe0e6a8381a54b96edff.tar.bz2
translated-content-1230f83b7b538b7ab6fcbe0e6a8381a54b96edff.zip
CSS Positioned Layout のプロパティを変換準備
Diffstat (limited to 'files/ja/web/css/left/index.html')
-rw-r--r--files/ja/web/css/left/index.html226
1 files changed, 0 insertions, 226 deletions
diff --git a/files/ja/web/css/left/index.html b/files/ja/web/css/left/index.html
deleted file mode 100644
index d0a7275f65..0000000000
--- a/files/ja/web/css/left/index.html
+++ /dev/null
@@ -1,226 +0,0 @@
----
-title: left
-slug: Web/CSS/left
-tags:
- - CSS
- - CSS Property
- - CSS プロパティ
- - CSS 位置指定レイアウト
- - Reference
-translation_of: Web/CSS/left
----
-<div>{{CSSRef}}</div>
-
-<p><strong><code>left</code></strong> は <a href="/ja/docs/Web/CSS" title="CSS">CSS</a> のプロパティで、<ruby><a href="/ja/docs/Web/CSS/position">位置指定要素</a><rp> (</rp><rt>positioned element</rt><rp>) </rp></ruby>の水平位置の決定に関与します。位置指定されていない要素には効果はありません。</p>
-
-<div>{{EmbedInteractiveExample("pages/css/left.html")}}</div>
-
-<div class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</div>
-
-<p><code>left</code> の効果は、要素がどの様に配置されているか (つまり、 {{cssxref("position")}} プロパティの値) によって変わります。</p>
-
-<ul>
- <li><code>position</code> が <code>absolute</code> 又は <code>fixed</code> に設定されている場合、 <code>left</code> プロパティは要素の左辺と包含ブロックの左辺との間の距離を指定します。 (包含ブロックは相対配置された祖先の要素です。)</li>
- <li><code>position</code> が <code>relative</code> に設定されている場合、 <code>left</code> プロパティは要素の左辺が通常位置から右方向へ移動する量を指定します。</li>
- <li><code>position</code> が <code>sticky</code> に設定されている場合、 <code>left</code> プロパティは sticky 制約の矩形を計算するために使用されます。</li>
- <li><code>position</code> が <code>static</code> に設定されている場合、 <code>left</code> プロパティは<em>効果がありません</em>。</li>
-</ul>
-
-<p><code>left</code> と {{cssxref("right")}} の両方が定義されていて、幅の制約がない場合、要素は両方を満たすように伸縮されます。要素が両方を満たすように伸縮できない場合、要素の位置は<em>過剰指定</em>になります。このような場合、包含ブロックが左書きの場合は <code>left</code> の値が優先され、包含ブロックが右書きの場合は <code>right</code> の値が優先されます。</p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="brush:css no-line-numbers notranslate">/* &lt;length&gt; 値 */
-left: 3px;
-left: 2.4em;
-
-/* 内包ブロックの幅に対する &lt;percentage&gt; */
-left: 10%;
-
-/* キーワード値 */
-left: auto;
-
-/* グローバル値 */
-left: inherit;
-left: initial;
-left: unset;
-</pre>
-
-<h3 id="Values" name="Values">値</h3>
-
-<dl>
- <dt>{{cssxref("&lt;length&gt;")}}</dt>
- <dd>負、null、または正の {{cssxref("&lt;length&gt;")}} で、以下のものを表します。
- <ul>
- <li><em>絶対位置指定要素</em>の場合は、包含ブロックの左辺までの距離。</li>
- <li><em>相対位置指定要素</em>の場合は、通常の位置からの右方向への移動量。</li>
- </ul>
- </dd>
- <dt>{{cssxref("&lt;percentage&gt;")}}</dt>
- <dd>包含ブロックの幅に対する {{cssxref("&lt;percentage&gt;")}} です。</dd>
- <dt><code>auto</code></dt>
- <dd>以下のように指定します。
- <ul>
- <li><em>絶対位置指定要素</em>では、要素の位置は {{Cssxref("right")}} プロパティに基づいて決まり、 <code>width: auto</code> は内容物の幅に基づいて決まります。また、 <code>right</code> も <code>auto</code> であった場合は、要素は水平方向には静的要素が配置される場合と同様に配置されます。</li>
- <li><em>相対位置指定要素</em>では、通常の位置から要素までの距離は {{Cssxref("right")}} に基づきます。また、 <code>right</code> も <code>auto</code> であった場合は、水平方向には移動しません。</li>
- </ul>
- </dd>
- <dt><code>inherit</code></dt>
- <dd>値が親要素 (包含ブロックとは限りません) の計算値と同じであることを示すキーワードです。そして、この計算値は {{cssxref("&lt;length&gt;")}}, {{cssxref("&lt;percentage&gt;")}}, 又は <code>auto</code> キーワードと同様に扱われます。</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 notranslate">#wrap {
- width: 700px;
- margin: 0 auto;
- background: #5C5C5C;
-}
-
-pre {
- white-space: pre;
- white-space: pre-wrap;
- white-space: pre-line;
- word-wrap: break-word;
-}
-
-#example_1 {
- width: 200px;
- height: 200px;
- position: absolute;
- left: 20px;
- top: 20px;
- background-color: #D8F5FF;
-}
-
-#example_2 {
- width: 200px;
- height: 200px;
- position: relative;
- top: 0;
- right: 0;
- background-color: #C1FFDB;
-
-}
-#example_3 {
- width: 600px;
- height: 400px;
- position: relative;
- top: 20px;
- left: 20px;
- background-color: #FFD7C2;
-}
-
-#example_4 {
- width:200px;
- height:200px;
- position:absolute;
- bottom:10px;
- right:20px;
- background-color:#FFC7E4;
-}
-#example_5 {
- position: absolute;
- right: 0;
- left: 0;
- top: 100px;
- background-color: #D7FFC2;
-}</pre>
-
-<h3 id="HTML">HTML</h3>
-
-<pre class="brush: html notranslate">&lt;div id="wrap"&gt;
- &lt;div id="example_1"&gt;
- &lt;pre&gt;
- position: absolute;
- left: 20px;
- top: 20px;
- &lt;/pre&gt;
- &lt;p&gt;The only containing element for this div is the main window, so it positions itself in relation to it.&lt;/p&gt;
- &lt;/div&gt;
-
- &lt;div id="example_2"&gt;
- &lt;pre&gt;
- position: relative;
- top: 0;
- right: 0;
- &lt;/pre&gt;
- &lt;p&gt;Relative position in relation to its siblings.&lt;/p&gt;
- &lt;/div&gt;
-
- &lt;div id="example_3"&gt;
- &lt;pre&gt;
- float: right;
- position: relative;
- top: 20px;
- left: 20px;
- &lt;/pre&gt;
- &lt;p&gt;Relative to its sibling div above, but removed from flow of content.&lt;/p&gt;
-
- &lt;div id="example_4"&gt;
- &lt;pre&gt;
- position: absolute;
- bottom: 10px;
- right: 20px;
- &lt;/pre&gt;
- &lt;p&gt;Absolute position inside of a parent with relative position&lt;/p&gt;
- &lt;/div&gt;
-
- &lt;div id="example_5"&gt;
- &lt;pre&gt;
- position: absolute;
- right: 0;
- left: 0;
- top: 200px;
- &lt;/pre&gt;
- &lt;p&gt;Absolute position with both left and right declared&lt;/p&gt; &lt;/div&gt;
- &lt;/div&gt;
-&lt;/div&gt;</pre>
-
-<h3 id="Live_sample" name="Live_sample">実行例</h3>
-
-<p>{{EmbedLiveSample('Examples',1200,650)}}</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 Positioning', '#propdef-left', 'left')}}</td>
- <td>{{Spec2('CSS3 Positioning')}}</td>
- <td>sticky の位置の動作を追加</td>
- </tr>
- <tr>
- <td>{{SpecName('CSS2.1', 'visuren.html#propdef-left', 'left')}}</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.left")}}</p>
-
-<h2 id="See_also" name="See_also">関連情報</h2>
-
-<ul>
- <li>{{cssxref("top")}}, {{cssxref("right")}}, {{cssxref("bottom")}}</li>
- <li>対応する論理的プロパティ: {{cssxref("inset-block-start")}}, {{cssxref("inset-block-end")}}, {{cssxref("inset-inline-start")}}, {{cssxref("inset-inline-end")}} および一括指定の {{cssxref("inset-block")}} と {{cssxref("inset-inline")}}</li>
- <li>{{cssxref("position")}}</li>
-</ul>