document.classes.textDecoration

JavaScript 1.2+ Nav4+ Syntax

document.classes.className.tagName.textDecoration

Description

The textDecoration property specifies the type of decoration that is added to text as associated with the class called className. The definition can also specify a tag or the word all for tagName.

There are four types of values that are valid for the textDecoration property: underline, line-through, blink, and none.

Example

Listing 7.90 uses the textDecoration property to put a line through a line of text.

Listing 7.90 Set the textDecoration Property
 <html> <script> <!-- Hide //Create a style sheet class that defines text decoration document.classes.CROSSOUT.all.textDecoration = "line-through"; //Hide End ...

Get Pure JavaScript now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.