diff options
author | julieng <julien.gattelier@gmail.com> | 2021-09-17 20:59:20 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-12 07:57:33 +0200 |
commit | 258ba7b4be62d8640477a3bd3146d08b00cb70ec (patch) | |
tree | a8476eee4c369ff47bdfe08353774414f2281ba3 /files/fr/web/css/word-spacing | |
parent | 149319bb8c7b1394a443f0877c3460cd362aa815 (diff) | |
download | translated-content-258ba7b4be62d8640477a3bd3146d08b00cb70ec.tar.gz translated-content-258ba7b4be62d8640477a3bd3146d08b00cb70ec.tar.bz2 translated-content-258ba7b4be62d8640477a3bd3146d08b00cb70ec.zip |
convert content to md
Diffstat (limited to 'files/fr/web/css/word-spacing')
-rw-r--r-- | files/fr/web/css/word-spacing/index.md | 136 |
1 files changed, 55 insertions, 81 deletions
diff --git a/files/fr/web/css/word-spacing/index.md b/files/fr/web/css/word-spacing/index.md index a65e58038f..4c4199577d 100644 --- a/files/fr/web/css/word-spacing/index.md +++ b/files/fr/web/css/word-spacing/index.md @@ -7,24 +7,25 @@ tags: - Reference translation_of: Web/CSS/word-spacing --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p>La propriété <strong><code>word-spacing</code></strong> définit la règle d'espacement utilisée entre les balises et entre les mots.</p> +La propriété **`word-spacing`** définit la règle d'espacement utilisée entre les balises et entre les mots. -<div>{{EmbedInteractiveExample("pages/css/word-spacing.html")}}</div> +{{EmbedInteractiveExample("pages/css/word-spacing.html")}} -<h2 id="Syntaxe">Syntaxe</h2> +## Syntaxe -<pre class="brush:css no-line-numbers">/* Avec un mot-clé */ +```css +/* Avec un mot-clé */ word-spacing: normal; /* Valeurs de longueur */ -/* type <length> */ +/* type <length> */ word-spacing: 3px; word-spacing: 0.3em; /* Valeurs en pourcentages */ -/* type <percentage> */ +/* type <percentage> */ word-spacing: 50%; word-spacing: 200%; @@ -32,93 +33,66 @@ word-spacing: 200%; word-spacing: inherit; word-spacing: initial; word-spacing: unset; -</pre> +``` -<h3 id="Valeurs">Valeurs</h3> +### Valeurs -<dl> - <dt><code>normal</code></dt> - <dd>L'espace normale entre les mots (ou inter-mot), tel qu'il est défini par la police courante et/ou le navigateur.</dd> - <dt><code><length></code></dt> - <dd>Une valeur de longueur définit l'espace qu'on ajoute à l'inter-mot intrinsèque défini par la police. Voir {{cssxref("<length>")}} pour les différentes valeurs et unités possibles.</dd> - <dt><code><percentage></code></dt> - <dd>Une valeur en pourcentages définit la taille de l'inter-mot à utiliser par rapport à la position du prochain caractère (si on utilise <code>-100%</code>, l'espace sera nul et si on utilise <code>100%</code>, il sera doublé). Voir {{cssxref("<percentage>")}} pour les différentes valeurs et unités possibles.</dd> -</dl> +- `normal` + - : L'espace normale entre les mots (ou inter-mot), tel qu'il est défini par la police courante et/ou le navigateur. +- `<length>` + - : Une valeur de longueur définit l'espace qu'on ajoute à l'inter-mot intrinsèque défini par la police. Voir {{cssxref("<length>")}} pour les différentes valeurs et unités possibles. +- `<percentage>` + - : Une valeur en pourcentages définit la taille de l'inter-mot à utiliser par rapport à la position du prochain caractère (si on utilise `-100%`, l'espace sera nul et si on utilise `100%`, il sera doublé). Voir {{cssxref("<percentage>")}} pour les différentes valeurs et unités possibles. -<h3 id="Syntaxe_formelle">Syntaxe formelle</h3> +### Syntaxe formelle {{csssyntax}} -<h2 id="Exemple">Exemple</h2> +## Exemple -<h3 id="HTML">HTML</h3> +### HTML -<pre class="brush: html"><p id="ligne1">Voici le texte de la ligne 1 </p> -<p id="ligne2" >Et voilà celui de la ligne 2 </p> -</pre> +```html +<p id="ligne1">Voici le texte de la ligne 1 </p> +<p id="ligne2" >Et voilà celui de la ligne 2 </p> +``` -<h3 id="CSS">CSS</h3> +### CSS -<pre class="brush: css">#ligne1 { +```css +#ligne1 { word-spacing: 15px; } #ligne2 { word-spacing: 5em; } -</pre> - -<h3 id="Résultat">Résultat</h3> - -<p>{{EmbedLiveSample("Exemple")}}</p> - -<h2 id="Accessibilité">Accessibilité</h2> - -<p>Utiliser des valeurs trop importantes (positives ou négatives) pour <code>word-spacing</code> rend le texte illisible. Si l'espacement utilisé est trop grand, la structure visuelle ne permettra plus d'identifier une phrase. Si l'espacement est trop petit, les mots se chevaucheront et on ne pourra plus distinguer le début et la fin de chaque mot.</p> - -<p>La bonne valeur à utiliser pour <code>word-spacing</code> doit être déterminée au cas par cas, en fonction du type de police utilisé et de la largeur de celle-ci.</p> - -<ul> - <li><a href="/fr/docs/Web/Accessibility/Understanding_WCAG/Perceivable#Guideline_1.4_Make_it_easier_for_users_to_see_and_hear_content_including_separating_foreground_from_background">Comprendre les règles WCAG 1.4</a></li> - <li><a href="https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-visual-presentation.html" rel="noopener">Understanding Success Criterion 1.4.8 - W3C Understanding WCAG 2.0</a></li> -</ul> - -<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', '#propdef-word-spacing', 'word-spacing')}}</td> - <td>{{Spec2('CSS3 Text')}}</td> - <td>Remplace les valeurs précédentes avec une valeur <code><spacing-limit></code> qui définit la même valeur et la valeur <code><percentage></code> et permet d'avoir trois valeurs pour décrire un optimum, un minimum, et un maximum.</td> - </tr> - <tr> - <td>{{SpecName('CSS3 Transitions', '#animatable-css', 'word-spacing')}}</td> - <td>{{Spec2('CSS3 Transitions')}}</td> - <td><code>word-spacing</code> peut désormais être animé.</td> - </tr> - <tr> - <td>{{SpecName('CSS2.1', 'text.html#propdef-word-spacing', 'word-spacing')}}</td> - <td>{{Spec2('CSS2.1')}}</td> - <td>Aucun changement.</td> - </tr> - <tr> - <td>{{SpecName('CSS1', '#word-spacing', 'word-spacing')}}</td> - <td>{{Spec2('CSS1')}}</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.word-spacing")}}</p> +``` + +### Résultat + +{{EmbedLiveSample("Exemple")}} + +## Accessibilité + +Utiliser des valeurs trop importantes (positives ou négatives) pour `word-spacing` rend le texte illisible. Si l'espacement utilisé est trop grand, la structure visuelle ne permettra plus d'identifier une phrase. Si l'espacement est trop petit, les mots se chevaucheront et on ne pourra plus distinguer le début et la fin de chaque mot. + +La bonne valeur à utiliser pour `word-spacing` doit être déterminée au cas par cas, en fonction du type de police utilisé et de la largeur de celle-ci. + +- [Comprendre les règles WCAG 1.4](/fr/docs/Web/Accessibility/Understanding_WCAG/Perceivable#Guideline_1.4_Make_it_easier_for_users_to_see_and_hear_content_including_separating_foreground_from_background) +- [Understanding Success Criterion 1.4.8 - W3C Understanding WCAG 2.0](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-visual-presentation.html) + +## Spécifications + +| Spécification | État | Commentaires | +| ------------------------------------------------------------------------------------------------ | ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| {{SpecName('CSS3 Text', '#propdef-word-spacing', 'word-spacing')}} | {{Spec2('CSS3 Text')}} | Remplace les valeurs précédentes avec une valeur `<spacing-limit>` qui définit la même valeur et la valeur `<percentage>` et permet d'avoir trois valeurs pour décrire un optimum, un minimum, et un maximum. | +| {{SpecName('CSS3 Transitions', '#animatable-css', 'word-spacing')}} | {{Spec2('CSS3 Transitions')}} | `word-spacing` peut désormais être animé. | +| {{SpecName('CSS2.1', 'text.html#propdef-word-spacing', 'word-spacing')}} | {{Spec2('CSS2.1')}} | Aucun changement. | +| {{SpecName('CSS1', '#word-spacing', 'word-spacing')}} | {{Spec2('CSS1')}} | Définition initiale. | + +{{cssinfo}} + +## Compatibilité des navigateurs + +{{Compat("css.properties.word-spacing")}} |