blob: c8ed834f44b5c275ae5adca4101a47fcdfc89878 (
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
|
---
title: background-position-x
slug: Web/CSS/background-position-x
tags:
- CSS
- Experimental
- Propriété
- Reference
translation_of: Web/CSS/background-position-x
---
{{CSSRef}}
La propriété **`background-position-x`** définit la position horizontale initiale de chaque image d'arrière-plan par rapport à l'origine, définie avec {{cssxref("background-origin")}}.
Pour plus d'informations, se référer à la documentation de la propriété {{cssxref("background-position")}} qui existe depuis plus longtemps.
{{EmbedInteractiveExample("pages/css/background-position-x.html")}}
> **Note :** La valeur de cette propriété sera surchargée par n'importe quelle déclaration avec {{cssxref("background")}} ou {{cssxref("background-position")}} située après la déclaration de `background-position-x`.
## Syntaxe
```css
/* Valeurs avec un mot-clé */
background-position-x: left;
background-position-x: right;
background-position-x: center;
/* Valeurs proportionnelles */
/* Type <percentage> */
background-position-x: 25%;
/* Valeurs de longueur */
/* Type <length> */
background-position-x: 0px;
background-position-x: 1cm;
background-position-x: 8em;
/* Déclaration indiquant un décalage */
/* relatif à un des côtés de la boîte */
background-position-x: right 3px;
/* Gestion de plusieurs valeurs */
/* pour plusieurs arrières-plan */
background-position-x: 0px, center;
/* Valeurs globales */
background-position-x: inherit;
background-position-x: initial;
background-position-x: unset;
```
### Valeurs
- `left`
- : Le bord gauche de l'image d'arrière-plan est aligné avec le bord gauche de la zone dédiée à l'arrière-plan.
- `center`
- : L'image d'arrière-plan est centrée horizontalement par rapport à la zone dédiée à l'arrière-plan.
- `right`
- : Le côté droit de l'image d'arrière-plan est aligné avec le côté droit de la zone dédiée à l'arrière-plan.
- `<length>`
- : Une valeur de longueur (type {{cssxref("<length>")}}) qui définit le décalage horizontal de l'arrière-plan correspondant par rapport à un bord vertical de la zone d'arrière-plan. Si aucun côté n'est indiqué, l'écart fera référence au côté gauche.
- `<percentage>`
- : Une valeur en pourcentages (type {{cssxref("<percentage>")}}) qui définit le décalage horizontal de l'arrière-plan correspondant par rapport à un bord vertical de la zone d'arrière-plan, proportionnellement à la largeur de la zone. Si aucun côté n'est indiqué, l'écart fera référence au côté gauche.
### Syntaxe formelle
{{csssyntax}}
## Spécifications
| Spécification | État | Commentaires |
| ------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| {{SpecName('CSS4 Backgrounds', '#background-position-longhands', 'background-position-x')}} | {{Spec2('CSS4 Backgrounds')}} | Spécification initiale pour les propriétés détaillées de {{cssxref("background-position")}}, implémentée depuis longtemps. |
{{cssinfo}}
## Compatibilité des navigateurs
{{Compat("css.properties.background-position-x")}}
## Voir aussi
- {{cssxref("background-position")}}
- {{cssxref("background-position-y")}}
- {{cssxref("background-position-inline")}}
- {{cssxref("background-position-block")}}
- [Manipuler plusieurs arrière-plans](/fr/docs/Web/CSS/CSS_Backgrounds_and_Borders/Using_multiple_backgrounds)
|