animationsRauno
Smooth Scroll for Anchors
SHOULD
SHOULD: Use `scroll-behavior: smooth` for in-page anchors, with `scroll-margin-top` on targets so headings clear any sticky header.
Use scroll-behavior: smooth for navigating to in-page anchors with appropriate offset
html { scroll-behavior: smooth; }
:target { scroll-margin-top: 5rem; }Bad
Good
Why it matters
Instant jumps to anchor links are disorienting — users lose context of where they are on the page. Smooth scrolling maintains spatial awareness and creates a more polished navigation experience.
References