Letter spacing

Ce texte montre l'espace entre les lettres.

letter-spacing: 4px;

Word spacing

Ce texte montre l'espace entre les mots.

word-spacing: 15px;

Text decoration (underline)

Ce texte est souligné.

text-decoration: underline;

Text decoration (line-through)

Ce texte est barré.

text-decoration: line-through;

Text decoration (overline)

Ce texte a une ligne au-dessus.

text-decoration: overline;

Text decoration (wavy)

Soulignement ondulé.

text-decoration: underline; text-decoration-style: wavy;

First letter

La première lettre de ce paragraphe est stylisée comme dans un magazine.

p::first-letter { font-size: 30px; color: #8a5cff; }

First line

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; }

Letter & Word spacing combo

Ce texte combine letter-spacing et word-spacing.

letter-spacing:4px; word-spacing:15px;