<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS Backgrounds: Overlapped alpha transparent backgrounds</title>
  <style type="text/css">
   html { background: white url(test.png); color: black; }
   p { background: white; color: black; padding: 0.25em; border: thin solid black; display: inline; line-height: 2; }
   div { position: fixed; height: 60%; top: 20%; left: 20%; width: 60%; background: url(test.png) center center; border: solid thick black; }
  </style>
 </head>
 <body>
  <p>This document has a white background overlayed with an image with a multi-bit alpha channel. In the middle of the page is a square div with height 60% with the same background, centered.</p>
  <div/>
 </body>
</html>