1791883.html (394B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 * { 6 scroll-snap-type: y mandatory; 7 scroll-snap-align: none end; 8 } 9 </style> 10 <script> 11 document.addEventListener('DOMContentLoaded', () => { 12 document.documentElement.contentEditable = true 13 document.execCommand('insertHorizontalRule', false, null) 14 }) 15 </script> 16 </head> 17 </html>