Ce texte montre l'espace entre les lettres.
letter-spacing: 4px;
Ce texte montre l'espace entre les mots.
word-spacing: 15px;
Ce texte est souligné.
text-decoration: underline;
Ce texte est barré.
text-decoration: line-through;
Ce texte a une ligne au-dessus.
text-decoration: overline;
Soulignement ondulé.
text-decoration: underline; text-decoration-style: wavy;
La première lettre de ce paragraphe est stylisée comme dans un magazine.
p::first-letter { font-size: 30px; color: #8a5cff; }
La première ligne de ce paragraphe est différente. Le reste du texte garde le style normal.
p::first-line { color: #6a5acd; font-weight: 600; }
Ce texte combine letter-spacing et word-spacing.
letter-spacing:4px; word-spacing:15px;