DEV Community

Discussion on: React Component to Smooth Scroll to the Top

Collapse
 
bramus profile image
Bramus!

You don't need JS for this, as you achieve this with only CSS.

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

☝️ If you now link to #top, your browser will smoothscroll to the top of the page (you don't even need an anchor/element with that name)

DONE. 😱

(Not supported in Safari though — Meh 😕)