Is it possible to make a HTML Table be able to scroll? I just need it to scroll horizontally.
Thanks,
Printable View
Is it possible to make a HTML Table be able to scroll? I just need it to scroll horizontally.
Thanks,
Put it inside a scrollable div
would I use style or is their an attribute for the DIV Element?
something like this:
This gives you scrollbars vertical and horizontal. If you want just horizontal, use an asp:panel and set the scrollbar property there.Code:<div style="width: 500px; height: 500px; overflow: auto;">
Thanks ediguy...that worked!
Actually, this didn't work. I just not got a chance to test it and before I was in a different page and didn't realize it. There doesn't seem to be a "scrollbar" property/attribute. I'm using an asp:Panel but just not sure how to set the scrolling.