summaryrefslogtreecommitdiffstats
path: root/layout/reftests/flexbox/pagination/flexbox-multicol-vert-empty-2.html
blob: 586b51db762a4f31864178c7248aa190c0a7fdf4 (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
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
  <head>
    <style>
    .flexContainer {
      display: flex;
      flex-direction: column;
      border: 2px dotted black;
      height: 298px;
    }
    .multicol {
      height: 100px;
      width: 200px;
      -moz-column-width: 20px;
      -moz-column-fill: auto;
      border: 4px solid orange;
    }
    </style>
  </head>
  <body>
    <div class="multicol">
      <div class="flexContainer">
      </div>
    </div>
  </body>
</html>