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">
<!--
   .left { text-align: left }
   .right { text-align: right }
   .center { text-align: center }
-->
</style>
</head>

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

<center>

<h4>This example uses calls to an <i>embedded stylesheet</i> to dynamically change the alignment of an object's text.</h4>

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

</center>

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

</body>
</html>