Reputation: 678
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 ?
Upvotes: 1
Views: 1213
Reputation: 700
Use scroll-behavior property in the html element to enable smooth scrolling for the whole page.
html {
scroll-behavior: smooth;
}
Using JavaScript read this.
Upvotes: -1