htmlcss

The text-decoration property is used in CSS and certain HTML elements. It renders a certain kind of effect to the text.

Values

One or more values can be used be separating them with a space.


To apply this in HTML, use:

<span style="text-decoration:overline;">Decorated text.</span>

That produces: Decorated text.


This is text with all the values applied: Decorated text.


To apply this in CSS, in the h1 element for example, use:

h1 {
     text-decoration:underline overline line-through blink;
}


Image example:

text-decoration in Firefox 3.6

text-decoration in Firefox 3.6.10