summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-page/page-margin-002-print.html
blob: 944d7efcfd08fbd2508d4d8d78e9dbb30c210487 (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
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-page-3/#at-page-rule">
<link rel="match" href="page-margin-002-print-ref.html">
<style>
  @page {
    margin: 10px 20px 30px 40px;
  }
  html {
    writing-mode: vertical-rl;
  }
  body {
    margin: 0;
  }
  .fullpager {
    width: 100vw;
    height: 100vh;
  }
</style>
<div class="fullpager" style="background:yellow;">
  first page
</div>
<div class="fullpager" style="background:cyan;">
  second page
</div>
<div class="fullpager" style="background:pink;">
  third page
</div>