row background in table

  • Thread starter Thread starter dik
  • Start date Start date
D

dik

Hi

I have a green background in my tablerow but i still can see the borders between the 2 columns (white line). How to get this fixed? (i tried bordercolor = green )

<TABLE>
<TR bgColor=#00e0>
<TD></TD>
<TD></TD>
</TR>
</TABLE>

ch Dik

**********************************************************************
Sent via Fuzzy Software @ http://www.fuzzysoftware.com/
Comprehensive, categorised, searchable collection of links to ASP & ASP.NET resources...
 
Hi

I have a green background in my tablerow but i still can see the borders
between the 2 columns (white line). How to get this fixed? (i tried
bordercolor = green )

<TABLE>
<TR bgColor=#00e0>
<TD></TD>
<TD></TD>
</TR>
</TABLE>

ch Dik

cellpadding/cellspacing on table:

<TABLE cellpadding="0" cellspacing="0">
<TR bgColor=#00e0>
<TD>&nbsp;</TD>
<TD>&nbsp;</TD>
</TR>
</TABLE>
 
thanks Craig
Craig Deelsnyder said:
cellpadding/cellspacing on table:

<TABLE cellpadding="0" cellspacing="0">
<TR bgColor=#00e0>
<TD>&nbsp;</TD>
<TD>&nbsp;</TD>
</TR>
</TABLE>
 
Back
Top