diff options
Diffstat (limited to 'files/ja/web/css/margin-left/index.md')
-rw-r--r-- | files/ja/web/css/margin-left/index.md | 270 |
1 files changed, 133 insertions, 137 deletions
diff --git a/files/ja/web/css/margin-left/index.md b/files/ja/web/css/margin-left/index.md index 029fd44321..85513a95da 100644 --- a/files/ja/web/css/margin-left/index.md +++ b/files/ja/web/css/margin-left/index.md @@ -3,27 +3,27 @@ title: margin-left slug: Web/CSS/margin-left tags: - CSS - - CSS Property + - CSS プロパティ - Layout - - Reference - - 'recipe:css-property' + - リファレンス + - recipe:css-property +browser-compat: css.properties.margin-left translation_of: Web/CSS/margin-left --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p><strong><code>margin-left</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、要素の左側の<a href="/ja/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model">マージン領域</a>を設定します。正の数を指定すると、隣との間が遠くなるように配置され、負の数を指定すると、近くなるように配置します。</p> +**`margin-left`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素の左側の[マージン領域](/ja/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model#マージン領域)を設定します。正の数を指定すると、隣との間が遠くなるように配置され、負の数を指定すると、近くなるように配置します。 -<div>{{EmbedInteractiveExample("pages/css/margin-left.html")}}</div> +{{EmbedInteractiveExample("pages/css/margin-left.html")}} -<div class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</div> +二つの隣り合うボックスの垂直マージンは融合することがあります。これは[_マージンの相殺_](/ja/docs/Web/CSS/CSS_Box_Model/Mastering_margin_collapsing)と呼ばれています。 -<p>二つの隣り合うボックスの垂直マージンは融合することがあります。これは<a href="/ja/docs/CSS/margin_collapsing"><em>マージンの相殺</em></a>と呼ばれています。</p> +まれに幅の制約がきつすぎると (つまり、 `width`, `margin-left`, `border`, `padding`, コンテンツ領域, `margin-right` がすべて定義されていた場合)、 `margin-left` は無視され、 `auto` が設定されていたときと同じ計算値になります。 -<p>まれに幅の制約がきつすぎると (つまり、 <code>width</code>, <code>margin-left</code>, <code>border</code>, <code>padding</code>, コンテンツ領域, <code>margin-right</code> がすべて定義されていた場合)、 <code>margin-left</code> は無視され、 <code>auto</code> が設定されていたときと同じ計算値になります。</p> +## 構文 -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre class="brush:css no-line-numbers notranslate">/* <length> 値 */ +``` +/* <length> 値 */ margin-left: 10px; /* 絶対的な寸法 */ margin-left: 1em; /* 文字の寸法からの相対 */ margin-left: 5%; /* 直近のブロックコンテナーの幅からの相対 */ @@ -34,136 +34,132 @@ margin-left: auto; /* グローバル値 */ margin-left: inherit; margin-left: initial; +margin-left: revert; margin-left: unset; -</pre> - -<p><code>margin-left</code> プロパティは <code>auto</code> キーワード、または <code><length></code> や <code><percentage></code> で指定されます。正の数、ゼロ、負の数が指定できます。</p> - -<h3 id="Values" name="Values">値</h3> - -<dl> - <dt>{{cssxref("<length>")}}</dt> - <dd>固定値によるマージンの寸法です。</dd> - <dt>{{cssxref("<percentage>")}}</dt> - <dd>包含ブロックの <em>width</em> に対するパーセントによるマージンの寸法です。</dd> - <dt><code>auto</code></dt> - <dd>左マージンは未使用の水平方向の余白を共有します。これは主に使用されているレイアウトモードによって決定されます。 <code>margin-left</code> と <code>margin-right</code> の両方が <code>auto</code> の場合は、両方に均等に割り当てられます。それ以外の場合は以下の表のとおりです。 - <table class="standard-table"> - <thead> - <tr> - <th scope="col">{{cssxref("display")}} の値</th> - <th scope="col">{{cssxref("float")}} の値</th> - <th scope="col">{{cssxref("position")}} の値</th> - <th scope="col"><code>auto</code> の計算値</th> - <th scope="col">コメント</th> - </tr> - </thead> - <tbody> - <tr> - <th><code>inline</code>, <code>inline-block</code>, <code>inline-table</code></th> - <th><em>任意</em></th> - <th><code>static</code> または <code>relative</code></th> - <td><code>0</code></td> - <td>インラインレイアウトモード</td> - </tr> - <tr> - <th><code>block</code>, <code>inline</code>, <code>inline-block</code>, <code>block</code>, <code>table</code>, <code>inline-table</code>, <code>list-item</code>, <code>table-caption</code></th> - <th><em>任意</em></th> - <th><code>static</code> または <code>relative</code></th> - <td><code>0</code>。ただし <code>margin-left</code> と <code>margin-right</code> が共に <code>auto</code> に設定されていた場合は、親要素の中で中央揃えする値に設定されます。</td> - <td>ブロックレイアウトモード</td> - </tr> - <tr> - <th><code>block</code>, <code>inline</code>, <code>inline-block</code>, <code>block</code>, <code>table</code>, <code>inline-table</code>, <code>list-item</code>, <code>table-caption</code></th> - <th><code>left</code> または <code>right</code></th> - <th><code>static</code> または <code>relative</code></th> - <td><code>0</code></td> - <td>ブロックレイアウトモード (フロート要素)</td> - </tr> - <tr> - <th><code>table-*</code> <em>すべて</em>、ただし <code>table-caption</code> <em>を除く</em></th> - <th><em>任意</em></th> - <th><em>任意</em></th> - <td><code>0</code></td> - <td>内部の <code>table-*</code> 要素にはマージンがありません。代わりに {{ cssxref("border-spacing") }} を使用してください</td> - </tr> - <tr> - <th><code>flex</code>、 <code>inline-flex</code>, <code>table-*</code> <em>以外のすべて</em></th> - <th><em>任意</em></th> - <th><em><code>fixed</code></em> または <code>absolute</code></th> - <td><code>0</code>。ただし <code>margin-left</code> と <code>margin-right</code> が共に <code>auto</code> に設定されていた場合は、ボーダー領域を <code>width</code> の中で中央揃えする値に設定されます(固定されている場合)。</td> - <td>絶対位置指定配置モード</td> - </tr> - <tr> - <th><code>flex</code>, <code>inline-flex</code></th> - <th><em>任意</em></th> - <th><em>任意</em></th> - <td><code>0</code>。ただし、水平に正の余白がある場合は、 <code>auto</code> を指定したすべてのマージンに均等に割り振られます。</td> - <td>フレックスボックス配置モード</td> - </tr> - </tbody> - </table> - </dd> -</dl> - -<h2 id="Formal_definition" name="Formal_definition">公式定義</h2> - -<p>{{cssinfo}}</p> - -<h2 id="Formal_syntax" name="Formal_syntax">形式文法</h2> +``` + +`margin-left` プロパティは `auto` キーワード、または `<length>` や `<percentage>` で指定されます。正の数、ゼロ、負の数が指定できます。 + +### 値 + +- {{cssxref("<length>")}} + - : マージンの寸法を固定値で表したものです。 +- {{cssxref("<percentage>")}} + - : マージンの寸法を包含ブロックの*幅*に対するパーセント値で表したものです。 +- `auto` + + - : 左マージンは未使用の水平方向の余白を共有します。これは主に使用されているレイアウトモードによって決定されます。 `margin-left` と `margin-right` の両方が `auto` の場合は、両方に均等に割り当てられます。それ以外の場合は以下の表のとおりです。 + + <table class="standard-table"> + <thead> + <tr> + <th scope="col">{{cssxref("display")}} の値</th> + <th scope="col">{{cssxref("float")}} の値</th> + <th scope="col">{{cssxref("position")}} の値</th> + <th scope="col"><code>auto</code> の計算値</th> + <th scope="col">コメント</th> + </tr> + </thead> + <tbody> + <tr> + <th> + <code>inline</code>, <code>inline-block</code>, + <code>inline-table</code> + </th> + <th><em>任意</em></th> + <th><code>static</code> または <code>relative</code></th> + <td><code>0</code></td> + <td>インラインレイアウトモード</td> + </tr> + <tr> + <th> + <code>block</code>, <code>inline</code>, <code>inline-block</code>, + <code>block</code>, <code>table</code>, <code>inline-table</code>, + <code>list-item</code>, <code>table-caption</code> + </th> + <th><em>任意</em></th> + <th><code>static</code> または <code>relative</code></th> + <td> + <code>0</code>。ただし <code>margin-left</code> と <code>margin-right</code> が共に <code>auto</code> であった場合を除く。この場合、その要素が親の中で中央揃えされる値が設定される。 + </td> + <td>ブロックレイアウトモード</td> + </tr> + <tr> + <th> + <code>block</code>, <code>inline</code>, <code>inline-block</code>, + <code>block</code>, <code>table</code>, <code>inline-table</code>, + <code>list-item</code>, <code>table-caption</code> + </th> + <th><code>left</code> または <code>right</code></th> + <th><code>static</code> または <code>relative</code></th> + <td><code>0</code></td> + <td>ブロックレイアウトモード (浮動要素)</td> + </tr> + <tr> + <th> + <em>すべての </em><code>table-*</code><em>、ただし </em + ><code>table-caption</code> <em>を除く</em> + </th> + <th><em>任意</em></th> + <th><em>任意</em></th> + <td><code>0</code></td> + <td> + 内部の <code>table-*</code> 要素にはマージンがない。代わりに {{ cssxref("border-spacing") }} を使用のこと + </td> + </tr> + <tr> + <th> + <em>任意、ただし</em> <code>flex</code>, <code>inline-flex</code + >, <code>table-*</code> <em>を除く</em> + </th> + <th><em>任意</em></th> + <th> + <em><code>fixed</code></em> または <code>absolute</code> + </th> + <td> + <code>0</code>。ただし <code>margin-left</code> と <code>margin-right</code> が共に <code>auto</code> 出逢った場合を除く。この場合、利用可能な <code>width</code> の中で境界領域が中央揃えされる値が設定される (fixed の場合)。 + </td> + <td>絶対位置指定レイアウトモード</td> + </tr> + <tr> + <th><code>flex</code>, <code>inline-flex</code></th> + <th><em>任意</em></th> + <th><em>任意</em></th> + <td> + <code>0</code>。ただし、水平方向に正の余白がある場合を除く。この場合、 <code>auto</code> を指定したすべてのマージンに均等に分配される。 + </td> + <td>フレックスボックスレイアウトモード</td> + </tr> + </tbody> + </table> + +## 公式定義 + +{{cssinfo}} + +## 形式文法 {{csssyntax}} -<h2 id="Examples" name="Examples">例</h2> +## 例 -<h3 id="Setting_left_margin_using_pixels_and_percentages" name="Setting_left_margin_using_pixels_and_percentages">ピクセル数とパーセント値を使用した左マージンの設定</h3> +### ピクセル数とパーセント値を使用した左マージンの設定 -<pre class="brush: css notranslate">.content { margin-left: 5%; } +```css +.content { margin-left: 5%; } .sidebox { margin-left: 10px; } .logo { margin-left: -5px; } -</pre> - -<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 Box', '#propdef-margin-left', 'margin-left')}}</td> - <td>{{Spec2('CSS3 Box')}}</td> - <td>CSS 2.1 から目立った変更なし。</td> - </tr> - <tr> - <td>{{SpecName('CSS3 Flexbox', '#item-margins', 'margin-left')}}</td> - <td>{{Spec2('CSS3 Flexbox')}}</td> - <td>フレックス項目での <code>margin-left</code> の挙動を定義。</td> - </tr> - <tr> - <td>{{SpecName('CSS2.1', 'box.html#margin-properties', 'margin-left')}}</td> - <td>{{Spec2('CSS2.1')}}</td> - <td>CSS1 と同様、ただしインライン要素での効果は削除。</td> - </tr> - <tr> - <td>{{SpecName('CSS1', '#margin-left', 'margin-left')}}</td> - <td>{{Spec2('CSS1')}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<p>{{Compat("css.properties.margin-left")}}</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li>{{cssxref("margin-top")}}, {{cssxref("margin-right")}}, {{cssxref("margin-bottom")}} と {{cssxref("margin")}} 一括指定</li> - <li>対応付けられる論理的プロパティ: {{cssxref("margin-block-start")}}, {{cssxref("margin-block-end")}}, {{cssxref("margin-inline-start")}}, {{cssxref("margin-inline-end")}} および一括指定の {{cssxref("margin-block")}} と {{cssxref("margin-inline")}}</li> -</ul> +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- {{cssxref("margin-top")}}, {{cssxref("margin-right")}}, {{cssxref("margin-bottom")}} と {{cssxref("margin")}} 一括指定 +- 対応付けられる論理的プロパティ: {{cssxref("margin-block-start")}}, {{cssxref("margin-block-end")}}, {{cssxref("margin-inline-start")}}, {{cssxref("margin-inline-end")}} および一括指定の {{cssxref("margin-block")}} と {{cssxref("margin-inline")}} |