blob: 0a40acc0eb33bf3f42529a067d9f7e5315f8ac54 (
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
30
31
32
33
34
|
<!DOCTYPE html>
<style>
@page {
size: 20in 5in;
margin: 0;
}
div {
position: absolute;
background: blue;
width: 20px;
height: 20px;
}
.upper {
top: 0;
}
.lower{
/* This accounts for the difference in @page{ size: ... }, as long as the
* page is placed aligned to the upper left corner of the paper.
*/
bottom: 2in;
}
.left{
left: 0;
}
.right{
right: 0;
}
</style>
<body>
<div class="upper left"></div>
<div class="upper right"></div>
<div class="lower left"></div>
<div class="lower right"></div>
</body>
|