<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: 200px; width: 400px; }
   div { background-image: url(http://404.example.org/), url(http://404.example.org/), url(http://404.example.org/); }
   div { background-color: green; }
   div { background-repeat: repeat, repeat, repeat, repeat; }
  </style>
 </head>
 <body>
  <p>There should be a green box below.</p>
  <div></div>
 </body>
</html>