How can I create tables with vivid colors with
no spaces or lines between them?
example
THIS TABLE IS OUR TITLE AREA
In this example, the black region above is one table, and
this table contains this text. By setting CELLPADDING, BORDER,
and CELLSPACING all to 0 (ZERO), I can get a clean result!
Source Code
<TABLE WIDTH="550" CELLPADDING=0 CELLSPACING=0
BORDER=0 BGCOLOR="#000000">
<TR>
<TD>
<CENTER>
<FONT SIZE="3" COLOR="#EEEEEE" FACE="ARIAL">
<B>THIS TABLE IS OUR TITLE AREA</B></FONT>
</CENTER>
</TD>
</TR>
</TABLE>
<TABLE CELLPADDING=0 BORDER=0 CELLSPACING="0"
WIDTH="550" BGCOLOR="#66FFCC">
<TR>
<TD>
<FONT FACE="ARIAL">
<BR>
In this example, the black region above is one table, and
this table contains this text. By setting CELLPADDING, BORDER,
and CELLSPACING all to 0 (ZERO), I can get a clean result!
<BR>
<BR>
</FONT>
</TD>
</TR>
</TABLE>