I have following HTML code:
<div style="height: auto; width: 400px; overflow: hidden;" id= "parent">
//dynamic content which makes width of the parent to overflow
<div style= "height: 200; width: 400px; overflow: auto;" id= "child">
// dynamic content which makes width of the child div to overflow horizontally and vertically
</div>
</div>
Is there any way, I can scroll the parent div Horizontally while I am scrolling the child div? Actually, I am trying to freeze the headings(the content of the parent div) and want a scroll for the data (Content of the child div). Any help would be deeply appreciated.
Thanks