Text Decoration
| Syntax: |
text-decoration: <value>
|
| Possible Values: |
none | [ underline || overline || line-through || blink ]
|
| Initial Value: |
none
|
| Applies to: |
All elements
|
| Inherited: |
No
|
The text-decoration property allows text to be decorated through one of five properties: underline, overline, line-through, blink, or the default, none.
For example, one can suggest that links not be underlined with
A:link, A:visited, A:active { text-decoration: none }
|