aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/css/padding-block/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/padding-block/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/padding-block/index.html')
-rw-r--r--files/fr/web/css/padding-block/index.html114
1 files changed, 0 insertions, 114 deletions
diff --git a/files/fr/web/css/padding-block/index.html b/files/fr/web/css/padding-block/index.html
deleted file mode 100644
index 83456aa210..0000000000
--- a/files/fr/web/css/padding-block/index.html
+++ /dev/null
@@ -1,114 +0,0 @@
----
-title: padding-block
-slug: Web/CSS/padding-block
-tags:
- - CSS
- - Experimental
- - Propriété
- - Propriété logique
- - Reference
-translation_of: Web/CSS/padding-block
----
-<div>{{CSSRef}}{{SeeCompatTable}}</div>
-
-<p>La propriété <strong><code>padding-block</code></strong> définit l'espace de remplissage (<em>padding</em>) pour le début et la fin de l'axe de bloc de l'élément. Cette propriété logique peut correspondre à différentes propriétés physiques selon le mode d'écriture de l'élément, sa direction et l'orientation du texte. Autrement dit, cette propriété peut correspondre aux propriétés {{cssxref("padding-top")}} et  {{cssxref("padding-bottom")}} ou à {{cssxref("padding-right")}} et {{cssxref("padding-left")}} selon les valeurs des propriétés {{cssxref("writing-mode")}}, {{cssxref("direction")}} et {{cssxref("text-orientation")}}.</p>
-
-<pre class="brush:css no-line-numbers">/* Valeurs de longueur */
-/* Type &lt;length&gt; */
-padding-block: 10px 20px; /* Des longueurs absolues */
-padding-block: 1em 2em; /* Des longueurs relatives à la taille du texte */
-padding-block: 5% 2%; /* Des longueurs relatives à la taille du bloc englobant */
-padding-block: 10px; /* Une seule valeur définit le remplissage des deux côtés */
-
-/* Valeurs avec un mot-clé */
-padding-block: auto;
-
-/* Valeurs globales */
-padding-block: inherit;
-padding-block: initial;
-padding-block: unset;
-</pre>
-
-<p>Ces valeurs peuvent être définies individuellement grâce aux propriétés détaillées {{cssxref("padding-block-start")}} et {{cssxref("padding-block-end")}}. Pour définir le remplissage sur l'axe en ligne, on pourra utiliser la propriété logique raccourcie {{cssxref("padding-inline")}} qui définit {{cssxref("padding-inline-start")}} et {{cssxref("padding-inline-end")}}.</p>
-
-<h2 id="Syntaxe">Syntaxe</h2>
-
-<h3 id="Valeur">Valeur</h3>
-
-<p>La propriété <code>padding-block</code> peut prendre les mêmes valeurs que la propriété {{cssxref("padding-left")}}.</p>
-
-<h3 id="Syntaxe_formelle">Syntaxe formelle</h3>
-
-{{csssyntax}}
-
-<h2 id="Exemples">Exemples</h2>
-
-<h3 id="CSS">CSS</h3>
-
-<pre class="brush: css">div {
- background-color: yellow;
- width: 120px;
- height: 120px;
-}
-
-.texteExemple {
- writing-mode: vertical-rl;
- padding-block: 20px 40px;
- background-color: #c8c800;
-}</pre>
-
-<h3 id="HTML">HTML</h3>
-
-<pre class="brush: html">&lt;div&gt;
- &lt;p class="texteExemple"&gt;Texte d'exemple&lt;/p&gt;
-&lt;/div&gt;
-</pre>
-
-<h3 id="Résultat">Résultat</h3>
-
-<p>{{EmbedLiveSample("Exemples", 140, 140)}}</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("CSS Logical Properties", "#propdef-padding-block", "padding-block")}}</td>
- <td>{{Spec2("CSS Logical Properties")}}</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.padding-block")}}</p>
-
-<h2 id="Voir_aussi">Voir aussi</h2>
-
-<ul>
- <li>Les propriétés physiques correspondantes :
- <ul>
- <li>{{cssxref("padding-top")}},</li>
- <li>{{cssxref("padding-right")}},</li>
- <li>{{cssxref("padding-bottom")}},</li>
- <li>{{cssxref("padding-left")}}</li>
- </ul>
- </li>
- <li>Les propriétés influençant les propriétés logiques :
- <ul>
- <li>{{cssxref("writing-mode")}},</li>
- <li>{{cssxref("direction")}},</li>
- <li>{{cssxref("text-orientation")}}</li>
- </ul>
- </li>
-</ul>