Click to See Complete Forum and Search --> : Attribute to keep td's from resizing?


jacen6678
01-13-2004, 08:31 AM
I am working with very specifically sized td elements filled with content from a DB. Sometimes, there is more content then can fit in the td and the td element stretches to display all the content.

Is there an attribute that forces the td element to maintain its size? It is fine if the content is resized or truncated as long as the td size does not change.

DaveSW
01-13-2004, 08:52 AM
how about putting all your content into a div:

<td>
<div style="height: 100px; width: 100px; overflow: auto;">

all content

</div>
</td>