Skip to content

Instantly share code, notes, and snippets.

@attilah
Created May 5, 2025 15:56
Show Gist options
  • Save attilah/ceb27a0d7b7c7cf1190bf488efb54e3e to your computer and use it in GitHub Desktop.
Save attilah/ceb27a0d7b7c7cf1190bf488efb54e3e to your computer and use it in GitHub Desktop.
3-page letter
<html>
<head>
<meta charset="UTF-8" />
<title>3 Page Test Letter</title>
<style>
@page {
size: Letter;
margin: 0;
}
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
overflow: auto;
background-color: white;
margin: 0;
padding: 0;
}
body {
position: relative;
background-size: contain;
margin: 0;
padding: 0;
}
.page {
margin: 0;
padding: 0;
width: 8.5in;
height: 11in;
position: relative;
background-size: contain;
overflow: hidden;
}
.n {
color: #f00;
font-size: 50em;
font-style: normal;
text-align: center;
}
</style>
</head>
<body>
<div class="page">
<div class="n">1</div>
</div>
<div class="page">
<div class="n">2</div>
</div>
<div class="page">
<div class="n">3</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment