page-margin-002-print-ref.html (610B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <style> 4 @page { 5 margin: 0; 6 } 7 :root { 8 print-color-adjust: exact; 9 writing-mode: vertical-rl; 10 } 11 body { 12 margin: 0; 13 } 14 .fullpager { 15 break-before: page; 16 margin-right: 20px; 17 margin-top: 10px; 18 width: calc(100vw - 60px); 19 height: calc(100vh - 40px); 20 } 21 </style> 22 <div class="fullpager" style="background:yellow;"> 23 first page 24 </div> 25 <div class="fullpager" style="background:cyan;"> 26 second page 27 </div> 28 <div class="fullpager" style="background:pink;"> 29 third page 30 </div>