Text Decoration
Another way of styling text creatively is through text-decoration.
CSS
* {
text-decoration: none;
}
text-decoration:
accepts these term values:
none
(remove any decoration of text, used to remove default link underline)underline
(underline text, default decoration applied to links)overline
(place a line over text)line-through
(place a line through text, also known as “strike-through”)
- Previous
- Next