Hello everyone, who knows if it is possible to get rid of horizontal scrolling in safari and chrome? Everything is fine in firefox.ScrollTimeline.zip (19.4 KB)
Can you give a little more detail about this and perhaps post a video of the incorrect/correct behavior?
Both Safari (on Big Sur 11.3) and Firefox seem to scroll horizontally in the same way for me. Given this is a horizontal document I'm unclear on why you don't want this. Also I'm uncertain on what "twitching" means in this context.
Safari
Firefox
Gotchya - seems you want to prevent the vertical scroll elasticity "bounce" when performing a horizontal scroll.
You could try adding this code to the Head HTML via the button in the Document Inspector:
<style>
body {
overflow: hidden;
}
</style>
Note that it means you will never be able to scroll in the body at all.
1 Like