background-image.aspx font size:
<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>
<div class="header"><h2>Abakada CSS Demo: <b>background-image</b> Attribute</h2></div>
<hr size=1 width=92%>

<center>

<h4>This example uses calls to an <i>embedded stylesheet</i> to dynamically set an element's background image.</h4>

<p style="font: bold 16pt arial; width: 70%; padding: 25; 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>

</center>

<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->

</body>
</html>