blob: 67c2b40839b98de94c426ea99c990643dfbe544e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
---
title: padding-left
slug: Web/CSS/padding-left
tags:
- CSS
- CSS パディング
- CSS プロパティ
- リファレンス
- recipe:css-property
browser-compat: css.properties.padding-left
translation_of: Web/CSS/padding-left
---
{{CSSRef}}
**`padding-left`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素の[パディング領域](/ja/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model#パディング領域)における左側の幅を設定します。
{{EmbedInteractiveExample("pages/css/padding-left.html")}}
要素のパディング領域とは、コンテンツと境界との間の領域のことです。
> **Note:** {{cssxref("padding")}} プロパティは、単一の宣言で要素の四方のパディングをすべて設定することができます。
## 構文
```css
/* <length> の値 */
padding-left: 0.5em;
padding-left: 0;
padding-left: 2cm;
/* <percentage> の値 */
padding-left: 10%;
/* グローバル値 */
padding-left: inherit;
padding-left: initial;
padding-left: revert;
padding-left: unset;
```
`padding-left` プロパティは、以下のリストから選択した値で指定されます。マージンとは異なり、パディングには負の数は使用できません。
### 値
- {{cssxref("<length>")}}
- : パディングの寸法を固定値で表したものです。負の数であってはいけません。
- {{cssxref("<percentage>")}}
- : パディングの寸法を包含ブロックの*幅*に対するパーセント値で表したものです。負の数であってはいけません。
## 公式定義
{{cssinfo}}
## 形式文法
{{csssyntax}}
## 例
### 左パディングをピクセル数とパーセント値で設定
```css
.content { padding-left: 5%; }
.sidebox { padding-left: 10px; }
```
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- [CSS 基本ボックスモデル入門](/ja/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model)
- {{cssxref("padding-top")}}, {{cssxref("padding-right")}}, {{cssxref("padding-bottom")}} および {{cssxref("padding")}} 一括指定
- 対応付けられる論理的プロパティ: {{cssxref("padding-block-start")}}, {{cssxref("padding-block-end")}}, {{cssxref("padding-inline-start")}}, {{cssxref("padding-inline-end")}} および一括指定の {{cssxref("padding-block")}} と {{cssxref("padding-inline")}}
|