Answers for "return to top of page html"

CSS
0

scroll to the top of the page

window.scrollTo({ top: 0, left: 0, behavior: "smooth" });
Posted by: Guest on May-25-2021
0

html css bring to page top

window.scroll({
  top: 0, 
  left: 0, 
  behavior: 'smooth'
});
Posted by: Guest on March-03-2021

Browse Popular Code Answers by Language