<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>Positioning with an ancestor containing block</title>
  <style type="text/css">
   .container { position: relative; }
   .test { position: absolute; height: 200px; width: 300px; background: green; color: white; border: solid 10px lime; }
  </style>
 </head>
 <body>
  <p>There should be a green box below with the word PASS in it.</p>
  <div class="container">
   <div>
    <div>
     <div class="test">
       PASS
     </div>
    </div>
   </div>
  </div>
 </body>
</html>
