page-size-004-print.html (636B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <link rel="help" href="https://www.w3.org/TR/css-page-3/#at-page-rule"> 4 <link rel="match" href="page-size-004-print-ref.html"> 5 <style> 6 @page { 7 size: 320px 200px; 8 margin: 0; 9 } 10 @page :first { 11 size: 100px; 12 } 13 :root { 14 print-color-adjust: exact; 15 } 16 body { 17 margin: 0; 18 } 19 </style> 20 <div style="width:50%; height:100px; background:yellow;"> 21 first page 22 </div> 23 <div style="width:50%; height:200px; background:cyan;"> 24 second page 25 </div> 26 <div style="width:50%; height:200px; background:pink;"> 27 third page 28 </div>