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

<style type="text/css">
<!--
   img { cursor: hand }
-->
</style>
</head>

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

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

<center><h5>This example uses inline event handlers to dynamically set an object's left margin.</h5>

<p id="msg">Click on any image to expand its left margin. Double-click to reset. </p>

<img src="../shared/images/samp03.jpg" 
   width=125 height=125
   onclick="this.style.marginLeft='1cm'" 
   ondblclick="this.style.marginLeft=''">
<img src="../shared/images/samp05.jpg" 
   width=125 height=125 
   onclick="this.style.marginLeft='1cm'" 
   ondblclick="this.style.marginLeft=''">
<img src="../shared/images/samp14.jpg" 
   width=125 height=125 
   onclick="this.style.marginLeft='1cm'" 
   ondblclick="this.style.marginLeft=''">

</center>

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

<p class="copy">&copy; <%= DateTime.Now.Year %> Abakada Web WorkShop. All lefts reserved. </p>

</body>
</html>