August 1999
Intermediate to advanced
1488 pages
72h 53m
English
document.ids.idName.textDecorationThe textDecoration property specifies the type of decoration that is added to text as associated with the ID called idName.
There are four types of values that are valid for the textDecoration property: underline, line-through, blink, and none.
Listing 7.134 uses the textDecoration property to put a line through a line of text.
<html> <script> <!-- Hide //Create a style sheet id that defines the text decoration document.ids.CROSSOUT.textDecoration = "line-through"; //Hide End ---> </script> <p id=CROSSOUT>This text is crossed out.</p> </html> |
Read now
Unlock full access