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
|
---
title: inset-inline-end
slug: Web/CSS/inset-inline-end
tags:
- CSS
- CSS 論理的プロパティ
- CSS プロパティ
- 実験的
- NeedsContent
- リファレンス
- 'recipe:css-property'
translation_of: Web/CSS/inset-inline-end
---
{{CSSRef}}
**`inset-inline-end`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素における行末からの論理的な内部位置を定義し、要素の書字方向やテキストの向きに従って物理的なオフセットに対応付けられます。 {{cssxref("top")}}, {{cssxref("right")}}, {{cssxref("bottom")}}, {{cssxref("left")}} のいずれかのプロパティに、 {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値に従って対応します。
```css
/* <length> 値 */
inset-inline-end: 3px;
inset-inline-end: 2.4em;
/* 包含ブロックの幅または高さに対する <percentage> 値 */
inset-inline-end: 10%;
/* キーワード値 */
inset-inline-end: auto;
/* グローバル値 */
inset-inline-end: inherit;
inset-inline-end: initial;
inset-inline-end: revert;
inset-inline-end: unset;
```
{{cssxref("inset-inline-start")}} と `inset-inline-end` の一括指定は {{cssxref("inset-inline")}} です。
## 構文
### 値
`inset-inline-end` プロパティは {{cssxref("left")}} プロパティと同じ値を取ります。
## 公式定義
{{cssinfo}}
## 形式文法
{{csssyntax}}
## 例
<h3 id="Setting_inline_end_offset">インライン方向の末尾のオフセットの設定</h3>
#### HTML
```html
<div>
<p class="exampleText">テキストの例</p>
</div>
```
#### CSS
```css
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exampleText {
writing-mode: vertical-rl;
position: relative;
inset-inline-end: 20px;
background-color: #c8c800;
}
```
#### 結果
{{EmbedLiveSample("Setting_inline_end_offset", 140, 140)}}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- 内部位置を定義する他のプロパティ: {{cssxref("inset-block-start")}}, {{cssxref("inset-block-end")}}, {{cssxref("inset-inline-start")}}
- 対応する物理的プロパティ: {{cssxref("top")}}, {{cssxref("right")}}, {{cssxref("bottom")}}, {{cssxref("left")}}
- {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}}
|