You can assign smooth scrolling it to the element directly or to the whole document:
/* Smooth scrolling inside an element */
#my-element {
scroll-behavior: smooth;
}
/* Smooth scrolling on the whole document */
html {
scroll-behavior: smooth;
}
Let me know if that worked for you ![]()