summaryrefslogtreecommitdiffstats
path: root/layout/reftests/details-summary/summary-three-columns-ref.html
blob: 4db14deba7b2ca4fd50ed901d3c7bb11bd65f53f (plain)
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
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
   - http://creativecommons.org/publicdomain/zero/1.0/ -->

<html>
  <style>
  .summary-columns {
    column-count: 3;
    column-rule: 1px solid lightgray;
    -webkit-column-count: 3;
    -webkit-column-rule: 1px solid lightgray;
    border: 1px solid lightblue;
    background-color: lightgreen;
  }
  </style>
  <body>
    <div>
      <div class="summary-columns">
        <p>line</p>
        <p>line</p>
        <p>line</p>
        <p>line</p>
        <p>line</p>
        <p>line</p>
        <p>line</p>
      </div>
      <p>This is the details.</p>
    </div>
  </body>
</html>