fractional-covering-area-crash.html (402B)
1 <!DOCTYPE HTML> 2 <html> 3 <style> 4 #container { 5 scroll-snap-type: both mandatory; 6 overflow: overlay; 7 position: absolute; 8 height: 33554400px; 9 width: 33554400px; 10 } 11 12 #area { 13 scroll-snap-align: end; 14 position: absolute; 15 left: 33554400px; 16 top: -57971.9px; 17 width: 0px; 18 height: 33554400px; 19 } 20 </style> 21 <div id="container"> 22 <div id="area"></div> 23 </div> 24 25 </html>