I have a short element on the page, and I want to minimally scroll the page to bring the element into view. scroller.scrollTo('element-name') scrolls the page to the top of the element, but I would like something more like https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView
Is this possible today without calculation myself?
I have a short element on the page, and I want to minimally scroll the page to bring the element into view.
scroller.scrollTo('element-name')
scrolls the page to the top of the element, but I would like something more like https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIs this possible today without calculation myself?