Attribute to keep td's from resizing?

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. <br />
<br />
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.<!--content-->how about putting all your content into a div:<br />
<br />
<td><br />
<div style="height: 100px; width: 100px; overflow: auto;"><br />
<br />
all content<br />
<br />
</div><br />
</td><!--content-->
 
Back
Top