position-sticky-async-zoom-1-ref.html (394B)
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: -50px; 16 width: 100px; 17 height: 100px; 18 background: green; 19 } 20 </style> 21 </head> 22 <body> 23 <div></div> 24 </body> 25 </html>