summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/min-size-auto-overflow-clip-ref.html
blob: 64e6ff2d9994a74bea6fbf8be74de93239075006 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<meta charset="utf-8">
<style>
  .flex {
    display: flex;
    flex-direction: column;
  }
  .grid {
    display: grid;
    flex-basis: 20px;
    border: 1px solid;
  }
</style>
<div class="flex">
  <div class="grid">
    <div style="height: 50px;"></div>
  </div>
</div>