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

<style type="text/css">
<!--
   #msg { text-align: justify }
-->
</style>
</head>

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

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

<center>

<h5>This example uses inline event handlers to dynamically change the <b>textIndent</b> property of an object.</h5>

<p id="msg" onmouseover="this.style.textIndent='50pt'"
   onclick="this.style.textIndent='50%'"
   onmouseout="this.style.textIndent=''">
      Move the mouse over to indent 50 points. 
      Click to indent 50 percent of this object's width. 
      Move the mouse out for no indent. 
</p>

</center>

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

</body>
</html>