remove space below cell

  • Thread starter Thread starter Beffmans
  • Start date Start date
B

Beffmans

Hi

How do i remove the space below the 'hello'?

<TABLE>
<tbody>
<tr>
<td>
<asp:panel id="pnlTop" Runat="server">
<TABLE>
<TR>
<td>hello</td>
</TR>
</TABLE>
</asp:panel>
</td>
</tr>
</tbody>
</TABLE>


ch Beffmans
 
which space? there is spacing around the table, around the row and around
the cell. also the panel has spacing.

use css stykes and cellpadding and cellspacing.

-- bruce (sqlwork.com)
 
Back
Top