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

<style type="text/css">
<!--
   td { border-style: solid; border-width: 10pt }
   .groovy { border-style: groove }
-->
</style>
</head>

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

<center>

<h4>This example uses calls to an <i>embedded stylesheet</i> to dynamically set the style of an element's border.</h4>

<p id="msg">Move the mouse over the image to apply a style class that changes its border style. 
   Move the mouse out to restore. </p>

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

</center>

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

</body>
</html>