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

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

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

<h5 align="center">This example uses inline event handlers to dynamically change the alignment of an object's text.</h5>

<p id="msg" onmouseover="this.style.textAlign='center'"
   onclick="this.style.textAlign='right'"
   onmouseout="this.style.textAlign=''">
      Move the mouse over me to center the text. 
      Click to make me align to the right. 
      Move the mouse out to return. 
</p>

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

</body>
</html>