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

<style type="text/css">
<!--
   td { border: 10pt ridge beige }
-->
</style>
</head>

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

<center>

<h4>This example uses <i>inline event handlers</i> to dynamically set an object's right border.</h4>

<p id="msg">Click on the cell to change the right side of the border. 
   Double-click to reset. </p>

<table cellpadding=0 cellspacing=0>
<tr>
   <td onclick="this.style.borderRight='15pt groove sienna'" 
      ondblclick="this.style.borderRight='10pt ridge beige'">
         <img src="../shared/images/samp13.jpg" border=0 alt="">
   </td>
</tr>
</table>

</center>

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

</body>
</html>