summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-page/page-name-margin-001-print.html
blob: 9514339e4545d3100d5abf1a7a5736b01a188167 (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
<!DOCTYPE html>
<html>
  <link rel="match" href="page-name-margin-001-print-ref.html"/>
  <link rel="help" href="https://www.w3.org/TR/css-page-3/#using-named-pages"/>
  <style>
@page a {
    margin: 0;
}
@page b {
    margin: 1cm;
}
@page c {
    margin: 2cm;
}
div {
    width: 1cm;
    height: 1cm;
    border: 2px solid red;
}
  </style>
  <body>
    <div style="page: a; border-color: lightblue"></div>
    <div style="page: b; border-color: pink"></div>
    <div style="page: c; border-color: gray"></div>
  </body>
</html>