aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/css/outline-width/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/outline-width/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/outline-width/index.html')
-rw-r--r--files/fr/web/css/outline-width/index.html131
1 files changed, 0 insertions, 131 deletions
diff --git a/files/fr/web/css/outline-width/index.html b/files/fr/web/css/outline-width/index.html
deleted file mode 100644
index b0a97a057c..0000000000
--- a/files/fr/web/css/outline-width/index.html
+++ /dev/null
@@ -1,131 +0,0 @@
----
-title: outline-width
-slug: Web/CSS/outline-width
-tags:
- - CSS
- - Propriété
- - Reference
-translation_of: Web/CSS/outline-width
----
-<div>{{CSSRef}}</div>
-
-<p>La propriété CSS <strong><code>outline-width</code></strong> est utilisée afin de définir l'épaisseur de la bordure (<em>outline</em>) d'un élément. Cette bordure est dessinée autour des éléments et délimite <a href="/fr/Apprendre/CSS/Les_bases/Le_modèle_de_boîte">la boîte de bordure</a>. Visuellement, cela permet de faire ressortir l'élément.</p>
-
-<div>{{EmbedInteractiveExample("pages/css/outline-width.html")}}</div>
-
-<h2 id="Syntaxe">Syntaxe</h2>
-
-<pre class="brush:css no-line-numbers">/* Valeurs avec un mot clé */
-outline-width: thin;
-outline-width: medium;
-outline-width: thick;
-
-/* Valeurs de longueur */
-/* Type &lt;length&gt; */
-outline-width: 1px;
-outline-width: 0.1em;
-
-/* Valeurs globales */
-outline-width: inherit;
-</pre>
-
-<h3 id="Valeurs">Valeurs</h3>
-
-<dl>
- <dt><code>thin</code></dt>
- <dd>La largeur appliquée dépendra de l'agent utilisateur. On attend une largeur fine. Généralement, pour les navigateurs de bureau comme Firefox, cela correspondra à <code>1px</code>.</dd>
- <dt><code>medium</code></dt>
- <dd>La largeur appliquée dépendra de l'agent utilisateur. On attend une largeur moyenne. Généralement, pour les navigateurs de bureau comme Firefox, cela correspondra à <code>3px</code>.</dd>
- <dt><code>thick</code></dt>
- <dd>La largeur appliquée dépendra de l'agent utilisateur. On attend une largeur de trait prononcée. Généralement, pour les navigateurs de bureau comme Firefox, cela correspondra à <code>5px</code>.</dd>
- <dt><code>&lt;length&gt;</code></dt>
- <dd>Voir la page sur le type {{cssxref("&lt;length&gt;")}} pour les différentes valeurs correspondantes.</dd>
-</dl>
-
-<h3 id="Syntaxe_formelle">Syntaxe formelle</h3>
-
-{{csssyntax}}
-
-<h2 id="Exemples">Exemples</h2>
-
-<h3 id="HTML">HTML</h3>
-
-<pre class="brush: html">&lt;span id="thin"&gt;thin&lt;/span&gt;
-&lt;span id="medium"&gt;medium&lt;/span&gt;
-&lt;span id="thick"&gt;thick&lt;/span&gt;
-&lt;span id="deuxpixels"&gt;2px&lt;/span&gt;
-&lt;span id="unex"&gt;1ex&lt;/span&gt;
-&lt;span id="deuxem"&gt;2em&lt;/span&gt;
-</pre>
-
-<h3 id="CSS">CSS</h3>
-
-<pre class="brush: css">span {
- outline-style: solid;
- display: inline-block;
- margin: 20px;
-}
-
-#thin {
- outline-width: thin;
-}
-
-#medium {
- outline-width: medium;
-}
-
-#thick {
- outline-width: thick;
-}
-
-#deuxpixels {
- outline-width: 2px;
-}
-
-#unex {
- outline-width: 1ex;
-}
-
-#deuxem {
- outline-width: 2em;
-}
-</pre>
-
-<h3 id="Résultat">Résultat</h3>
-
-<p>{{EmbedLiveSample('Exemples', '100%', '80')}}</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 Basic UI', '#outline-width', 'outline-width')}}</td>
- <td>{{Spec2('CSS3 Basic UI')}}</td>
- <td>Aucun changement</td>
- </tr>
- <tr>
- <td>{{SpecName('CSS3 Transitions', '#animatable-css', 'outline-width')}}</td>
- <td>{{Spec2('CSS3 Transitions')}}</td>
- <td><code>outline-width</code> peut désormais être animée.</td>
- </tr>
- <tr>
- <td>{{SpecName('CSS2.1', 'ui.html#propdef-outline-width', 'outline-width')}}</td>
- <td>{{Spec2('CSS2.1')}}</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-width")}}</p>