basic-pagination-003-print.html (538B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <link rel="help" href="https://drafts.csswg.org/css-page-3/"> 4 <link rel="match" href="basic-pagination-003-print-ref.html"> 5 <style> 6 @page { 7 size: 293px; 8 margin: 5px; 9 } 10 :root { 11 print-color-adjust: exact; 12 } 13 body { 14 margin: 0; 15 background: yellow; 16 } 17 div { 18 /* Forced breaks defeat break avoidance hints. */ 19 break-before: page; 20 break-after: avoid; 21 } 22 </style> 23 <div>Page one</div> 24 <div>Page two</div>