Associate
- Joined
- 6 Feb 2003
- Posts
- 1,105
- Location
- London
Basically I have a table inside a div that scrolls its content..not in safari 2 however. The table simply pops out the bottom of the div instead of being scrollable. Works in all other browsers..
Hope somebody has seen this before and can give me a hand!
Code:
.scroller { width: 330px; height: 70px; border: 1px solid #EDEDED; position: relative; overflow-x: hidden; overflow-y: auto; }
.scroller table { width: 330px; font-size: 11px; border-collapse: collapse; }
<div class="scroller">
<table>
...
</table>
</div>
Hope somebody has seen this before and can give me a hand!