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

<style type="text/css">
<!--
   .normal { text-indent: 25pt }
   .over { text-indent: 20% }
   .click { text-indent: 10em }
   #msg { text-align: justify }
-->
</style>
</head>

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

<div class="header"><h2>Abakada CSS Demo: text-indent 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-indent</b> style sttribute.</h5>

<p id="msg" class="normal" onmouseover="this.className='over'"
   onclick="this.className='click'"
   onmouseout="this.className='normal'">
      Move the mouse over this text to apply a style class that sets a larger indent. 
      Click on the text to indent the text further. Move the mouse out to restore. 
</p>

</center>

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

</body>
</html>