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/margin-inline-start/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/margin-inline-start/index.html')
-rw-r--r-- | files/fr/web/css/margin-inline-start/index.html | 110 |
1 files changed, 0 insertions, 110 deletions
diff --git a/files/fr/web/css/margin-inline-start/index.html b/files/fr/web/css/margin-inline-start/index.html deleted file mode 100644 index 4a72562316..0000000000 --- a/files/fr/web/css/margin-inline-start/index.html +++ /dev/null @@ -1,110 +0,0 @@ ---- -title: margin-inline-start -slug: Web/CSS/margin-inline-start -tags: - - CSS - - Experimental - - Propriété - - Reference -translation_of: Web/CSS/margin-inline-start ---- -<div>{{CSSRef}}{{SeeCompatTable}}</div> - -<p>La propriété <strong><code>margin-inline-start</code></strong> définit la marge logique appliquée au début des éléments en ligne, selon le mode d'écriture, la directionalité et l'orientation du texte. Selon les valeurs utilisées pour {{cssxref("writing-mode")}}, {{cssxref("direction")}}, and {{cssxref("text-orientation")}}, elle peut correspondre à {{cssxref("margin-top")}}, {{cssxref("margin-right")}}, {{cssxref("margin-bottom")}} ou {{cssxref("margin-left")}}.</p> - -<div>{{EmbedInteractiveExample("pages/css/margin-inline-start.html")}}</div> - -<p>Cette propriété est à rapprocher de {{cssxref("margin-block-start")}}, {{cssxref("margin-block-end")}} et de {{cssxref("margin-inline-end")}} qui définissent les autres marges appliquées à l'élément.</p> - -<h2 id="Syntaxe">Syntaxe</h2> - -<pre class="brush:css no-line-numbers">/* Valeurs de longueur */ -/* Type <length> */ -margin-inline-start: 10px; /* Une longueur absolue */ -margin-inline-start: 1em; /* Une longueur relative à la taille du texte */ -margin-inline-start: 5%; /* Une largeur relative à la - largeur du bloc englobant */ - -/* Valeurs avec un mot-clé */ -margin-inline-start: auto; - -/* Valeurs globales */ -margin-inline-start: inherit; -</pre> - -<h3 id="Valeurs">Valeurs</h3> - -<p>La propriété <code>margin-inline-start</code> peut prendre les mêmes valeurs que la propriété {{cssxref("margin-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; -} - -.exemple { - writing-mode: vertical-lr; - margin-inline-start: 20px; - background-color: #c8c800; -}</pre> - -<h3 id="HTML">HTML</h3> - -<pre class="brush: html"><div> - <p class="exemple">Texte d'exemple</p> -</div> -</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-margin-inline-start", "margin-inline-start")}}</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.margin-inline-start")}}</p> - -<h2 id="Voir_aussi">Voir aussi</h2> - -<ul> - <li>Les propriétés physiques correspondantes : - <ul> - <li>{{cssxref("margin-top")}},</li> - <li>{{cssxref("margin-right")}},</li> - <li>{{cssxref("margin-bottom")}}</li> - <li>{{cssxref("margin-left")}}</li> - </ul> - </li> - <li>{{cssxref("margin-inline-end")}}</li> - <li>{{cssxref("writing-mode")}}</li> - <li>{{cssxref("direction")}}</li> - <li>{{cssxref("text-orientation")}}</li> -</ul> |