'text-decoration' Example
<html>
<body>
<a href="http://www.java2s.com"
style="text-decoration: none">
www.java2s.com, www.java2s.com ,w w w.j a v a 2 s . c o m
</a>
<hr>
<p id="myT">Text sample.</p>
<input type="button"
value="decoration:lineThrough"
onclick="myT.style.textDecoration = 'line-through'">
<input type="button"
value="decoration:overline"
onclick="myT.style.textDecoration = 'overline'">
<input type="button"
value="decoration:underline"
onclick="myT.style.textDecoration = 'underline'">
</body>
</html>
Related examples in the same category