I've been building a responsive site and have bumped in to a problem with landscape mobile devices (or more accurately, that particular specified resolution(handheld, screen and (min-width: 480px))) where the scrollbar will only scroll half way down the content in a scrollable container.
If i try to scroll any further it jumps back to the half way point and won't do it.
Here is my CSS:
.Container{
margin: 3% 0 0 10%;
width: 80%;
}
.Content{
max-height: 80%;
height: 80%;
overflow-y: scroll;
}
and here is the html:
<div class="Container" style="display: none;">
<div class="Header">
<h5>Help</h5>
</div>
<div class="Content">
<div class="jqContentdiv">
<p>Lorem ipsum donsequat urna (i've removed the rest of the content to keep this tidy)</p>
</div>
<div class="userActions">
<a href="#"><p>Close</p></a>
</div>
</div>
</div>
jqContentdiv is just a container floated left.
It's probably important to note that mobile Portrait is fine but i've noticed that if you scroll to the bottom in portrait and then switch to landscape, the scrollbar goes to the halfway point and will go no further. I'm presuming that's linked somehow.
Have any of you come across this before? Any assistance on this would be greatly appreciated.