summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/flexbox-baseline-multi-line-horiz-004.html
blob: 21db212f99274d9bde5f69f080b76da64e0360f2 (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
<!DOCTYPE html>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
  <title>CSS Test: Testing the baseline of a horizontal multi-line (wrap-reverse) flex container with baseline-aligned items on first line</title>
  <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
  <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-baselines">
  <link rel="match" href="flexbox-baseline-multi-line-horiz-004-ref.html">
  <meta charset="utf-8">
  <style>
    .flexContainer {
      display: inline-flex;
      flex-wrap: wrap-reverse;
      width: 40px;
      height: 100px;
      background: lightgray;

      /* Use "align-content", to test that packing space is considered when
         getting container's baseline from its first FlexLine:*/
      align-content: center;
    }
    .flexContainer > * {
      width: 20px;
    }

    .smallFont {
      font-size: 8px;
      line-height: 8px;
    }
    .medFont {
      font-size: 12px;
      line-height: 12px;
    }
    .bigFont {
      font-size: 16px;
      line-height: 16px;
    }
  </style>
</head>
<body>
  a
  <!-- Flex container with second item in first line baseline-aligned
       (should set the container's baseline) -->
  <div class="flexContainer">
    <div class="medFont">b</div>
    <div class="bigFont" style="align-self: baseline">c</div>
    <div class="medFont">d</div>
    <div class="smallFont">e</div>
  </div>

  <!-- Flex container with both items in first line baseline-aligned
       (should set the container's baseline) -->
  <div class="flexContainer">
    <div class="smallFont" style="align-self: baseline">f</div>
    <div class="medFont" style="align-self: baseline">g</div>
    <div class="bigFont">h</div>
    <div class="smallFont">i</div>
  </div>

  <!-- Flex container with all items baseline-aligned, and with some padding
       (only those on first line should set the container's baseline) -->
  <div class="flexContainer" style="align-items: baseline">
    <div class="bigFont">j</div>
    <div class="smallFont" style="padding-bottom: 20px">k</div>
    <div class="smallFont">l</div>
    <div class="medFont">m</div>
  </div>
  n
</body>
</html>