In the table, you can define the color of the upper left border separately, or the color of the lower right border in the cell. We call the border colors of these two positions a bright border.
Basic syntax<TABLE Bordercolorlight=color_VALUE>
Syntax explanationWhen defining colors, you can use English color names or hexadecimal color values to express them.
File example: 10-5.htmSets the color of the bright border of the table.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-5.htm -->
03 <!-- File description: Set the table bright border color-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the table bright border color</TITLE>
08 </HEAD>
09 <BODY>
10 <H1>Mainstream web design software</H1>
11 <TABLE BORDER=3 WIDTH=400 HEIGHT=100 Bordercolorlight=#336699>
12 <TR>
13 <TD>Web Image Software</TD><TD>Fireworks</TD>
14 </TR>
15 <TR>
16 <TD>Web page production software</TD><TD>Dreamweaver</TD>
17 </TR>
18 <TR>
19 <TD>Web animation software</TD><TD>Flash</TD>
20 </TR>
21 </TABLE>
22 </BODY>
23 </HTML>
Document descriptionLine 11 defines the bright border color of the table as #336699.