In the header, dark border colors can be defined separately.
Basic syntax<TH Bordercolordark=color_VALUE>
Syntax explanationWhen defining colors, you can use English color names or hexadecimal color values to express them.
File example: 10-38.htmSet the color of the dark border of the table header.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-38.htm -->
03 <!-- File description: Set the color of the dark border of the table header-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the dark border color of the table header</TITLE>
08 </HEAD>
09 <BODY>
10 <H1>Mainstream web design software</H1>
11 <TABLE BORDER=3 WIDTH=400 HEIGHT=100>
12 <TR>
13 <TH Bordercolorlight=#336699 Bordercolordark=#ff0000>Web page image software</TH>
<TH>Fireworks</TH>
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 13 defines the dark border color of the table header to #FF0000.