fixedpos-010-print-ref.html (856B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <style> 4 @page { 5 size: 400px; 6 margin: 0; 7 } 8 @page large { 9 size: 500px 400px; 10 } 11 :root { 12 print-color-adjust: exact; 13 } 14 body { 15 margin: 0; 16 } 17 </style> 18 This page should <em>not</em> have a blue box. 19 <div style="page:large;"> 20 <div style="float:right; margin-top:300px; width:100px; height:100px; background:blue;"></div> 21 <div style="width:400px;"> 22 This page should have a blue box in the bottom right corner. 23 </div> 24 <div style="break-before:page;"> 25 <div style="float:right; margin-top:300px; width:100px; height:100px; background:blue;"></div> 26 <div style="width:400px;"> 27 This page should have a blue box in the bottom right corner. 28 </div> 29 </div> 30 </div> 31 This page should <em>not</em> have a blue box.