diff options
author | julieng <julien.gattelier@gmail.com> | 2021-09-17 20:58:15 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-12 07:57:33 +0200 |
commit | 149319bb8c7b1394a443f0877c3460cd362aa815 (patch) | |
tree | d534abb0cbc87d5e224836e9d6b888aa58564aa0 /files/fr/web/css/outline-offset/index.html | |
parent | eb9de0363cb273b54d3f5402bbf4e3bc03c60971 (diff) | |
download | translated-content-149319bb8c7b1394a443f0877c3460cd362aa815.tar.gz translated-content-149319bb8c7b1394a443f0877c3460cd362aa815.tar.bz2 translated-content-149319bb8c7b1394a443f0877c3460cd362aa815.zip |
move *.html to *.md
Diffstat (limited to 'files/fr/web/css/outline-offset/index.html')
-rw-r--r-- | files/fr/web/css/outline-offset/index.html | 90 |
1 files changed, 0 insertions, 90 deletions
diff --git a/files/fr/web/css/outline-offset/index.html b/files/fr/web/css/outline-offset/index.html deleted file mode 100644 index 98bcb9014e..0000000000 --- a/files/fr/web/css/outline-offset/index.html +++ /dev/null @@ -1,90 +0,0 @@ ---- -title: outline-offset -slug: Web/CSS/outline-offset -tags: - - CSS - - Propriété - - Reference -translation_of: Web/CSS/outline-offset ---- -<div>{{CSSRef}}</div> - -<p>La propriété <strong><code>outline-offset</code></strong> définit l'espace qu'il y a entre la bordure dessinée par {{cssxref("outline")}} et le bord de <a href="/fr/Apprendre/CSS/Les_bases/Le_modèle_de_boîte">la boîte de bordure</a> d'un élément. Cet espace est transparent et la couleur visible en arrière-plan sera déterminée par l'élément parent.</p> - -<div>{{EmbedInteractiveExample("pages/css/outline-offset.html")}}</div> - -<h2 id="Syntaxe">Syntaxe</h2> - -<pre class="brush:css no-line-numbers">/* Valeurs de longueur */ -/* Type <length> */ -outline-offset: 3px; -outline-offset: 0.2em; - -/* Valeurs globales */ -outline-offset: inherit; -outline-offset: initial; -outline-offset: unset; -</pre> - -<h3 id="Valeurs">Valeurs</h3> - -<dl> - <dt><code><length></code></dt> - <dd>La largeur de l'espace, voir la page {{cssxref("<length>")}} pour plus d'informations. Les valeurs négatives sont utilisées et font que la bordure dessinée est dessinée dans l'élément.</dd> -</dl> - -<h3 id="Syntaxe_formelle">Syntaxe formelle</h3> - -{{csssyntax}} - -<h2 id="Exemples">Exemples</h2> - -<h3 id="CSS">CSS</h3> - -<pre class="brush: css">.exemple { - outline: 1px dashed red; - /* On décale la ligne de 10px */ - outline-offset: 10px; - background: yellow; - margin: 15px; - border: 1px solid black; -} -</pre> - -<h3 id="HTML">HTML</h3> - -<pre class="brush: html"><p class="exemple">La bordure est décalée<p></pre> - -<h3 id="Résultat">Résultat</h3> - -<p>{{EmbedLiveSample('Exemples')}}</p> - -<h2 id="Spécifications">Spécifications</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">Spécification</th> - <th scope="col">Statut</th> - <th scope="col">Commentaires</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName('CSS3 Transitions', '#animatable-css', 'outline-offset')}}</td> - <td>{{Spec2('CSS3 Transitions')}}</td> - <td><code>outline-offset</code> peut désormais être animée.</td> - </tr> - <tr> - <td>{{SpecName('CSS3 Basic UI', '#outline-offset', 'outline-offset')}}</td> - <td>{{Spec2('CSS3 Basic UI')}}</td> - <td>Définition initiale.</td> - </tr> - </tbody> -</table> - -<p>{{cssinfo}}</p> - -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> - -<p>{{Compat("css.properties.outline-offset")}}</p> |