page-name-fixed-pos-001-print-ref.html (325B)
1 <!DOCTYPE html> 2 <html> 3 <style> 4 div { 5 width: 1in; 6 height: 1in; 7 border: 1px solid black; 8 } 9 .fixed { 10 position: fixed; 11 left: 0.5in; 12 top: 0.5in; 13 border-color: blue; 14 } 15 </style> 16 <body> 17 <div class="fixed">fixed</div> 18 <div style="break-after: page">a</div> 19 <div>b</div> 20 </body> 21 </html>