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

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

<center>

<h5>This example uses inline event handlers to dynamically set an object's border color.</h5>

<p id="msg">Click on the image to change its border color. 
   Double-click to reset. </p>

<table cellpadding=0 cellspacing=0>
<tr>
   <td style="border: 10pt ridge" onclick="this.style.borderColor='khaki'"
      ondblclick="this.style.borderColor=''">
         <img src="../shared/images/samp08.jpg" 
            height=125 width=125 border=0 alt="">
   </td>
</tr>
</table>

</center>

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

</body>
</html>