Smooth scrolling

PHOTO EMBED

Wed Nov 09 2022 13:13:40 GMT+0000 (Coordinated Universal Time)

Saved by @Kristi #css #html

/**
 * Enable smooth scrolling on the whole document
 */
html {
	scroll-behavior: smooth;
}


/** Animations can cause issues for users who suffer from motion sickness and other conditions.
 * Disable smooth scrolling when users have prefers-reduced-motion enabled
 */
@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
content_copyCOPY

https://gomakethings.com/how-to-animate-scrolling-to-anchor-links-with-one-line-of-css/