Vectorials
Flash Perfection
3D Lessons
Tutorialkit
Markup Tutorials
Learn PHP
network
adv banner
HTML and CSS  Home HTML and CSS Tutorials How can I create tables with vivid colors with no spaces or lines between them?
rss

How can I create tables with vivid colors with no spaces or lines between them?

Author: Jeff Singer More by this author
Browse Pages: << <  1  2  3  4  5 > >>


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="400" 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>
&nbsp;<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>
&nbsp;
<BR>

</TD>
</TR>
</TABLE>

See Also:



print this page tell a friend subscribe to newsletter subscribe to rss
Rate this Material: Bad 1 2 3 4 5 Excellent
Browse Pages: << <  1  2  3  4  5 > >>

Add comments to "How can I create tables with vivid colors with no spaces or lines between them?"