blob: e9a1286b353033c97e255b6d477534ed77b9adaa (
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
|
---
title: background-origin
slug: Web/CSS/background-origin
tags:
- CSS
- Propriété
- Reference
translation_of: Web/CSS/background-origin
---
{{CSSRef}}
La propriété **`background-origin`** détermine l'origine de l'arrière-plan {{cssxref("background-image")}} à partir de la bordure, à l'intérieur de la bordure ou à l'intérieur de la zone de remplissage (_padding_).
{{EmbedInteractiveExample("pages/css/background-origin.html")}}
Attention, `background-origin` est ignorée lorsque {{cssxref("background-attachment")}} vaut `fixed`.
> **Note :** Cette propriété est rattachée à la propriété raccourcie {{cssxref("background")}}. Aussi, si on a une déclaration `background-origin` avant la propriété raccourcie et que cette dernière ne définit pas la valeur de l'origine, ce sera la valeur initiale par défaut qui sera prise en compte pour `background-origin`.
## Syntaxe
```css
/* Valeurs avec un mot-clé */
background-origin: border-box;
background-origin: padding-box;
background-origin: content-box;
/* Valeurs globales */
background-origin: inherit;
background-origin: initial;
background-origin: unset;
```
### Valeurs
- `border-box`
- : L'arrière-plan est positionné relativement à la boîte de bordure.
- `padding-box`
- : L'arrière-plan est positionné relativement à la boîte de remplissage (_padding_).
- `content-box`
- : L'arrière-plan est positionné relativement à la boîte de contenu.
### Syntaxe formelle
{{csssyntax}}
## Exemples
### CSS
```css
div {
width: 200px;
height: 100px;
}
.exemple {
border: 10px double;
padding: 10px;
background-image: url(https://mdn.mozillademos.org/files/12988/p_201.jpg);
background-color: palegreen;
background-position: 0px 40px;
background-origin: content-box;
background-repeat: no-repeat;
}
```
### HTML
```html
<div class="exemple"></div>
```
### Résultat
{{EmbedLiveSample("Exemples","300","200")}}
## Spécifications
| Spécification | État | Commentaires |
| -------------------------------------------------------------------------------------------------------- | ---------------------------------------- | -------------------- |
| {{SpecName('CSS3 Backgrounds', '#the-background-origin', 'background-origin')}} | {{Spec2('CSS3 Backgrounds')}} | Définition initiale. |
{{cssinfo}}
## Compatibilité des navigateurs
{{Compat("css.properties.background-origin")}}
## Voir aussi
- {{cssxref("background-clip")}}
|