Hey guys,
in my Application I have got a div tag with a fixed size in it there is content which should be scrollable.
So I did this:
- <div style="overflow: scroll; width: 200px; height: 200px">
- <p>
- Content goes here
- </p>
- </div>
all in all this works fine the only problem I have is that the scrolling in the div container doesn't feel like native scrolling. So it stops immediately when moving my finger off the screen.
Is there a way to improve the scroll behavior?
Thanks for any answer!