Table's troublessss

C

Carlos A.

Hello all
I work with Visual Studio 2005 VB code.
My problem is when I insert a table into another table. It exist a space
between the table and the cells that contains this table.
I tried with ASP and HTML tables and the same occurs.
I also verified that CellSpacing=0 and Cellpadding=0 also I verified the no
presence of <p> and <br> tags in HTML code.

Someone can help me please?
Thanks.
 
P

Przemek Ptasznik

Carlos A. napisa³(a):
Hello all
I work with Visual Studio 2005 VB code.
My problem is when I insert a table into another table. It exist a space
between the table and the cells that contains this table.
I tried with ASP and HTML tables and the same occurs.
I also verified that CellSpacing=0 and Cellpadding=0 also I verified the no
presence of <p> and <br> tags in HTML code.

Someone can help me please?
Thanks.

Try to set margins to 0 for nested table element (in CSS).


table table{
margin:0;
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top