Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Attributes for <TD ...>
BORDERCOLOR = color expression
BORDERCOLORLIGHT = color expression
BORDERCOLORDARK = color expression

BORDERCOLOR, BORDERCOLORLIGHT, and BORDERCOLORDARK work just like their counterparts in the <TABLE ...> tag to set the border colors of the table cell. These attributes work in MSIE 4 and up and in Netscape 6. Because these attributes only effect the border around an individual cell, not the outer border of a table, they are not generally useful for producing a profound effect on the look of a table. These attributes are only in effect if you set the BORDER attribute to a positive number.

BORDERCOLOR sets the color of the entire border around a cell:

<TABLE BORDER>

<TR>
    <TD BORDERCOLOR=LIME>Starflower</TD>
    <TD>Spiritual guidance and inspiration</TD>
    </TR>

<TR>
    <TD BORDERCOLOR=RED>Hallie</TD>
    <TD>Logistics and supply coordination</TD>
    </TR>
<TR>
    <TD BORDERCOLOR=ORANGE>Mary</TD>
    <TD>Communication infrastructure</TD>
    </TR>

</TABLE>

which gives us this table:

Starflower Spiritual guidance and inspiration
Hallie Logistics and supply coordination
Mary Communication infrastructure

demonstrates the BORDERCOLORLIGHT and BORDERCOLORDARK attributes BORDERCOLORLIGHT sets the color of the upper and left corners of the cell. BORDERCOLORDARK sets the colors of the lower and right corners of the cell. To remember which attributes effect which sides, remember that cells are generally rendered as being indented into the table, and the light source is thought of coming from the upper left.

For example, the following table sets the "dark" and "light" colors of several cells:

<TABLE BORDER>

<TR>
    <TD BORDERCOLORDARK=BLUE BORDERCOLORLIGHT=YELLOW>Starflower</TD>
    <TD>Spiritual guidance and inspiration</TD>
    </TR>

<TR>
    <TD BORDERCOLORDARK=PURPLE BORDERCOLORLIGHT=ORANGE>Hallie</TD>
    <TD>Logistics and supply coordination</TD>
    </TR>
<TR>
    <TD BORDERCOLORDARK=TEAL BORDERCOLORLIGHT=RED>Mary</TD>
    <TD>Communication infrastructure</TD>
    </TR>

</TABLE>

which gives us this table:

Starflower Spiritual guidance and inspiration
Hallie Logistics and supply coordination
Mary Communication infrastructure

 
 
  Copyright 1997-2002 Idocs inc. Published under the terms of the Open Content License Design by Interspire