Language
日本語
English

Caution

JavaScript is disabled in your browser.
This site uses JavaScript for features such as search.
For the best experience, please enable JavaScript before browsing this site.

CSS Dictionary

  1. Home
  2. CSS Dictionary
  3. text-decoration

text-decoration

Specifies text decoration.

Sample Code

p.test { text-decoration: none;}
p.test1 { text-decoration: underline;}
p.test2 { text-decoration: overline;}
p.test3 { text-decoration: line-through;}
p.test4 { text-decoration: blink;}

Available Values

ValueDescription
noneNo text decoration. This 'none' is the initial value.
underlineAdds an underline to the text.
overlineAdds a line above the text.
line-throughAdds a strikethrough to the text.
blinkMakes the text blink. This 'blink' value is scheduled for removal in the CSS specification and cannot be used in almost all current browsers. Please be aware of this.

Browser Display Result

<p style="text-decoration: none;">This is a p element.</p>

<p style="text-decoration: underline;">This is a p element.</p>

<p style="text-decoration: overline;">This is a p element.</p>

<p style="text-decoration: line-through;">This is a p element.</p>

<p style="text-decoration: blink;">This is a p element.</p>

Browser Compatibility

Chrome Chrome
1+
Firefox Firefox
1+
Safari Safari
1+
Edge Edge
12+
Supported in all versions
IE IE
11
10
9
8
7
6
Opera Opera
3.5+
2 and earlier ×
iOS Safari iOS Safari
1+
Android Android Browser
4.4+
3 and earlier ×
Chrome Android Chrome Android
Latest
Same support as desktop
Firefox Android Firefox Android
Latest
Same support as desktop

※ Version data is based on MDN.

Details

Specifies text decoration.

Note that the 'blink' value is scheduled for removal in the CSS specification and cannot be used in almost all current browsers.

If you find any errors or copyright issues, please .