<html>
<head>
<title>Abakada CSS Demo: borderStyle Property</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</head>
<body>
<!-- #include virtual="~/shared/top.inc" -->
<div class="header"><h2>Abakada CSS Demo: borderStyle Property</h2></div>
<hr size=1 width=92%>
<center>
<h5>This example uses inline event handlers to dynamically set the style of an object's border.</h5>
<p id="msg">Click on the image to change its border style.
Double-click to reset. </p>
<table cellpadding=0 cellspacing=0>
<tr>
<td style="border: 10pt solid" onclick="this.style.borderStyle='ridge'"
ondblclick="this.style.borderStyle='solid'">
<img src="../shared/images/samp05.jpg"
height=125 width=125 border=0 alt="">
</td>
</tr>
</table>
</center>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>