DEV Community

Discussion on: Implementing Smooth Scroll Using Javascript ⚡

Collapse
 
link2twenty profile image
Andrew Bone

You could also use scroll-behavior which has pretty good support and is just CSS.

html {
  scroll-behavior: smooth;
}
Enter fullscreen mode Exit fullscreen mode

Here's your demo with no JavaScript.

Collapse
 
eshimischi profile image
eshimischi

Safari doesn't support it tho without extra js polyfills

Collapse
 
rohank_2502 profile image
Rohan Kulkarni

Thanks was not knowing this