chromium/third_party/blink/web_tests/external/wpt/css/css-page/margin-boxes/dimensions-009-print-ref.html

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:[email protected]">
<meta name="flags" content="ahem">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<style>
  html {
    font: 16px/1 Ahem;
  }
  @page {
    margin: 0;
    width: 32em;
    height: 28em;
  }
  body {
    margin: 0;
  }
  .grid {
    display: grid;
    grid-template-columns: 6em auto 6em;
    grid-template-rows: 6em auto 6em;
    height: 100vh;
    overflow: clip;
  }
  .vertical-edge {
    display: flex;
  }
  .horizontal-edge {
    display: flex;
    flex-flow: column;
  }
</style>
<div class="grid">
  <div class="corner"></div>
  <div class="vertical-edge">
    <div style="width:7.5em; margin-bottom:4em; background:hotpink;">
      xxxxxxxxxxxxxxxxxx xxxxxxx
    </div>
    <div style="width:5em; margin-top:2em; margin-bottom:2em; background:cyan;">
     xxxxxxxxxxxx
    </div>
    <div style="width:7.5em; margin-top:4em; background:yellow;">
     xxxxxx
    </div>
  </div>
</div>