I have a table with many rows on my page. I would like to set table's height, say for 500px, such that if the height of the table is bigger than that, a vertical scroll bar will appear. I tried to use CSS height attribute on the table, but it doesn't work.
|
Try using the Since you only want the vertical scroll, try this:
EDIT: Apparently
Note that this will cause the element to have 100% width, so if you don't want it to take up the entire horizontal width of the page, you need to specify an explicit width for the element as well. |
|||||||||||||||||
|
|
You need to wrap the table inside another element and set the height of that element. Example with inline css:
|
|||||||||||||||
|
max-heightinstead of justheightas the latter will force the table's height to be500px– Fred Dec 16 '10 at 4:13