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

<style type="text/css">
<!--
   .applyBorder { border: "5pt outset orange" }
   .removeBorder { border: "" }
-->
</style>
</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 calls to an embedded stylesheet to dynamically show or hide an element's border.</h5>

<p id="msg">The image is loaded in a table cell with no border initially set. 
   Move the mouse over the cell to apply a style class that changes the border. 
   Move the mouse out to restore. </p>

<table cellpadding=0 cellspacing=0>
<tr>
   <td onmouseover="this.className='applyBorder'" 
      onmouseout="this.className='removeBorder'">
         <img src="../shared/images/earth.gif" 
            height=100 width=100 alt="Mother" border=0>
   </td>
</tr>
</table>

</center>

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

</body>
</html>