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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
---
title: padding-block-end
slug: Web/CSS/padding-block-end
tags:
- CSS
- CSS 論理的プロパティ
- CSS プロパティ
- 実験的
- リファレンス
- padding-block
- padding-block-end
- recipe:css-property
browser-compat: css.properties.padding-block-end
translation_of: Web/CSS/padding-block-end
---
{{CSSRef}}
**`padding-block-end`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素のブロック方向の論理的な末尾側のパディングを定義し、それが要素の書字方向やテキストの方向に応じて物理的なパディングに対応づけられます。
{{EmbedInteractiveExample("pages/css/padding-block-end.html")}}
## 構文
```css
/* <length> 値 */
padding-block-end: 10px; /* 絶対的な長さ */
padding-block-end: 1em; /* テキストの大きさに対する相対値 */
/* <percentage> 値 */
padding-block-end: 5%; /* ブロックコンテナーの幅に対する割合のパディング */
/* グローバル値 */
padding-block-end: inherit;
padding-block-end: initial;
padding-block-end: revert;
padding-block-end: unset;
```
### 値
- {{cssxref("<length>")}}
- : パディングの寸法を固定値で指定します。負の値は指定できません。
- {{cssxref("<percentage>")}}
- : パディングの寸法をパーセント値で表したもので、含まれるブロックの _inline-size_ に対する相対値です。負の値は指定できません。
## 解説
`padding-block-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-inline-start")}}, {{cssxref("padding-inline-end")}} があります。
## 公式定義
{{cssinfo}}
## 形式文法
{{csssyntax}}
## 例
<h3 id="Setting_block_end_padding_for_vertical_text">縦書きテキストにおけるブロック方向の末尾のパディングの設定</h3>
#### HTML
```html
<div>
<p class="exampleText">Example text</p>
</div>
```
#### CSS
```css
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exampleText {
writing-mode: vertical-lr;
padding-block-end: 20px;
background-color: #C8C800;
}
```
#### 結果
{{EmbedLiveSample("Setting_block_end_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")}}
|