Animated scroll without JS
November 24, 2023
When you have a one page site, you may want to have a smooth scroll to anchor links. This is a common pattern in sites, and it's easy to do with CSS.
You need three elements for this to work:
- A link with an
hrefattribute pointing to an element with anidattribute using#. - The element with the
idattribute (make sure it’s the same as thehrefvalue without the#). - The css snippet below.
html { scroll-behavior: smooth;}No scrollIntoView or any JS needed! 🎉