I'm designing a mobile webpage and the following piece of CSS HAS to be present in order for the position: fixed items to work properly:
html, body { height: 100%; overflow: auto; }
However, after adding overflow: autothe scrollTo() method doesn't work anymore - no scrolling happens. Why is that? How do I fix it?