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

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

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

<center>

<h5>This example uses inline event handlers to dynamically set the composite <b>border</b> properties of an object.</h5>

<p id="msg">The image is loaded in a table cell set with an initial border style. 
   Click on the cell to change the border. 
   Double-click to restore. </p>

<table cellpadding=0 cellspacing=0>
<tr>
   <td style="border='5pt inset silver'" 
      onclick="this.style.border='10pt ridge sienna'"
      ondblclick="this.style.border='5pt inset silver'">
         <img src="../shared/images/samp14.jpg" 
            height=125 width=125 border=0 alt="">
   </td>
</tr>
</table>

</center>

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

</body>
</html>