diff options
Diffstat (limited to 'files/ja/web/css/margin-inline')
-rw-r--r-- | files/ja/web/css/margin-inline/index.md | 137 |
1 files changed, 72 insertions, 65 deletions
diff --git a/files/ja/web/css/margin-inline/index.md b/files/ja/web/css/margin-inline/index.md index 67f51f34b8..4e48c141c2 100644 --- a/files/ja/web/css/margin-inline/index.md +++ b/files/ja/web/css/margin-inline/index.md @@ -3,22 +3,21 @@ title: margin-inline slug: Web/CSS/margin-inline tags: - CSS - - CSS Logical Property - - CSS Property - - CSS プロパティ - CSS 論理的プロパティ - - Experimental - - Reference + - CSS プロパティ + - 実験的 + - リファレンス - margin-inline - - margin-inline-end - - margin-inline-start + - recipe:css-shorthand-property +browser-compat: css.properties.margin-inline translation_of: Web/CSS/margin-inline --- -<div>{{CSSRef}}{{SeeCompatTable}}</div> +{{CSSRef}} -<p>The <strong><code>margin-inline</code></strong> は <a href="/ja/docs/Web/CSS" title="CSS">CSS</a> のプロパティで、論理的なインライン方向の先頭と末尾のマージンを設定します。これは要素の書字方向やテキストの向きに応じて物理的なマージンに変換されます。</p> +The **`margin-inline`** は [CSS](/ja/docs/Web/CSS) の[一括指定プロパティ](/ja/docs/Web/CSS/Shorthand_properties)で、論理的なインライン方向の先頭と末尾のマージンを設定します。これは要素の書字方向やテキストの向きに応じて物理的なマージンに変換されます。 -<pre class="brush:css no-line-numbers">/* <length> 値 */ +```css +/* <length> 値 */ margin-inline: 10px 20px; /* 絶対的な長さ */ margin-inline: 1em 2em; /* テキストの大きさに対する相対値 */ margin-inline: 5% 2%; /* 直近のブロックコンテナーの大きさに対する相対値 */ @@ -30,76 +29,84 @@ margin-inline: auto; /* グローバル値 */ margin-inline: inherit; margin-inline: initial; +margin-inline: revert; margin-inline: unset; -</pre> +``` -<p>これらの値は、 {{CSSxRef("margin-top")}} と {{CSSxRef("margin-bottom")}}、または {{CSSxRef("margin-right")}} と {{CSSxRef("margin-left")}} プロパティに、 {{CSSxRef("writing-mode")}}, {{CSSxRef("direction")}}, {{CSSxRef("text-orientation")}} で定義された値にしたがって対応します。</p> +このプロパティは、 {{CSSxRef("margin-top")}} と {{CSSxRef("margin-bottom")}}、または {{CSSxRef("margin-right")}} と {{CSSxRef("margin-left")}} プロパティに、 {{CSSxRef("writing-mode")}}, {{CSSxRef("direction")}}, {{CSSxRef("text-orientation")}} で定義された値にしたがって対応します。 -<p>値は {{CSSxRef("margin-inline-start")}} と {{CSSxRef("margin-inline-end")}} で個別に設定することができます。ブロック方向のプロパティは {{CSSxRef("margin-block")}} で、 {{CSSxRef("margin-block-start")}} と {{CSSxRef("margin-block-end")}} を設定します。</p> +## 構成要素のプロパティ -<h2 id="Syntax" name="Syntax">構文</h2> +このプロパティは以下の CSS プロパティの一括指定です。 -<h3 id="Values" name="Values">値</h3> +- [`margin-inline-start`](/ja/docs/Web/CSS/margin-inline-start) +- [`margin-inline-end`](/ja/docs/Web/CSS/margin-inline-end) -<p><code>margin-inline</code> プロパティは、 {{CSSxRef("margin-left")}} プロパティと同じ値を取ります。</p> +2 つの値を指定した場合は、1 つ目の値で先頭、2 つ目の値で末尾を設定します。1 つの値を指定した場合は、両方のプロパティに同じ値を設定します。 -<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> +## 構文 -{{CSSSyntax}} +### 値 + +`margin-inline` プロパティは、 {{CSSxRef("margin-left")}} プロパティと同じ値を取ります。 + +## 公式定義 + +{{cssinfo}} -<h2 id="Example" name="Example">例</h2> +## 形式文法 -<h3 id="HTML">HTML</h3> +{{CSSSyntax}} + +## 例 -<pre class="brush: html"><div> - <p class="exampleText">Example text</p> -</div> -</pre> +<h3 id="Setting_inline_start_and_end_margins">インライン方向の先頭と末尾のマージンの設定</h3> -<h3 id="CSS">CSS</h3> +#### CSS -<pre class="brush: css">div { +```css +div { background-color: yellow; width: 120px; - height: 120px; + height: auto; + border: 1px solid green; } -.exampleText { - writing-mode: vertical-rl; +p { + margin: 0; margin-inline: 20px 40px; - background-color: #c8c800; -}</pre> - -<p>{{EmbedLiveSample("Example", 140, 140)}}</p> - -<h2 id="Specification" name="Specification">仕様書</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("CSS Logical Properties", "#propdef-margin-inline", "margin-inline")}}</td> - <td>{{Spec2("CSS Logical Properties")}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<p>{{CSSInfo}}</p> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<p>{{Compat("css.properties.margin-inline")}}</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li>対応する物理的プロパティ: {{CSSxRef("margin-top")}}, {{CSSxRef("margin-right")}}, {{CSSxRef("margin-bottom")}}, {{CSSxRef("margin-left")}}</li> - <li>{{CSSxRef("writing-mode")}}, {{CSSxRef("direction")}}, {{CSSxRef("text-orientation")}}</li> -</ul> + background-color: tan; +} + +.verticalExample { + writing-mode: vertical-rl; +} +``` + +#### HTML + +```html +<div> + <p>Example text</p> +</div> +<div class="verticalExample"> + <p>Example text</p> +</div> +``` + +#### 結果 + +{{EmbedLiveSample("Setting_inline_start_and_end_margins", 140, 240)}} + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- 対応する物理的プロパティ: {{CSSxRef("margin-top")}}, {{CSSxRef("margin-right")}}, {{CSSxRef("margin-bottom")}}, {{CSSxRef("margin-left")}} +- {{CSSxRef("writing-mode")}}, {{CSSxRef("direction")}}, {{CSSxRef("text-orientation")}} |