<html>
<head>
<title>Abakada CSS Demo: border-color Attribute</title>
<link rel="stylesheet" href="/shared/netdemos.css">
<style type="text/css">
<!--
td { border: 10pt ridge }
.khaki { border-color: khaki }
-->
</style>
</head>
<body>
<!-- #include virtual="~/shared/top.inc" -->
<div class="header"><h2>Abakada CSS Demo: <span class="hilite">border-color</span> Attribute</h2></div>
<hr size=1 width=92%>
<center>
<h5>This example uses calls to an embedded stylesheet to dynamically set an element's border color.</h5>
<p id="msg">Move the mouse over the image to apply a style class that changes its border color.
Move the mouse out to reset. </p>
<table cellpadding=0 cellspacing=0>
<tr>
<td onmouseover="this.className='khaki'" onmouseout="this.className=''">
<img src="../shared/images/samp14.jpg"
height=125 width=125 border=0 alt="">
</td>
</tr>
</table>
</center>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>