summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/printing/page-size-005-print.html
blob: 37876ae230edae36fa350657da278037aef00709 (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
<!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-size-005-print-ref.html">
<style>
  @page {
    size: 320px 200px;
    margin: 0;
  }
  @page :first {
    size: 500px;
  }
  body {
    margin: 0;
  }
</style>
<div style="width:50%; height:500px; background:yellow;">
  first page
</div>
<div style="width:50%; height:200px; background:cyan;">
  second page
</div>
<div style="width:50%; height:200px; background:pink;">
  third page
</div>