diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/fr/web/css/background-clip | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/fr/web/css/background-clip')
-rw-r--r-- | files/fr/web/css/background-clip/index.html | 151 |
1 files changed, 151 insertions, 0 deletions
diff --git a/files/fr/web/css/background-clip/index.html b/files/fr/web/css/background-clip/index.html new file mode 100644 index 0000000000..9b8e6c5426 --- /dev/null +++ b/files/fr/web/css/background-clip/index.html @@ -0,0 +1,151 @@ +--- +title: background-clip +slug: Web/CSS/background-clip +tags: + - CSS + - Propriété + - Reference +translation_of: Web/CSS/background-clip +--- +<div>{{CSSRef}}</div> + +<p>La propriété <strong><code>background-clip</code></strong> définit la façon dont l'arrière-plan d'un élément (que ce soit l'image ou la couleur) s'étend sous la boîte de bordure, la boîte de remplissage (<em>padding</em>) ou la boîte de contenu.</p> + +<div>{{EmbedInteractiveExample("pages/css/background-clip.html")}}</div> + +<p class="hidden">Le code source de cet exemple interactif est disponible dans un dépôt GitHub. Si vous souhaitez contribuez à ces exemples, n'hésitez pas à cloner <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> et à envoyer une <em>pull request</em> !</p> + +<p>Si aucune image ({{cssxref("background-image")}}) ni couleur ({{cssxref("background-color")}}) d'arrière-plan n'est définie, cette propriété aura uniquement un effet visuel lorsque la bordure possède des régions transparentes (via {{cssxref("border-style")}} ou {{cssxref("border-image")}}). Dans les autres cas, la bordure recouvrira la zone où se situera la différence .</p> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="brush:css no-line-numbers">/* Valeurs utilisant un mot-clé */ +background-clip: border-box; +background-clip: padding-box; +background-clip: content-box; +background-clip: text; + +/* Valeurs globales */ +background-clip: inherit; +background-clip: initial; +background-clip: unset; +</pre> + +<h3 id="Valeurs">Valeurs</h3> + +<dl> + <dt><code>border-box</code></dt> + <dd>L'arrière-plan s'étend jusqu'à la limite externe de la bordure. L'arrière-plan sera situé sous la bordure en termes d'ordre z.</dd> + <dt><code>padding-box</code></dt> + <dd>Aucun arrière-plan n'est dessiné dans la boîte de bordure. L'arrière-plan s'étend jusqu'à la limite de la boîte de remplissage (<em>padding</em>).</dd> + <dt><code>content-box</code></dt> + <dd>L'arrière-plan est limité (rogné) à la boîte de contenu.</dd> + <dt><code>text</code> {{experimental_inline}}</dt> + <dd>L'arrière-plan est limité (rogné) au texte en premier plan.</dd> +</dl> + +<h3 id="Syntaxe_formelle">Syntaxe formelle</h3> + +<pre class="syntaxbox">{{csssyntax}}</pre> + +<h2 id="Exemples">Exemples</h2> + +<h3 id="CSS">CSS</h3> + +<pre class="brush: css">p { + border: 10px navy; + border-style: dotted double; + margin: 1em; + padding: 2em; + background: #F8D575; + font: 900 1.2em sans-serif; + text-decoration: underline; +} + +.border-box { + background-clip: border-box; +} + +.padding-box { + background-clip: padding-box; +} + +.content-box { + background-clip: content-box; +} + +.text { + background-clip: text; + color: rgba(0,0,0,.2); +} +</pre> + +<h3 id="HTML">HTML</h3> + +<pre class="brush: html"><p class="border-box"> + L'arrière-plan s'étend sous la bordure. +</p> +<p class="padding-box"> + L'arrière-plan s'étend jusqu'avant la + bordure. +</p> +<p class="content-box"> + L'arrière-plan s'arrête à la boîte de + contenu. +</p> +<p class="text"> + L'arrière-plan se limite au texte au + premier-plan. +</p> +</pre> + +<h3 id="Résultat">Résultat</h3> + +<p>{{EmbedLiveSample('Exemples', 600, 580)}}</p> + +<h2 id="Spécifications">Spécifications</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Spécification</th> + <th scope="col">État</th> + <th scope="col">Commentaires</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('CSS3 Backgrounds', '#the-background-clip', 'background-clip')}}</td> + <td>{{Spec2('CSS3 Backgrounds')}}</td> + <td>Définition initiale.</td> + </tr> + <tr> + <td>{{SpecName('CSS4 Backgrounds', '#background-clip', 'background-clip')}}</td> + <td>{{Spec2('CSS4 Backgrounds')}}</td> + <td>Ajout de la valeur <code>text</code>.</td> + </tr> + </tbody> +</table> + +<p>{{cssinfo}}</p> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p class="hidden">Les données de compatibilité présentées sur cette page ont été générées à partir de données organisées. Ces données sont présentes sur le dépôt GitHub <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>, n'hésitez pas à contribuer en proposant vos<em>pull request</em>.</p> + +<p>{{Compat("css.properties.background-clip")}}</p> + +<h2 id="Voir_aussi">Voir aussi</h2> + +<ul> + <li>{{cssxref("clip-path")}}</li> + <li>Les propriétés relatives à l'arrière-plan : + <ul> + <li>{{cssxref("background")}}</li> + <li>{{cssxref("background-color")}}</li> + <li>{{cssxref("background-image")}}</li> + <li>{{cssxref("background-origin")}}</li> + </ul> + </li> + <li><a href="/fr/Apprendre/CSS/Les_bases/Le_modèle_de_boîte">Le modèle de boîtes CSS</a></li> +</ul> |