I would like to center a div by clicking it. So if I\'m clicking a div I want it to scroll to the center of the browser viewport. I don\'t want to use
div
I know this question is old, but right now, you can use scrollIntoView:
For example:
document.body.scrollIntoView({ behavior: 'smooth', inline: 'center', block: 'center' });