CSS text decoration
CSS Text-Decoration
Description
The CSS text-decoration property is used to define the line-decoration of text within the selected element. Possible values are underline, overline and line-through.
Example Text-Decoration
p.underline {
text-decoration: underline;
}
p.overline {
text-decoration: overline;
}
p.line-through {
text-decoration: line-through;
}
p.none {
text-decoration: none;
}