The text-decoration property adds decoration to text.
p {
text-decoration: underline;
}
Property |
Value |
Explanation |
text-decoration |
underline |
horizontal line under the text |
overline |
horizontal line over the text |
line-through |
horizontal line through the text |
blink |
blinking text (Firefox and Opera only) |
none |
normal text (default) |
If you set two or more values, separate by a space.
text-decoration: underline overline;
Example