fixedpos-006-print.html (782B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1399456"> 4 <link rel="match" href="fixedpos-006-print-ref.html"> 5 <style> 6 body { margin: 0; } 7 </style> 8 There should be five pages. 9 <div style="position:fixed; bottom:4em;"> 10 This should repeat on every page. 11 </div> 12 <div style="position:absolute; top:100vh;"> 13 This should be on the second page. 14 <div style="position:fixed; bottom:2em;"> 15 This should also repeat on every page. 16 </div> 17 <div style="position:absolute; top:100vh; height:300vh;"> 18 This should be on the third page. 19 <div style="position:fixed; bottom:0;"> 20 Even this should repeat on every page. 21 </div> 22 </div> 23 </div>