diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/fr/web/css/hanging-punctuation | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/fr/web/css/hanging-punctuation')
-rw-r--r-- | files/fr/web/css/hanging-punctuation/index.html | 129 |
1 files changed, 129 insertions, 0 deletions
diff --git a/files/fr/web/css/hanging-punctuation/index.html b/files/fr/web/css/hanging-punctuation/index.html new file mode 100644 index 0000000000..7380231a60 --- /dev/null +++ b/files/fr/web/css/hanging-punctuation/index.html @@ -0,0 +1,129 @@ +--- +title: hanging-punctuation +slug: Web/CSS/hanging-punctuation +tags: + - CSS + - Experimental + - Propriété + - Reference +translation_of: Web/CSS/hanging-punctuation +--- +<div>{{CSSRef}}{{SeeCompatTable}}</div> + +<p>La propriété <strong><code>hanging-punctuation</code></strong> indique si un signe de ponctuation se situant au début ou à la fin d'une ligne de texte doit rester sur cette ligne, quitte à sortir de la boîte qui représente la ligne.</p> + +<pre class="brush:css no-line-numbers">/* Valeurs avec un mot-clé */ +hanging-punctuation: none; +hanging-punctuation: first; +hanging-punctuation: last; +hanging-punctuation: force-end; +hanging-punctuation: allow-end; + +/* Valeurs avec deux mots-clés */ +hanging-punctuation: first force-end; +hanging-punctuation: first allow-end; +hanging-punctuation: first last; +hanging-punctuation: last force-end; +hanging-punctuation: last allow-end; + +/* Valeurs avec trois mots-clés */ +hanging-punctuation: first force-end last; +hanging-punctuation: first allow-end last; + +/* Valeurs globales */ +hanging-punctuation: inherit; +hanging-punctuation: initial; +hanging-punctuation: unset; +</pre> + +<h2 id="Syntaxe">Syntaxe</h2> + +<p>Cette propriété peut être définie grâce à une, deux ou trois valeurs :</p> + +<ul> + <li>Avec une valeur : on utilisera l'un des mots-clés de la liste ci-après</li> + <li>Avec deux valeurs : + <ul> + <li>le mot-clé <code>first</code> avec un des mots-clés parmi : <code>last</code>, <code>allow-end</code> ou <code>force-end</code></li> + <li>ou le mot-clé <code>last</code> avec un des mots-clés parmi : <code>last</code>, <code>allow-end</code> ou <code>force-end</code></li> + </ul> + </li> + <li>Avec trois valeurs : + <ul> + <li><code>first</code>, <code>allow-end</code> et <code>last</code></li> + <li>ou <code>first</code>, <code>force-end</code> et <code>last</code></li> + </ul> + </li> +</ul> + +<h3 id="Valeurs">Valeurs</h3> + +<dl> + <dt><code>none</code></dt> + <dd>Aucun caractère ne reste suspendu sur la ligne.</dd> + <dt><code>first</code></dt> + <dd>Une parenthèse ou des guillemets ouvrants au début de la première ligne d'un texte restent sur la ligne.</dd> + <dt><code>last</code></dt> + <dd>Une parenthèse ou des guillemets fermants à la fin de la dernière ligne d'un texte restent sur la ligne.</dd> + <dt><code>force-end</code></dt> + <dd>Un point ou une virgule en fin de ligne restera sur cette ligne.</dd> + <dt><code>allow-end</code></dt> + <dd>Un point ou une virgule en fin de ligne restera sur cette ligne si la justification du texte ne laisse pas l'espace nécessaire.</dd> +</dl> + +<h3 id="Syntaxe_formelle">Syntaxe formelle</h3> + +<pre class="syntaxbox">{{csssyntax}}</pre> + +<h2 id="Exemples">Exemples</h2> + +<h3 id="HTML">HTML</h3> + +<pre class="brush: html"><p> + Lorem ipsum dolor sit amet, consectetur + adipiscing elit. Curabitur dignissim nunc + mauris, et sollicitudin est scelerisque + sed. Praesent laoreet tortor massa, sit + amet vulputate nulla pharetra ut. Proin + ornare commodo sodales. Class aptent + taciti sociosqu ad litora torquent per + conubia nostra, per inceptos himenaeos. +</p></pre> + +<h3 id="CSS">CSS</h3> + +<pre class="brush: css">p { + hanging-punctuation: first; + margin: .5rem; +}</pre> + +<h3 id="Résultat">Résultat</h3> + +<p>{{EmbedLiveSample('Exemple')}}</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 Text', '#hanging-punctuation-property', 'hanging-punctuation')}}</td> + <td>{{Spec2('CSS3 Text')}}</td> + <td>Définition initiale.</td> + </tr> + </tbody> +</table> + +<p>{{cssinfo}}</p> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<div class="hidden">Le tableau de compatibilité de cette page a été généré à partir de données structurées. Si vous souhaitez contribuer à ces données, n'hésitez pas à consulter <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> et à nous envoyer une <em>pull request</em>.</div> + +<p>{{Compat("css.properties.hanging-punctuation")}}</p> |