My question is that in web page we should apply smooth scrolling with CSS or Javascript. I know how to do it with both , i just want to know that Which would be a better option ?
2 Answers
Use css:
scroll-behavior: smooth;
1 Comment
Aditya Singh
Actually i know how to do it, i wanted to know which is more preferrable ?
Use scroll-behavior property in the html element to enable smooth scrolling for the whole page.
html {
scroll-behavior: smooth;
}
Using JavaScript read this.
1 Comment
Aditya Singh
Actually i know how to do it, i wanted to know which is more preferrable ?