summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/flexbox-column-row-gap-001-ref.html
blob: 0606afe53987d562897aa13f057daa294acdbdc8 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0
-->
<!--
     Reference for the correctness of gaps in horizontal and vertical multi-line
     flex containers.
-->
<html>
<head>
  <title>Reference: Testing row and column gaps in horizontal and vertical multi-line flex containers with the space-around property and auto margins</title>
  <link rel="author" title="Mihir Iyer" href="mailto:miyer@mozilla.com">
  <meta charset="utf-8">
  <style>
    .outerBox {
      width: 200px;
      height: 220px;
      border: 1px solid black;
      float: left;
    }
    .flexContainer {
      display: flex;
      align-content: space-around;
      justify-content: space-around;
    }
    .rowNoWrap {
      flex-flow: row nowrap;
    }
    .columnNoWrap {
      flex-flow: column nowrap;
    }
    .item {
      border: 1px solid blue;
      background: lightblue;
      width: 28px;
      height: 28px;
    }
    .autoLBMargins {
      margin-left: auto;
      margin-bottom: auto;
    }
    .autoBMargin {
      margin-bottom: auto;
    }
    .right20 {
      margin-right: 20px;
    }
    .bottom40 {
      margin-bottom: 40px;
    }
    .tb30100 {
      margin-top: 30px;
      margin-bottom: 100px;
    }
    .lr3080 {
      margin-left: 30px;
      margin-right: 80px;
    }
    .w200 {
      width: 200px;
    }
    .h220 {
      height: 220px;
    }
    .fleft {
      float: left;
    }
  </style>
</head>
<body>
  <div class="outerBox">
    <div class="flexContainer w200 rowNoWrap tb30100">
      <div class="item right20"></div>
      <div class="item right20"></div>
      <div class="item right20"></div>
      <div class="item"></div>
    </div>
    <div class="flexContainer w200 rowNoWrap">
      <div class="item autoLBMargins right20"></div>
      <div class="item"></div>
    </div>
  </div>
  <div class="outerBox">
    <div class="flexContainer fleft h220 columnNoWrap lr3080">
      <div class="item bottom40"></div>
      <div class="item bottom40"></div>
      <div class="item"></div>
    </div>
    <div class="flexContainer fleft  h220 columnNoWrap">
      <div class="item bottom40"></div>
      <div class="item bottom40"></div>
      <div class="item autoBMargin"></div>
    </div>
  </div>
</body>
</html>