text-align.aspx font size:
<html>
<head>
<title>Abakada CSS Demo: text-align Attribute</title>
<link rel="stylesheet" href="/shared/netdemos.css">

<style type="text/css">
<!--
   .center { text-align: center }
   .right { text-align: right }
   .justify { text-align: justify }
-->
</style>
</head>

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

<div class="header"><h2>Abakada CSS Demo: text-align Attribute</h2></div>
<hr size=1 width=92%>

<center>

<h5>This example uses calls to an embedded stylesheet to dynamically set an element's <b>text-align</b> style attribute.</h5>

<p id="msg" class="center"
   onmouseover="this.className='right'"
   onclick="this.className='justify'"
   onmouseout="this.className=''">
      Move the mouse over to apply a style class that aligns this text on the right. 
      Click on the text to justify. Move the mouse out to restore. 
</p>

</center>

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

</body>
</html>