Raw File
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Reftest Reference</title>
    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
    <style>
      body > div > div {
        display: table;
      }
      body > div > div > div {
        display: table-row;
      }
      body > div > div > div > div {
        display: table-cell;
      }
    </style>
  </head>
  <body>
    <div>
      <div>
        <div>
          <div>
            <div>Some text</div>
          </div>
        </div>
      </div>
    </div>
  </body>
</html>
back to top