I am currently developing a fully web-based app-style layout.
One issue I'm facing is that the navigation menu jumps slightly when I use my S3 to auto-scroll to the top by dragging. However, if I scroll up manually without lifting my finger, this problem doesn't occur.
It appears that there might be a conflict between fixed positioning and the standard browser bar.
CSS:
#nav {
position: fixed;
bottom: 0;
..
}
Any suggestions on how to tackle this?