My fixed position container on iOS allows for scrolling past the content to reveal the container beneath, unlike on Android. Is it possible to make iOS behave like Android in this regard?
When viewing my content on iOS, I can scroll to see the yellow container background, but this is not the case on Android:
https://jsfiddle.net/45enwzdf/1/
<div id = "container">
<div id="contents">
start
</div>
</div>
#container{
position:fixed;
height:100px;
width:200px;
background:yellow;
overflow: hidden;
overflow-y: scroll;
border:1px black solid;
}
#contents{
height:1000px;
width:200px;
background:green;
}