background_s.aspx font size:
<html>
<head>
<title>Abakada CSS Demo: background Property</title>
<link rel="stylesheet" href="/shared/netdemos.css">

<style type="text/css">
<!--
   #msg { color: beige; padding: 15mm }
-->
</style>
</head>

<body>
<div class="header"><h2>Abakada CSS Demo: <b>background</b> Property</h2></div>
<hr size=1 width=92%>

<center>

<h4>This example uses <i>inline event handlers</i> to dynamically set an object's background<br>
using the composite <b>background</b> style attribute.</h4>

<p id="msg" style="width: 70%; background: #433 url( ../shared/images/jupiter.gif ) no-repeat top left"
   onmouseover="this.style.background='#334 url( ../shared/images/neptune.gif ) no-repeat bottom right'"
   onmouseout="this.style.background='#433 url( ../shared/images/jupiter.gif ) no-repeat top left'">
      Move the mouse anywhere on this object to change the background color, image and position.<br>
      Move the mouse out to reset. 
</p>

</center>

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

</body>
</html>