<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>Multiple backgrounds: Different layer counts</title>
  <style type="text/css">
   body { color: navy; }
   div { background: red; height: 256px; width: 256px; }
   div { background-image: url(http://404.example.org/), url(/resources/images/patterns/blue-crystals), url(/resources/images/patterns/busy-green); }
   div { background-color: red; }
   div:hover { background-position: 50%, 300px; background-repeat: repeat-y; }
  </style>
 </head>
 <body>
  <p>There should be a green box below after you hover it (but it should never be red).</p>
  <div></div>
 </body>
</html>