Text Character
1. font-style (Italic)
Distinguish between italic and oblique.
- italic: uses a specially drawn italic version of the font.
- oblique: simply slants regular letters (looks worse).
2. text-decoration
Modern CSS allows very fine line tuning:
text-decoration-line:underline,line-through.text-decoration-style:wavy,dotted.text-decoration-color: can make underline a different color!
a {
text-decoration: underline wavy #ff00ea; /* Pink wavy line */
}
Caution
Don't remove underline from links in main text without good reason. User should immediately see where they can click.