<html>
<head>
<title>Abakada CSS Demo: background-image Attribute</title>
<link rel="stylesheet" href="/shared/netdemos.css">
<style type="text/css">
<!--
.over {
background-image: url( '../shared/images/back1.jpg' ); color: beige }
.out {
background-image: none }
-->
</style>
</head>
<body>
<!-- #include virtual="~/shared/top.inc" -->
<div class="header"><h2>Abakada CSS Demo: <span class="hilite">background-image</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 background image.</h5>
<p style="font: bold 13pt arial; padding: 15; cursor: hand"
onmouseover="this.className='over'"
onmouseout="this.className='out'">
Mouse over and out of this element to show or hide it�s background image.
</p>
<img src="../shared/images/back1.jpg" width=1 height=1 style="visibility: hidden">
</center>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>