Joel > Quoting "chris@martiantechnologies.com" : > > If I can achieve this quickly and easily I will move away from the use of > > tables for presentation, but at the moment it appears that table-based > > presentation is the only means to achieve what is required by my paymasters. > > Not sure if this is what you're looking for, but CSS has overflow rules. > "overflow: auto" should put a scrollbar on your div (or td) so the content > won't push the boundary. Thanks for the response - unfortunately this is not desirable. If we have the following table: ------------------------------- | | | | | | | A | | | | | ------------------------------- | | | | | | | | | | | | ------------------------------- If I increase the content in "A", I want the following to happen: ------------------------------- | | | | | | | A | | | | | | | | | | | | | | | | | ------------------------------- | | | | | | | | | | | | ------------------------------- Rather than: ------------------------------- | | | | | | | A | | | | | |---------|---------| | | | | | | | | | | | ----------- |---------|---------| | | | | | ----------- Regards Chris Marsh