blob: 1da29d334d7a361c15e9d63718d216d83070df85 (
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-006-print-ref.html">
<style>
@page {
size: 200px 320px;
margin: 10px;
}
@page :first {
margin-top: 100px;
}
body {
margin: 8px;
}
</style>
<div style="height:202px;">
first page
</div>
<div style="break-before:page; height:300px;">
second page
</div>
<div style="break-before:page; height:300px;">
third page
</div>
|