View Full Version : Inline Scroll


Brown_Eyed_Girl
07-22-2003, 08:41 PM
Okay..so I have a table, and I want it to be a certain height. The problem is, I have too much information put in the table so it won't go to that height. There is a way to put a scrollbar in the tables, I just don't know how. Can anyone help me?? Thanks!

kittycat
07-22-2003, 08:53 PM
You can't put a scrollbar in the table, but you can in a div.

<div style="width: ##px; height: ##px; overflow: auto;">
text here
</div>

Just include that inside the table cell.