position-fixed-async-zoom-3-ref.html (411B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta name="viewport" content="width=device-width, initial-scale=2.0"> 5 <style> 6 html { 7 scrollbar-width: none; 8 } 9 body { 10 height: 3000px; 11 margin: 0; 12 } 13 div { 14 position: fixed; 15 top: 20px; 16 right: 20px; 17 height: 100px; 18 width: 100px; 19 background: blue; 20 } 21 </style> 22 </head> 23 <body> 24 <div></div> 25 </body> 26 </html>