summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/dynamic-bsize-change-ref.html
blob: b8db7ea2c7de6443075e04009ff5c979dbb7fed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<title>CSS Test Reference</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<style>
  div {
    border: 1px solid;
  }
  #myHeightChanges {
    width: 100px;
    height: 200px;
    background: green;
  }
</style>
<div style="display:flex; flex-direction:column">
  <div style="height:auto">
    <div id="myHeightChanges"></div>
  </div>
</div>