textDecoration0.aspx font size:
<html>
<head>
<title>Abakada CSS Demo: textDecoration Property</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</head>

<body>
<!-- #include virtual="~/shared/top.inc" -->

<div class="header"><h2>Abakada CSS Demo: textDecoration Property</h2></div>
<hr size=1 width=92%>

<center>

<h5>This example uses inline event handlers to dynamically change an object's <b>text-decoration</b> style property.</h5>

<p id="msg" class="back"
   onmouseover="this.style.textDecoration='underline'"
   onclick="this.style.textDecoration='overline'"
   ondblclick="this.style.textDecoration='line-through'"
   onmouseout="this.style.textDecoration=''">
      Move the mouse over me to underline. 
      Click me to overline. Double-click me for a line-through. 
      Move the mouse out to reset. 
</p>

<img src="/shared/wink.gif" width=15 height=15 border=0 alt="">

</center>

<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->

</body>
</html>