summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/flexbox-baseline-nested-001-ref.html
blob: dd4e144b46bdf8f7b7111b1129f302e8ef1d622f (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
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Reference: Baseline of nested flex containers with stretched textfield inside</title>
    <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
    <link rel="author" title="Mozilla" href="http://www.mozilla.org/">
    <meta charset="utf-8">
    <style>
      .ib {
        display: inline-block;
      }
      .innerFlex {
        display: flex;
        height: 200px;
      }
    </style>
  </head>
  <body>
    abc
    <div class="ib">
      <div class="innerFlex">
        <input value="def">
      </div>
    </div>
  </body>
</html>