1

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 2

0

Use css:

scroll-behavior: smooth;

Sign up to request clarification or add additional context in comments.

1 Comment

Actually i know how to do it, i wanted to know which is more preferrable ?
-1

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

Actually i know how to do it, i wanted to know which is more preferrable ?

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.