1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34

content / test / data / accessibility / css / table-display.html [blame]

<!--
@WIN-ALLOW:table*
-->
<!DOCTYPE html>
<html>
<head>
<style>
  .table { display: table; }
  .rowgroup { display: table-row-group; }
  .row { display: table-row; }
  .cell { display: table-cell; }
</style>
</head>
<body>
  <div class="table">
    <div class="rowgroup">
      <div class="row">
        <span class="cell">
          Cats
        </span>
        <span class="cell">
          Dogs
        </span>
        <span class="cell">
          Iguanas
        </span>
        <span class="cell">
          Fish
        </span>
      </div>
    </div>
  </div>
</body>
</html>