|
I don't use tables so this might bring up wrong memories. If you are working with divisions (div) then I think it is best you use them for what they were designed for. You should never make an element (such as a div) expand to the objects inside it. For me, divs are part of the design process. They help us contain objects in the places we want them. To make one div inside another, you simply nest them:
<div>
<div>
</div>
</div>
Or, if you wish to continue what you are doing and using tables then simply set in the CSS something like:
#table {width: auto;
}
__________________
Please login or register to view this content. Registration is FREE - Tumblog with thoughts, quotes, links, videos, images and my creations.
Please login or register to view this content. Registration is FREE - The best free web browser.
Please login or register to view this content. Registration is FREE - Firefox is now Firefail.
|