<html>
<head>
<title>Abakada CSS Demo: border Attribute</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</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 <i>inline event handlers</i> to dynamically set the composite border properties of an object.</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 border setting.<br>
Click on the cell to change to another border setting.<br>
Mouse out to restore. </p>
<table cellpadding=0 cellspacing=0>
<tr>
<td onmouseover="this.style.border='10pt inset cadetblue'"
onclick="this.style.border='10pt ridge sienna'"
onmouseout="this.style.border=''">
<img src="../shared/images/samp14.jpg" width=200>
</td>
</tr>
</table>
</center>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>