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

<style type="text/css">
<!--
   .wideright { margin-right: 10mm }
   img { cursor: hand }
-->
</style>
</head>

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

<div class="header"><h2>Abakada CSS Demo: margin-right Attribute</h2></div>
<hr size=1 width=92%>

<center>

<h5>This example uses calls to an embedded stylesheet to dynamically set an element's right margin.</h5>

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

<img src="../shared/images/samp09.jpg" 
   width=125 height=125
   onclick="this.className='wideright'" 
   ondblclick="this.className=''">
<img src="../shared/images/samp10.jpg" 
   width=125 height=125 
   onclick="this.className='wideright'" 
   ondblclick="this.className=''">
<img src="../shared/images/samp08.jpg" 
   width=125 height=125 
   onclick="this.className='wideright'" 
   ondblclick="this.className=''">

</center>

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

</body>
</html>