CSS Scroll Snap Help

Hey guys

I am trying to build a site with scroll snap in CSS, I can’t seem to get it to work without a divblock

<style>
body {
    scroll-snap-type: y mandatory;
}
.scrollsection {
    scroll-snap-align: start;
}
</style>

Here is the code I embedded right above the navbar

body overflow is set to scroll

i cant seem to get it to work, the scroll just jitters like crazy without any snap

any input is welcome.

Thanks


Here is my site Read-Only: LINK

Try this

body { scroll-snap-type: y mandatory; overflow-y: scroll; } .scrollsection { scroll-snap-align: start; }