diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-11-08 10:35:25 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-11-15 23:58:38 +0900 |
commit | 376c645e2bb44c10317c3f3b8aca53f16da0975a (patch) | |
tree | 3edb8a57ab2a532fe575f2a3342df8731f4dc842 /files/ja/web/css/margin-bottom | |
parent | b5dcea43eb1d9e42283f42a6edcd52ae3208cf23 (diff) | |
download | translated-content-376c645e2bb44c10317c3f3b8aca53f16da0975a.tar.gz translated-content-376c645e2bb44c10317c3f3b8aca53f16da0975a.tar.bz2 translated-content-376c645e2bb44c10317c3f3b8aca53f16da0975a.zip |
CSS Box Model のプロパティを更新
- 2021/11/07 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/margin-bottom')
-rw-r--r-- | files/ja/web/css/margin-bottom/index.md | 148 | ||||
-rw-r--r-- | files/ja/web/css/margin-bottom/margin-bottom.svg | 1 |
2 files changed, 63 insertions, 86 deletions
diff --git a/files/ja/web/css/margin-bottom/index.md b/files/ja/web/css/margin-bottom/index.md index f035539d6b..ec8b38ea0d 100644 --- a/files/ja/web/css/margin-bottom/index.md +++ b/files/ja/web/css/margin-bottom/index.md @@ -3,26 +3,26 @@ title: margin-bottom slug: Web/CSS/margin-bottom tags: - CSS - - CSS Property - - Reference - - 'recipe:css-property' + - CSS プロパティ + - リファレンス + - recipe:css-property +browser-compat: css.properties.margin-bottom translation_of: Web/CSS/margin-bottom --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p><strong><code>margin-bottom</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-bottom`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素の下側の[マージン領域](/ja/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model#マージン領域)を設定します。正の数を指定すると、隣との間が遠くなるように配置され、負の数を指定すると、近くなるように配置します。 -<div>{{EmbedInteractiveExample("pages/css/margin-bottom.html")}}</div> +{{EmbedInteractiveExample("pages/css/margin-bottom.html")}} -<p class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</p> +![要素ボックスにおける CSS の margin-bottom プロパティの効果](margin-bottom.svg) -<p><img alt="要素ボックスにおける CSS の margin-bottom プロパティの効果" src="/files/4045/margin-bottom.svg" style="border: 1px solid; display: block; height: 130px; margin-left: auto; margin-right: auto; width: 400px;"></p> +このプロパティは、 {{HTMLElement("span")}} または {{HTMLElement("code")}} のような非[置換](/ja/docs/Web/CSS/Replaced_element)のインライン要素には効果がありません。 -<p>このプロパティは、 {{HTMLElement("span")}} または {{HTMLElement("code")}} のような<em>非<a href="/ja/docs/Web/CSS/Replaced_element">置換</a></em>のインライン要素には効果がありません。</p> +## 構文 -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre class="brush:css no-line-numbers notranslate">/* <length> 値 */ +```css +/* <length> 値 */ margin-bottom: 10px; /* 絶対的な寸法 */ margin-bottom: 1em; /* 文字の寸法からの相対 */ margin-bottom: 5%; /* 直近のブロックコンテナーの幅からの相対 */ @@ -33,47 +33,49 @@ margin-bottom: auto; /* グローバル値 */ margin-bottom: inherit; margin-bottom: initial; +margin-bottom: revert; margin-bottom: unset; -</pre> +``` -<p><code>margin-bottom</code> プロパティは <code>auto</code> キーワード、または <code><length></code> や <code><percentage></code> で指定されます。正の数、ゼロ、負の数が指定できます。</p> +`margin-bottom` プロパティは `auto` キーワード、または `<length>` や `<percentage>` で指定されます。正の数、ゼロ、負の数が指定できます。 -<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>ブラウザ―が適切な値を選択して使用します。 {{cssxref("margin")}} を参照してください。</dd> -</dl> +- {{cssxref("<length>")}} + - : マージンの寸法を固定値で表したものです。 +- {{cssxref("<percentage>")}} + - : マージンの寸法を包含ブロックの*幅*に対するパーセント値で表したものです。 +- `auto` + - : ブラウザ―が適切な値を選択して使用します。 {{cssxref("margin")}} を参照してください。 -<h2 id="Formal_definition" name="Formal_definition">公式定義</h2> +## 公式定義 -<p>{{cssinfo}}</p> +{{cssinfo}} -<h2 id="Formal_syntax" name="Formal_syntax">形式文法</h2> +## 形式文法 {{csssyntax}} -<h2 id="Examples" name="Examples">例</h2> +## 例 -<h3 id="Setting_positive_and_negative_bottom_margins" name="Setting_positive_and_negative_bottom_margins">正および負の数の下側のマージンの設定</h3> +<h3 id="Setting_positive_and_negative_bottom_margins">正および負の数の下側のマージンの設定</h3> -<h4 id="HTML">HTML</h4> +#### HTML -<pre class="brush: html notranslate"><div class="container"> -<div class="box0">Box 0</div> -<div class="box1">Box 1</div> -<div class="box2">Box one's negative margin pulls me up</div> -</div></pre> +```html +<div class="container"> +<div class="box0">Box 0</div> +<div class="box1">Box 1</div> +<div class="box2">Box one's negative margin pulls me up</div> +</div> +``` -<h4 id="CSS">CSS</h4> +#### CSS -<p>div に margin-bottom と height を設定する CSS です。</p> +div に margin-bottom と height を設定する CSS です。 -<pre class="brush: css notranslate">.box0 { +```css +.box0 { margin-bottom:1em; height:3em; } @@ -86,12 +88,12 @@ margin-bottom: unset; border-width:1px 0; margin-bottom:2em; } +``` -</pre> - -<p>包含要素と div の定義の一部です。これによって margin の効果がより明確に見えます。</p> +包含要素と div の定義の一部です。これによってマージンの効果がより明確に見えます。 -<pre class="brush: css notranslate">.container { +```css +.container { background-color:orange; width:320px; border:1px solid black; @@ -99,48 +101,22 @@ margin-bottom: unset; div { width:320px; background-color:gold; -}</pre> - -<h4 id="Result" name="Result">結果</h4> - -<p>{{ EmbedLiveSample('Setting_positive_and_negative_bottom_margins',350,200) }}</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 Box', '#propdef-margin-bottom', 'margin-bottom')}}</td> - <td>{{Spec2('CSS3 Box')}}</td> - <td>目立った変更なし。</td> - </tr> - <tr> - <td>{{SpecName('CSS2.1', 'box.html#margin-properties', 'margin-bottom')}}</td> - <td>{{Spec2('CSS2.1')}}</td> - <td>CSS1 と同様、ただしインライン要素での効果は削除。</td> - </tr> - <tr> - <td>{{SpecName('CSS1', '#margin-bottom', 'margin-bottom')}}</td> - <td>{{Spec2('CSS1')}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<p>{{Compat("css.properties.margin-bottom")}}</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li>{{cssxref("margin-top")}}, {{cssxref("margin-right")}}, {{cssxref("margin-left")}} と {{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> +} +``` + +#### 結果 + +{{ EmbedLiveSample('Setting_positive_and_negative_bottom_margins',350,200) }} + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- {{cssxref("margin-top")}}, {{cssxref("margin-right")}}, {{cssxref("margin-left")}} と {{cssxref("margin")}} 一括指定 +- 対応する論理的プロパティ: {{cssxref("margin-block-start")}}, {{cssxref("margin-block-end")}}, {{cssxref("margin-inline-start")}}, {{cssxref("margin-inline-end")}} および一括指定の {{cssxref("margin-block")}} と {{cssxref("margin-inline")}} diff --git a/files/ja/web/css/margin-bottom/margin-bottom.svg b/files/ja/web/css/margin-bottom/margin-bottom.svg new file mode 100644 index 0000000000..102a3dc064 --- /dev/null +++ b/files/ja/web/css/margin-bottom/margin-bottom.svg @@ -0,0 +1 @@ +<svg baseProfile="full" xmlns="http://www.w3.org/2000/svg" width="400" height="130"><defs><pattern id="a" patternUnits="userSpaceOnUse" x="0" y="0" width="105" height="105"><path d="m0 90 15 15M0 75l30 30M0 60l45 45M0 45l60 60M0 30l75 75M0 15l90 90M0 0l105 105M15 0l90 90M30 0l75 75M45 0l60 60M60 0l45 45M75 0l30 30M90 0l15 15"/></pattern></defs><path fill="azure" d="M130 10h140v90H130z"/><path stroke="#000" stroke-dasharray="3 2" fill="#fff" d="M150 30h100v50H150z"/><path fill="beige" d="M160 40h80v30h-80z"/><text x="290" y="25" font-family="sans-serif" font-size="10pt">マージン領域</text><path stroke="#000" d="M288 20h-53"/><text x="290" y="48" font-family="sans-serif" font-size="10pt">境界</text><path stroke="#000" d="M278 43h-28"/><text x="290" y="71" font-family="sans-serif" font-size="10pt">コンテンツ領域</text><path stroke="#000" d="m288 67-58-7"/><text x="290" y="94" font-family="sans-serif" font-size="10pt">パディング領域</text><path stroke="#000" d="m288 91-53-16"/><path fill="url(#a)" stroke="#000" d="M130 80h140v20H130z"/><path stroke="#000" d="M200 90v25"/><text x="42" y="125" font-family="sans-serif" font-size="10pt">この領域の高さが margin-bottom 値で定義される</text><path stroke="#000" d="M116 100h8m-8-20h8m-4 0v20"/><text x="10" y="93" font-family="'courier new',monospace" font-size="10pt">margin-bottom</text></svg>
\ No newline at end of file |