<html>
<head>
<title>Abakada CSS Demo: backgroundColor Property</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</style>
</head>
<body>
<!-- #include virtual="~/shared/top.inc" -->
<div class="header"><h2>Abakada CSS Demo: <span class="hilite">backgroundColor</span> Property</h2></div>
<hr size=1 width=92%>
<center>
<h5>This example uses inline event handlers to set an element's background color.</h5>
<div style="width: 80%; font: bold 13pt arial; cursor: hand; padding: 10pt"
onmouseover="this.style.backgroundColor='#7be'"
onclick="this.style.backgroundColor='#7bb'"
ondblclick="this.style.backgroundColor='#bb7'"
onmouseout="this.style.backgroundColor='transparent'">
Mouse over this element to change its background color.<br>
Click to change to another background color.<br>
Double-click to change to another background color.<br>
Move the mouse out to restore.
</div>
</center>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>