From 097e0c985e82e73460e6c0a76f3b901ce3af98f7 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Wed, 17 Nov 2021 00:45:11 +0900 Subject: CSS 論理的プロパティと値のボックスモデルに関するプロパティを更新 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 2021/11/15 時点の英語版に同期 --- files/ja/web/css/padding-inline-end/index.md | 106 ++++++++++++--------------- 1 file changed, 48 insertions(+), 58 deletions(-) (limited to 'files/ja/web/css/padding-inline-end') diff --git a/files/ja/web/css/padding-inline-end/index.md b/files/ja/web/css/padding-inline-end/index.md index 20ccbeafe5..2c52efb204 100644 --- a/files/ja/web/css/padding-inline-end/index.md +++ b/files/ja/web/css/padding-inline-end/index.md @@ -3,70 +3,76 @@ title: padding-inline-end slug: Web/CSS/padding-inline-end tags: - CSS - - CSS Logical Property - - CSS Property - - Experimental - - Reference + - CSS 論理的プロパティ + - CSS プロパティ + - 実験的 + - リファレンス - padding-inline - padding-inline-end - - 'recipe:css-property' + - recipe:css-property +browser-compat: css.properties.padding-inline-end translation_of: Web/CSS/padding-inline-end --- -
{{CSSRef}}
+{{CSSRef}} -

padding-inline-endCSS のプロパティで、要素のインライン方向の論理的な末尾側のパディングを定義し、それが要素の書字方向やテキストの方向に応じて物理的なマージンに対応付けられます。

+**`padding-inline-end`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素のインライン方向の論理的な末尾側のパディングを定義し、それが要素の書字方向やテキストの方向に応じて物理的なパディングに対応づけられます。 -
{{EmbedInteractiveExample("pages/css/padding-inline-end.html")}}
+{{EmbedInteractiveExample("pages/css/padding-inline-end.html")}} - +## 構文 -

構文

- -
/* <length> 値 */
+```css
+/*  値 */
 padding-inline-end: 10px;     /* 絶対的な長さ */
 padding-inline-end: 1em;      /* テキストの大きさに対する相対値 */
 
-/* <percentage> 値 */
+/*  値 */
 padding-inline-end: 5%;       /* ブロックコンテナーの幅に対する割合のパディング */
 
 /* グローバル値 */
 padding-inline-end: inherit;
 padding-inline-end: initial;
+padding-inline-end: revert;
 padding-inline-end: unset;
-
+``` -

+### 値 -

padding-inline-end プロパティは {{cssxref("padding-left")}} プロパティと同じ値を取ります。

+- {{cssxref("<length>")}} + - : パディングの寸法を固定値で指定します。負の値は指定できません。 +- {{cssxref("<percentage>")}} + - : パディングの寸法をパーセント値で表したもので、含まれるブロックの _inline-size_ に対する相対値です。負の値は指定できません。 -

解説

+## 解説 -これは {{cssxref("padding-top")}}, {{cssxref("padding-right")}}, {{cssxref("padding-bottom")}}, {{cssxref("padding-left")}} の何れかのプロパティに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。 +`padding-inline-end` プロパティは、{{cssxref("padding-top")}} プロパティと同じ値を取ると仕様で定義されています。しかし、このプロパティが対応づけられる物理的なプロパティは、 {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} に設定された値に依存します。したがって、{{cssxref("padding-bottom")}}, {{cssxref("padding-right")}}, {{cssxref("padding-left")}} の何れかに対応づけられる可能性があります。 -

関連プロパティとして、要素の他のマージンを定義する {{cssxref("padding-block-start")}}, {{cssxref("padding-block-end")}}, {{cssxref("padding-inline-start")}} があります。

+関連プロパティとして、要素の他のマージンを定義する {{cssxref("padding-block-start")}}, {{cssxref("padding-block-end")}}, {{cssxref("padding-inline-start")}} があります。 -

公式定義

+## 公式定義 -

{{cssinfo}}

+{{cssinfo}} -

形式文法

+## 形式文法 {{csssyntax}} -

+## 例 -

縦書きテキストにおけるインライン方向の末尾のパディングの設定

+

縦書きテキストにおけるインライン方向の末尾のパディングの設定

-

HTML

+#### HTML -
<div>
-  <p class="exampleText">Example text</p>
-</div>
-
+```html +
+

Example text

+
+``` -

CSS

+#### CSS -
div {
+```css
+div {
   background-color: yellow;
   width: 120px;
   height: 120px;
@@ -76,38 +82,22 @@ padding-inline-end: unset;
   writing-mode: vertical-lr;
   padding-inline-end: 20px;
   background-color: #C8C800;
-}
+} +``` -

結果

+#### 結果 -

{{EmbedLiveSample("Setting_inline_end_padding_for_vertical_text", 140, 140)}}

+{{EmbedLiveSample("Setting_inline_end_padding_for_vertical_text", 140, 140)}} -

仕様書

+## 仕様書 - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName("CSS Logical Properties", "#propdef-padding-inline-end", "padding-inline-end")}}{{Spec2("CSS Logical Properties")}}初回定義
+{{Specifications}} -

ブラウザーの互換性

+## ブラウザーの互換性 -

{{Compat("css.properties.padding-inline-end")}}

+{{Compat}} -

関連情報

+## 関連情報 - +- 対応づけ先の物理的プロパティ: {{cssxref("padding-top")}}, {{cssxref("padding-right")}}, {{cssxref("padding-bottom")}}, {{cssxref("padding-left")}} +- {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} -- cgit v1.2.3-54-g00ecf