Tuvia Khusid
Tuvia Khusid

Reputation: 872

How to make div scrollable in ipad?

When i try on desktop the div scrolling works. But in ipad it doesn't work. Here is my code.

Html:

<div id="devicesContent" >
     <table></table>
</div>

css:

#devicesContent{
      position: absolute;
      top: -625px;
      height: 565px;
      width: 100%;
      display: block;
      overflow-y:scroll;
      -webkit-overflow-scrolling: touch;
}

What am i missing?

Thanks!

Upvotes: 0

Views: 303

Answers (1)

Shrinivas Pai
Shrinivas Pai

Reputation: 7691

iScroll Works just like the native controls that have one-finger scrolling.

Upvotes: 2

Related Questions