I have the following html structure
<div style="overflow-x:auto;overflow-y:hidden;position:relative">
<div style="position:absolute; top:0;bottom:0;padding-top:30px">
</div>
</div>
When the inner div expands the outer bar gets its scroll bars. But the scroll bars appear on top of the inner div (blocking its contents). Works fine in firefox and IE.
I need the inner div to be positioned absolutely.
Someone help please..