blob: 0f529f3a3f1770884e7a5f30d2b76dd4a9f71388 (
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
|
---
title: '-webkit-mask-position-x'
slug: Web/CSS/-webkit-mask-position-x
tags:
- CSS
- CSS マスク
- CSS プロパティ
- 標準外
- リファレンス
- recipe:css-property
browser-compat: css.properties.-webkit-mask-position-x
translation_of: Web/CSS/-webkit-mask-position-x
---
{{CSSRef}}{{Non-standard_header}}
`-webkit-mask-position-x` は CSS のプロパティで、マスク画像の初期の水平方向の位置を設定します。
```css
/* キーワード値 */
-webkit-mask-position-x: left;
-webkit-mask-position-x: center;
-webkit-mask-position-x: right;
/* <percentage> 値 */
-webkit-mask-position-x: 100%;
-webkit-mask-position-x: -50%;
/* <length> 値 */
-webkit-mask-position-x: 50px;
-webkit-mask-position-x: -1cm;
/* 複数の値 */
-webkit-mask-position-x: 50px, 25%, -3em;
/* グローバル値 */
-webkit-mask-position-x: inherit;
-webkit-mask-position-x: initial;
-webkit-mask-position-x: unset;
```
{{cssinfo}}
## 構文
### 値
- `<length-percentage>`
- : ボックスの左パディングの辺から見た画像の左端の位置を示す長さです。パーセント値の場合は、ボックスのパディング領域の水平方向の寸法に対して計算されます。つまり、 `0%` という値は、画像の左端がボックスの左パディングの辺と一致していることを意味し、`100%` という値は、画像の右端がボックスの右パディングの辺と一致していることを意味します。
- **`left`**
- : `0%` と同等です。
- **`center`**
- : `50%` と同等です。
- **`right`**
- : `100%` と同等です。
## 公式定義
{{CSSInfo}}
## 形式文法
{{csssyntax}}
## 例
### マスク画像の水平方向の位置指定
```css
.exampleOne {
-webkit-mask-image: url(mask.png);
-webkit-mask-position-x: right;
}
.exampleTwo {
-webkit-mask-image: url(mask.png);
-webkit-mask-position-x: 25%;
}
```
## 仕様書
標準には含まれていません。
## ブラウザーの互換性
{{Compat}}
## 関連情報
{{cssxref("-webkit-mask-position")}}, {{cssxref("-webkit-mask-position-y")}}, {{cssxref("-webkit-mask-origin")}}, {{cssxref("-webkit-mask-attachment")}}
|