--- title: padding-inline-start slug: Web/CSS/padding-inline-start tags: - CSS - CSS 論理的プロパティ - CSS プロパティ - 実験的 - リファレンス - padding-inline - padding-inline-start - recipe:css-property browser-compat: css.properties.padding-inline-start translation_of: Web/CSS/padding-inline-start --- {{CSSRef}} **`padding-inline-start`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素のインライン方向の論理的な先頭側のパディングを定義し、それが要素の書字方向やテキストの方向に応じて物理的なパディングに対応づけられます。 {{EmbedInteractiveExample("pages/css/padding-inline-start.html")}} ## 構文 ```css /* 値 */ padding-inline-start: 10px; /* 絶対的な長さ */ padding-inline-start: 1em; /* テキストの大きさに対する相対値 */ /* 値 */ padding-inline-start: 5%; /* ブロックコンテナーの幅に対する割合のパディング */ /* グローバル値 */ padding-inline-start: inherit; padding-inline-start: initial; padding-inline-start: revert; padding-inline-start: unset; ``` ### 値 - {{cssxref("<length>")}} - : パディングの寸法を固定値で指定します。負の値は指定できません。 - {{cssxref("<percentage>")}} - : パディングの寸法をパーセント値で表したもので、含まれるブロックの _inline-size_ に対する相対値です。負の値は指定できません。 ## 解説 `padding-inline-start` プロパティは、{{cssxref("padding-top")}} プロパティと同じ値を取ると仕様で定義されています。しかし、このプロパティが対応づけられる物理的なプロパティは、 {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} に設定された値に依存します。したがって、{{cssxref("padding-top")}}, {{cssxref("padding-right")}}, {{cssxref("padding-left")}} の何れかに対応づけられる可能性があります。 関連プロパティとして、要素の他のマージンを定義する {{cssxref("padding-block-start")}}, {{cssxref("padding-block-end")}}, {{cssxref("padding-inline-end")}} があります。 ## 公式定義 {{cssinfo}} ## 形式文法 {{csssyntax}} ## 例

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

#### HTML ```html

Example text

``` #### CSS ```css div { background-color: yellow; width: 120px; height: 120px; } .exampleText { writing-mode: vertical-lr; padding-inline-start: 20px; background-color: #C8C800; } ``` #### 結果 {{EmbedLiveSample("Setting_inline_start_padding_for_vertical_text", 140, 140)}} ## 仕様書 {{Specifications}} ## ブラウザーの互換性 {{Compat}} ## 関連情報 - 対応づけ先の物理的プロパティ: {{cssxref("padding-top")}}, {{cssxref("padding-right")}}, {{cssxref("padding-bottom")}}, {{cssxref("padding-left")}} - {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}}