Attribut WORD-SPACING
Rôle
L’attribut word-spacing permet de spécifier l’espace entre les mots.
Version : CSS1
Héritage (inherit) : oui
Propriété Javascript : element.style.wordSpacing
Testez vous-même cet attribut
Utilisez Codepen.
– Le code CSS
p{
word-spacing: 30px;
}
– Le code HTML
<p>L'espace entre les mots a été augmenté</p>
Résultat
L’espace a été augmenté par le CSS
Compatibilité
L’attribut word-spacing est pris en charge par tous les principaux navigateurs
Valeurs
Les différentes valeurs de l’attribut word-spacing sont:
- normal
- Espace normal entre le mots : valeur par défaut
Syntaxe :
word-spacing : normal
- length
- Définit une valeur d’espace en px, pt, cm, em.
Syntaxe :
word-spacing : 20px
- initial
- L’espace est défini à sa valeur initiale (attention pas pris en charge par Internet Explorer et Opéra en dessous de la version 15). Peut être utilisé pour « neutraliser » l’héritage, par exemple un paragraphe peut ignorer l’espace imposé par son élément parent.
Syntaxe :
word-spacing : initial
- inherit
- Hérite de la même propriété que l’élément parent.
Syntaxe :
word-spacing : inherit
A voir aussi
color– text-align– text-decoration– text-transform– text-indent– word-spacing– letter-spacing–line-height– white-space– vertical-align– direction– content