Answers for "scroll-behavior not working"

CSS
1

scroll-behavior not working

/*Here is one solution if scroll-behavior does not work for you (this worked for me)*/

#example {
  -webkit-scroll-behavior: auto !important;
}

/*So just add -webkit- in front of the scroll-behavior!*/
Posted by: Guest on August-26-2021

Browse Popular Code Answers by Language