Test Ipad Scrolling

by Mike Gleeson

HTML

<div style="width:500px; height:500px;" class="testOverflow">
    <div style="width:1000px; height:1000px;" class="testContent">
        test
    </div>
    
<div style="width:500px; height:500px;">
    <div style="width:1000px; height:1000px;" class="testContent">
        test
    </div>
</div></div>

CSS

.testContent
{
    color:rgb(255,0,0);
    background-color:Black;
}

.testOverflow
{
    overflow:scroll;
    -webkit-overflow-scrolling: touch;
}