JSFiddle - React, Tailwind, and code Playground

by 3rror404

HTML

<div>

</div>

CSS

:root {
    scroll-behavior: smooth;
}

div {
  height: 2000px;
  background: yellow;
}

JavaScript

document.querySelector('div').addEventListener('click', function() {
	console.log('clicked');
	window.scroll({
    top: 0,
    left: 10,
    behavior: 'auto'
  });
  //window.scroll(0, 0);
})