0Pricing
CSS Academy · Lesson

scroll-behavior: smooth

Enable smooth scrolling for anchor links and programmatic scrolls with scroll-behavior.

What is scroll-behavior?

scroll-behavior controls whether scrolling that is triggered by navigation (anchor links, JavaScript scrollTo()) should animate smoothly or jump instantly.

scroll-behavior: smooth

Setting scroll-behavior: smooth on the html or body element makes all page anchor link navigation animate smoothly:

html {
  scroll-behavior: smooth;
}

All lessons in this course

  1. overflow: hidden scroll auto clip
  2. scroll-behavior: smooth
  3. scroll-snap-type and scroll-snap-align
  4. Scrollbar Styling with ::-webkit-scrollbar
← Back to CSS Academy