Can anyone please explain me what is CSS Scroll Snap and also i want to know what are its properties.
1 Like
CSS Scroll Snap is a property which allows the developer to create controlled scrolling experiences by describing snapping positions. Developers can lock the viewports or mark the layout boundaries for the user to finish scrolling.
For a long period of time, Javascript was being used to control the scrolling. However CSS Scroll Snap is being widely used for a better controlled experience.
Properties of CSS Scroll Snap are
Scroll Snap Type Property: This is to define the behaviour of scrolling container described by the developer.
Scroll Snap Align Property: This is to align the page elements when the CSS Scroll Snap is triggered.
You can read this blog to learn in detail about the CSS Scroll Snap
1 Like