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">
<!--
   .hoverBorder { border: 10pt ridge orange }
   .clickBorder { border: 10pt inset olive }
   .noBorder { border: none }
-->
</style>
</head>

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

<center>

<h4>This example uses calls to an <i>embedded stylesheet</i> to dynamically show or hide an element's border.</h4>

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

<table cellpadding=0 cellspacing=0>
<tr>
   <td onmouseover="this.className='hoverBorder'" 
      onclick="this.className='clickBorder'"
      onmouseout="this.className='noBorder'">
         <img src="../shared/images/earth.gif" width=200>
   </td>
</tr>
</table>

</center>

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

</body>
</html>