| word-spacing | 0,4em; 3px; inherit; | Définit l'espace entre les mots d'un texte. |
Exemple avec word-spacing:
Codage CSS de l'exemple:
div#espacelettre {
font-family: Arial, "Courrier New";
color: green;
background-color: rgb(192,192,192);
border-color: #a744c8;
border-style: solid;
/* définit un espace entre les mots */
word-spacing: 2em;
}
| Code HTML pour afficher le style CSS
<html> |