|
The div will have zero margin, its the tables cell padding that will mess it up for you, you would have to set cell padding to 0
You can also use a container div but you would still have the same problem if you use tables.
Best thig to do is not to use tables for layout, why would you want to put a div inside a table - your making things hard for yourself and overly complicated, use css for layout and tables for tabular data, you can style the table in the css stylesheet.
Last edited by bakerc; 12-16-2008 at 09:51 AM..
|