CSS Text-Decoration Property

CSS 1

CSS 2

CSS 3

Yes Yes Yes

Description

Specifies effects to be added to text within an element.

Syntax

text-decoration: [value];

Possible values

  • none
  • underline
  • overline
  • line-through
  • blink
  • inherit

Initial Value

none

Applies To

All elements

Inherited

No

Media

Visual

Example

a:hover {text-decoration: underline;}

Visual Example

Test for text-decoration property.


{ text-decoration: none; }


View All CSS Properties