Click here to Skip to main content
15,892,161 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello friends

I am developing a fixed header table for this i used the css trick by making two divs one is outer div and one is inner div.The outer div has Horizontal scrolling and the inner div has
vertical scrolling. This is working fine in all browser on windows machine. But i am facing a problem for IPAD

In IPAD when i try to scroll it horizontally by touching inner div it doesn't scroll horizontally.
This scroll fine when i scroll by header part of outer div.

HTML
<div id="outer" style="overflow-x:scroll;overflow-y:hidden">
<table id="header"><tr><td>header</td></tr></table>
<div id="inner" style="overflow-y:scroll;overflow-x:hidden">
<table id="content"><tr><td>content</td></tr></table>
</div>
</div>


Please suggest some solution for this

Thanks You
Posted
Updated 26-Aug-13 22:59pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900