blob: 4fcc1b79f985c0581562c2b30a12a245fb8ff300 (
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
---
title: background-position-x
slug: Web/CSS/background-position-x
tags:
- CSS
- CSS 背景
- CSS プロパティ
- Experimental
- リファレンス
- recipe:css-property
browser-compat: css.properties.background-position-x
translation_of: Web/CSS/background-position-x
---
{{CSSRef}}
**`background-position-x`** は [CSS](/ja/docs/Web/CSS) のプロパティで、各背景画像における水平の初期位置を設定します。位置は {{cssxref("background-origin")}} によって設定された位置レイヤーに対する相対位置です。
{{EmbedInteractiveExample("pages/css/background-position-x.html")}}
このプロパティの値は、その後で一括指定の {{cssxref("background")}} または {{cssxref("background-position")}} プロパティが定義されると上書きされます。
## 構文
```css
/* キーワード値 */
background-position-x: left;
background-position-x: center;
background-position-x: right;
/* <percentage> 値 */
background-position-x: 25%;
/* <length> 値 */
background-position-x: 0px;
background-position-x: 1cm;
background-position-x: 8em;
/* 辺からの相対値 */
background-position-x: right 3px;
background-position-x: left 25%;
/* 複数の値 */
background-position-x: 0px, center;
/* グローバル値 */
background-position-x: inherit;
background-position-x: initial;
background-position-x: revert;
background-position-x: unset;
```
`background-position-x` プロパティは、1 つ以上の値をカンマで区切って指定します。
### 値
- `left`
- : 背景画像の左端を、背景位置レイヤーの左端に配置します。
- `center`
- : 背景画像を背景位置レイヤーの方向の中央に配置します。
- `right`
- : 背景画像の右端を、背景位置レイヤーの右端に配置します。
- {{cssxref("<length>")}}
- : 指定された背景画像の左辺の、背景位置レイヤーの左辺からのオフセットです。 (ブラウザーによってはオフセットに右辺を割り当てることもできます)。
- {{cssxref("<percentage>")}}
- : 指定された背景画像の水平位置のオフセットで、コンテナーからの相対値です。 0% の値は背景画像の左端がコンテナーの左端の位置に配置されることを意味し、 100% の値は背景画像の*右端*が、コンテナーの*右端*の位置に配置されることを意味します。したがって、 50% の値では、背景画像を水平方向の中央に配置します。
## 公式定義
{{cssinfo}}
## 形式文法
{{csssyntax}}
## 例
<h3 id="Basic_example">基本的な例</h3>
次の例は、シンプルな背景画像の実装で、background-position-x と background-position-y を使って、画像の水平方向と垂直方向の位置を別々に定義しています。
#### HTML
```html
<div></div>
```
#### CSS
```css
div {
width: 300px;
height: 300px;
background-color: skyblue;
background-image: url(https://media.prod.mdn.mozit.cloud/attachments/2020/07/29/17350/3b4892b7e820122ac6dd7678891d4507/firefox.png);
background-repeat: no-repeat;
background-position-x: center;
background-position-y: bottom 10px;
}
```
#### 結果
{{EmbedLiveSample('Basic_example', '100%', 300)}}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- {{cssxref("background-position")}}
- {{cssxref("background-position-y")}}
- {{cssxref("background-position-inline")}}
- {{cssxref("background-position-block")}}
- [複数の背景の使用](/ja/docs/Web/CSS/CSS_Backgrounds_and_Borders/Using_multiple_backgrounds)
|