Last active
December 10, 2023 17:04
-
-
Save resource11/ab29353f1df1a72c32a3dd95f5f75e5b to your computer and use it in GitHub Desktop.
A CSS snippet for leveraging a smooth scroll behavior in an accessible manner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Smooth scrolling */ | |
@media (prefers-reduced-motion: no-preference) { | |
:root { | |
scroll-behavior: smooth; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks, it really helps.