CSS Property Value How to - text-decoration possible values








Question

We would like to know how to text-decoration possible values.

Answer


<!--from w w  w.  j  a va  2  s .  co  m-->
The following code shows how to set the text-decoration Property.
<html>
<head>
<style>
p.underline {text-decoration:underline;}
p.overline {text-decoration:overline;}
p.line-through {text-decoration:line-through;}
p.blink {text-decoration:blink;}
</style>
</head>
<body>
    <h1>text-decoration</h1>
    <p class="underline">This text should be underlined</p>
    <p class="overline">This text should have a line over it</p>
    <p class="line-through">This text should have a line through it</p>
    <p class="blink">This text should be blinking</p>
</body>
</html>

The code above is rendered as follows: