page-size-005-print-ref.html (553B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <style> 4 @page { 5 size: 320px 200px; 6 margin: 0; 7 } 8 @page :first { 9 size: 500px; 10 } 11 :root { 12 print-color-adjust: exact; 13 } 14 body { 15 margin: 0; 16 } 17 </style> 18 <div style="width:250px; height:500px; background:yellow;"> 19 first page 20 </div> 21 <div style="break-before:page; width:160px; height:200px; background:cyan;"> 22 second page 23 </div> 24 <div style="break-before:page; width:160px; height:200px; background:pink;"> 25 third page 26 </div>