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

<style type="text/css">
<!--
   ul { font: bold 13pt arial; text-align: left;
      margin-left: 5em; cursor: hand }
-->
</style>
</head>

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

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

<center>

<h5>This example uses inline event handlers to dynamically set a list object's position.</h5>

<ul onmouseover="this.style.listStylePosition='inside'" 
   onmouseout="this.style.listStylePosition=''">
   <li>Move the mouse over this unordered list to change the list marker position to <i>inside</i>
   <li>Move the mouse out to reset the list marker position to <i>outside</i>.</li>
</ul>

</center>

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

</body>
</html>