aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/css/-webkit-mask-attachment/index.html
diff options
context:
space:
mode:
authorjulieng <julien.gattelier@gmail.com>2021-09-17 20:58:15 +0200
committerSphinxKnight <SphinxKnight@users.noreply.github.com>2021-10-12 07:57:33 +0200
commit149319bb8c7b1394a443f0877c3460cd362aa815 (patch)
treed534abb0cbc87d5e224836e9d6b888aa58564aa0 /files/fr/web/css/-webkit-mask-attachment/index.html
parenteb9de0363cb273b54d3f5402bbf4e3bc03c60971 (diff)
downloadtranslated-content-149319bb8c7b1394a443f0877c3460cd362aa815.tar.gz
translated-content-149319bb8c7b1394a443f0877c3460cd362aa815.tar.bz2
translated-content-149319bb8c7b1394a443f0877c3460cd362aa815.zip
move *.html to *.md
Diffstat (limited to 'files/fr/web/css/-webkit-mask-attachment/index.html')
-rw-r--r--files/fr/web/css/-webkit-mask-attachment/index.html73
1 files changed, 0 insertions, 73 deletions
diff --git a/files/fr/web/css/-webkit-mask-attachment/index.html b/files/fr/web/css/-webkit-mask-attachment/index.html
deleted file mode 100644
index f278d89b0f..0000000000
--- a/files/fr/web/css/-webkit-mask-attachment/index.html
+++ /dev/null
@@ -1,73 +0,0 @@
----
-title: '-webkit-mask-attachment'
-slug: Web/CSS/-webkit-mask-attachment
-tags:
- - CSS
- - Non-standard
- - Propriété
- - Reference
-translation_of: Web/CSS/-webkit-mask-attachment
----
-<div>{{CSSRef}}{{Non-standard_header}}</div>
-
-<p>Si la propriété {{cssxref("-webkit-mask-image")}} est définie, <strong><code>-webkit-mask-attachment</code></strong> permet de déterminer si la position de l'image est fixe par rapport à la zone d'affichage ou si elle défile avec le bloc qui l'englobe.</p>
-
-<pre class="brush: css no-line-numbers">/* Valeurs avec un mot-clé */
--webkit-mask-attachment: scroll;
--webkit-mask-attachment: fixed;
--webkit-mask-attachment: local;
-
-/* Valeurs multiples */
--webkit-mask-attachment: scroll, local;
--webkit-mask-attachment: fixed, local, scroll;
-
-/* Valeurs globales */
--webkit-mask-attachment: inherit;
--webkit-mask-attachment: initial;
--webkit-mask-attachment: unset;
-</pre>
-
-<h2 id="Syntaxe">Syntaxe</h2>
-
-<h3 id="Valeurs">Valeurs</h3>
-
-<dl>
- <dt><code>scroll</code></dt>
- <dd>Si le mot-clé <code>scroll</code> est utilisé, l'image de masque défilera avec le bloc qui l'englobe.</dd>
- <dt><code>fixed</code></dt>
- <dd>Si le mot-clé <code>fixed</code> est utilisé, l'image de masque ne défilera pas. Sa position sera fixe pour la zone d'affichag (<em>viewport</em>).</dd>
-</dl>
-
-<h3 id="Syntaxe_formelle">Syntaxe formelle</h3>
-
-{{csssyntax}}
-
-<h2 id="Exemples">Exemples</h2>
-
-<pre class="brush: css">body {
- -webkit-mask-image: url('images/mask.png');
- -webkit-mask-attachment: fixed;
-}
-</pre>
-
-<h2 id="Spécifications">Spécifications</h2>
-
-<p>Cette propriété est une propriété propriétaire liée à WebKit/Blink et ne fait partie d'aucune spécification.</p>
-
-<p>{{cssinfo}}</p>
-
-<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
-
-<p>{{Compat("css.properties.-webkit-mask-attachment")}}</p>
-
-<h2 id="Voir_aussi">Voir aussi</h2>
-
-<ul>
- <li>{{cssxref("-webkit-mask")}}</li>
- <li>{{cssxref("-webkit-mask-clip")}}</li>
- <li>{{cssxref("-webkit-mask-box-image")}}</li>
- <li>{{cssxref("-webkit-mask-origin")}}</li>
- <li>{{cssxref("-webkit-mask-image")}}</li>
- <li>{{cssxref("-webkit-mask-composite")}}</li>
- <li>{{cssxref("-webkit-mask-repeat")}}</li>
-</ul>