40 lines
657 B
HTML
40 lines
657 B
HTML
<!DOCTYPE html>
|
|
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
|
|
<style>
|
|
@page {
|
|
size: 600px 300px;
|
|
margin: 0;
|
|
}
|
|
:root {
|
|
print-color-adjust: exact;
|
|
direction: rtl;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
}
|
|
div {
|
|
break-after: page;
|
|
width: 100px;
|
|
height: 100px;
|
|
overflow: clip; /* Depending on font, glyphs may overflow. */
|
|
background: yellow;
|
|
}
|
|
div:nth-child(odd) {
|
|
margin-right: 500px;
|
|
}
|
|
div:nth-child(even) {
|
|
margin-top: 200px;
|
|
}
|
|
</style>
|
|
<div>
|
|
top left corner
|
|
</div>
|
|
<div>
|
|
bottom right corner
|
|
</div>
|
|
<div>
|
|
top left corner
|
|
</div>
|
|
<div>
|
|
bottom right corner
|
|
</div>
|