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/padding-bottom/index.md | |
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/padding-bottom/index.md')
-rw-r--r-- | files/ja/web/css/padding-bottom/index.md | 119 |
1 files changed, 45 insertions, 74 deletions
diff --git a/files/ja/web/css/padding-bottom/index.md b/files/ja/web/css/padding-bottom/index.md index 8aa21ff9bb..5209985100 100644 --- a/files/ja/web/css/padding-bottom/index.md +++ b/files/ja/web/css/padding-bottom/index.md @@ -3,108 +3,79 @@ title: padding-bottom slug: Web/CSS/padding-bottom tags: - CSS - - CSS Padding - - CSS Property - - Reference - - 'recipe:css-property' + - CSS パディング + - CSS プロパティ + - リファレンス + - recipe:css-property +browser-compat: css.properties.padding-bottom translation_of: Web/CSS/padding-bottom --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p><strong><code>padding-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#padding-area">パディング領域</a>における下側の高さを設定します。</p> +**`padding-bottom`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素の[パディング領域](/ja/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model#パディング領域)における下側の高さを設定します。 -<div>{{EmbedInteractiveExample("pages/css/padding-bottom.html")}}</div> +{{EmbedInteractiveExample("pages/css/padding-bottom.html")}} -<div class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</div> +要素のパディング領域とは、コンテンツと境界との間の領域のことです。 -<p>要素のパディング領域とは、コンテンツと境界線の間の領域のことです。</p> +![CSS の padding-bottom プロパティの要素ボックスへの影響](padding-bottom.svg) -<p><img alt="CSS の padding-bottom プロパティの要素ボックスへの影響" src="/files/4109/padding-bottom.svg" style="border-style: solid; border-width: 1px; display: block; margin: 0px auto;"></p> +> **Note:** {{cssxref("padding")}} プロパティは、単一の宣言で要素の四方のパディングをすべて設定することができます。 -<div class="note"> -<p><strong>注:</strong> {{cssxref("padding")}} プロパティは、単一の宣言で要素の四方のパディングをすべて設定することができます。</p> -</div> +## 構文 -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre class="brush:css no-line-numbers notranslate">/* <length> の値 */ +```css +/* <length> の値 */ padding-bottom: 0.5em; padding-bottom: 0; padding-bottom: 2cm; -/* <percentage> の値 */ +/* <percentage> の値 */ padding-bottom: 10%; /* グローバル値 */ padding-bottom: inherit; padding-bottom: initial; +padding-botom: revert; padding-bottom: unset; -</pre> +``` -<p><code>padding-bottom</code> プロパティは、以下のリスト内から選択した値で指定されます。マージンとは異なり、パディングには負の数は使用できません。</p> +`padding-bottom` プロパティは、以下のリストから選択した値で指定されます。マージンとは異なり、パディングには負の数は使用できません。 -<h3 id="Values" name="Values">値</h3> +### 値 -<dl> - <dt>{{cssxref("<length>")}}</dt> - <dd>固定値によるパディングの寸法です。負の数であってはいけません。</dd> - <dt>{{cssxref("<percentage>")}}</dt> - <dd>包含ブロックの width に対するパーセント値によるパディングの寸法です。負の数であってはいけません。</dd> -</dl> +- {{cssxref("<length>")}} + - : パディングの寸法を固定値で表したものです。負の数であってはいけません。 +- {{cssxref("<percentage>")}} + - : パディングの寸法を包含ブロックの*幅*に対するパーセント値で表したものです。負の数であってはいけません。 -<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_padding_bottom_with_pixels_and_percentages" name="Setting_padding_bottom_with_pixels_and_percentages">ピクセル数とパーセント値で下パディングを設定</h3> +### ピクセル数とパーセント値で下パディングを設定 -<pre class="brush: css notranslate">.content { padding-bottom: 5%; } +```css +.content { padding-bottom: 5%; } .sidebox { padding-bottom: 10px; } -</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-padding-bottom', 'padding-bottom')}}</td> - <td>{{Spec2('CSS3 Box')}}</td> - <td>変更なし。</td> - </tr> - <tr> - <td>{{SpecName('CSS2.1', 'box.html#padding-properties', 'padding-bottom')}}</td> - <td>{{Spec2('CSS2.1')}}</td> - <td>変更なし。</td> - </tr> - <tr> - <td>{{Specname('CSS1', '#padding-bottom', 'padding-bottom')}}</td> - <td>{{Spec2('CSS1')}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<p>{{Compat("css.properties.padding-bottom")}}</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li><a href="/ja/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model">CSS 基本ボックスモデルの紹介</a></li> - <li>{{cssxref("padding-top")}}, {{cssxref("padding-right")}}, {{cssxref("padding-left")}} および {{cssxref("padding")}} 一括指定</li> - <li>対応付けられる論理的プロパティ: {{cssxref("padding-block-start")}}, {{cssxref("padding-block-end")}}, {{cssxref("padding-inline-start")}}, {{cssxref("padding-inline-end")}} および一括指定の {{cssxref("padding-block")}} と {{cssxref("padding-inline")}}</li> -</ul> +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [CSS 基本ボックスモデル入門](/ja/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model) +- {{cssxref("padding-top")}}, {{cssxref("padding-right")}}, {{cssxref("padding-left")}} および {{cssxref("padding")}} 一括指定 +- 対応付けられる論理的プロパティ: {{cssxref("padding-block-start")}}, {{cssxref("padding-block-end")}}, {{cssxref("padding-inline-start")}}, {{cssxref("padding-inline-end")}} および一括指定の {{cssxref("padding-block")}} と {{cssxref("padding-inline")}} |