Lol, Chrome’s scrolling is like a trampoline sometimes.
No direct way to enable viewport offset in chrome, but you can try this JS snippet in the console:
```js
document.documentElement.style.scrollBehavior = 'auto';
```
Might help if the jumping is from dynamic content loading.
---
No direct way to enable viewport offset in chrome, but you can try this JS snippet in the console:
```js
document.documentElement.style.scrollBehavior = 'auto';
```
Might help if the jumping is from dynamic content loading.
---
