The text-decoration-line
CSS property sets what kind of line decorations are added to an element.
Underline decorations are positioned under the text, overline decorations are positioned above the text, and line-through decorations are positioned through the middle of the text.
Initial value | none |
---|---|
Applies to | all elements. It also applies to ::first-letter and ::first-line . |
Inherited | no |
Media | visual |
Computed value | as specified |
Animation type | discrete |
Canonical order | order of appearance in the formal grammar of the values |
/* Keyword values */ 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;
Accepts none, or one or more whitespace separated values:
none
underline
overline
line-through
blink
-moz-anchor-decoration
none | [ underline || overline || line-through || blink ]
<p>Here's some text with wavy red underline!</p>
p { text-decoration-line: underline; text-decoration-style: wavy; text-decoration-color: red; }
Specification | Status | Comment |
---|---|---|
CSS Text Decoration Level 3 The definition of 'text-decoration-line' in that specification. | Candidate Recommendation | Initial definition. The text-decoration property wasn't a shorthand before. |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | No support |
6.0 (6.0) -moz[1] 36.0 (36.0) | No support | No support | 7.1 -webkit |
blink | No support | 26.0 (26.0)[2] | No support | No support | ? |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic Support | No support | No support[3] | 6.0 (6.0) -moz[1] 36.0 (36.0) | No support | No support | 8 -webkit |
blink | No support | No support | 26.0 (26.0)[2] | No support | No support | ? |
[1] The prefixed version was removed in Gecko 39.0 (Firefox 39.0 / Thunderbird 39.0 / SeaMonkey 2.36).
[2] The value is considered valid, but no blinking will happen, as the spec allows user agents to ignore it.
[3] See WebKit bug 90959.
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-line