From this I got my div to scroll horizontally.
overflow-x:scroll;
white-space: nowrap;
However, in mobile devices, this div also scrolls when the content is touched, I only want it to scroll when the scrollbar is touched.
The reason is that the div content has a slider which must be scrolled as well and the user has to be precise in order to touch the slider.
I only want the div to be scrolled when the scrollbar is touched. Is that possible?
Best