Back to CSS1 Reference | CSS1 Properties
Prev text-align | Next text-indent


Property
text-decoration
Values
none, underline, overline, line-through, blink
Initial
none
Inherited
no, but see clarification below

This property describes decorations that are added to the text of an element. If the element has no text (e.g. the 'IMG' element in HTML) or is an empty element (e.g. '<EM></EM>'), this property has no effect. A value of 'blink' causes the text to blink.

The color(s) required for the text decoration should be derived from the 'color' property value.

This property is not inherited, but elements should match their parent. E.g., if an element is underlined, the line should span the child elements. The color of the underlining will remain the same even if descendant elements have different 'color' values.

      A:link, A:visited, A:active { text-decoration: underline }

The example above would underline the text of all links (i.e., all 'A' elements with a 'HREF' attribute).

UAs must recognize the keyword 'blink', but are not required to support the blink effect.

Log in or register to write something here or to contact authors.