Here’s my current HTML / CSS: http://jsfiddle.net/S8Bne/
And here’s a screenshot that annotates what I’d like to try to do:

Basically, I’d like the width of the parent TD to dynamically wrap based on the width of the nested div. Is this possible?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Well…as Sheepy pointed out, what you are asking does not seem to make sense, initially. But if you really want to make the TD adjust with the inner DIV, you will need to do some JavaScript…
Say, you have the following table cell:
You could have the following javascript calls:
And then, you can set the width of the div:
This way, you can let the cell width to adjust to its inner div’s width, which is based on its parent cell’s width! :p
Example: http://jsfiddle.net/william/S8Bne/89/
Note that I have used the jQuery library in the code snippet.
Is this what you are after?