Text Decoration Line Css Property

Text Decoration Line Css Property

Text Decoration Line is used to draw the line above, below, over the text in the webpage.

SYNTAX:
span{
text-decoration-line: none;
text-decoration-line: underline;
text-decoration-line: overline;
text-decoration-line: line-through;
text-decoration-line: underline overline;/* Two decoration lines */
text-decoration-line: overline underline line-through;/* Multiple decoration lines */

/* Global values */
text-decoration-line: inherit;
text-decoration-line: initial;
text-decoration-line: unset;
}

HTML:
<span style="text-decoration-line:underline;">Labw3</span>

OUTPUT:
Labw3
FeatureChromeFirefoxIEOperaSafariAndroidiOS
Basic supportNo6.0+NoNo7.0 use -moz-No8* use -webkit-
Copyright Labw3