blob: 52bf73609089087e0310c8a5d0453f88be9d3617 (
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
29
|
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<style>
@page {
margin: 0;
}
html {
writing-mode: vertical-lr;
}
body {
margin: 0;
}
.fullpager {
break-before: page;
margin-left: 40px;
margin-top: 10px;
width: calc(100vw - 60px);
height: calc(100vh - 40px);
}
</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>
|