| ZVON > References > CSS2 Reference |
| Intro / Search / ZVON |
| Property: | text-decoration |
| Inherited: | no (see prose) |
| Value: | none | [ underline || overline || line-through || blink ] | inherit |
| Initial: | none |
| Applies to: | all elements |
| Media: | visual |
| Percentages: | N/A |
|
<AAA> <BBB>bbb</BBB> <CCC>ccc</CCC> <DDD>ddd</DDD> <EEE>eee</EEE> </AAA> |
View * {padding:10px} BBB {text-decoration: underline} CCC {text-decoration: overline} DDD {text-decoration: line-through} EEE {text-decoration: blink} |
|
<AAA> <BBB>bbb</BBB> <CCC>ccc</CCC> <DDD>ddd</DDD> <EEE>eee</EEE> </AAA> |
View * {padding:10px} BBB {text-decoration: underline overline line-through} CCC {text-decoration: overline underline} DDD {text-decoration: line-through underline} EEE {text-decoration: underline overline line-through blink} |