Link to home
Start Free TrialLog in
Avatar of john8217
john8217

asked on

scrollable table cell

I have web pages that all have the same table structure, there are just two cells: a picture in the top cell and a description in the bottom cell. I want the bottom cell to always be the same, specific height. But on some bottom cells, the description will exceed the cell's capacity, causing that cell to expand. Is it possible, using either Dreamweaver CS3 or just straight HTML or some other scripting language, to set it so that if the content exceeds the cell capacity, the cell will not expand and will just offer a scroll bar instead?
ASKER CERTIFIED SOLUTION
Avatar of Kiran Paul VJ
Kiran Paul VJ
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Better use "overflow:auto;" instead, since overflow-x and overflow-y are not so well supported throughout browsers yet. Of course, with overflow:auto, the browser will put both the horizontal (overflow-x) as well as the vertical (overflow-y) sliders on some occasions. Whether this is what you want or not, is not clear (but I just wanted to point this out)