Home > Article > Web Front-end > Why Does ScrollIntoView() Cause Horizontal Page Shifts?
When using ScrollIntoView() to bring a specific item into view within a scrolling container, an unexpected horizontal movement of the entire page can occur when scrolling upwards. This issue arises particularly when the scrolling container is positioned fixedly within the page.
To rectify this behavior, consider using the following code:
element.scrollIntoView({ behavior: 'smooth', block: 'nearest', inline: 'start' })
This code introduces additional options to the scrollIntoView() function:
By specifying inline: 'start', we prevent the horizontal shift of the page. Note that the nearest and start values may need to be adjusted based on your specific requirements.
The above is the detailed content of Why Does ScrollIntoView() Cause Horizontal Page Shifts?. For more information, please follow other related articles on the PHP Chinese website!