HTML table markup tutorial (40): Dark border color attribute of the header BORDERCOLORDARK

HTML table markup tutorial (40): Dark border color attribute of the header BORDERCOLORDARK

In the table header, you can define the dark border color separately.
Basic syntax
<TH Bordercolordark=color_VALUE>
Syntax explanation <br />When defining colors, you can use English color names or hexadecimal color values.
File example: 10-38.htm
Set the color of the dark border of the table header.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-38.htm -->
03 <!-- File Description: Set the dark border color of the header -->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the dark border color of the 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 Image Software</TH>
<TH>Fireworks</TH>
14 </TR>
15 <TR>
16 <TD>Web page creation 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>
File Description <br />Line 13 defines the dark border color of the header as #FF0000.

<<:  How to deploy and start redis in docker

>>:  MySQL common statements for viewing transactions and locks

Recommend

MySQL 8.0 Window Function Introduction and Summary

Preface Before MySQL 8.0, it was quite painful to...

Working principle and example analysis of Linux NFS mechanism

What is NFS? network file system A method or mech...

Detailed explanation of the difference between tinyint and int in MySQL

Question: What is the difference between int(1) a...

Tips on HTML formatting and long files for web design

<br />Related articles: 9 practical suggesti...

Mysql classic high-level/command line operation (quick) (recommended)

Since I need to learn how to build servers and da...

CSS multi-level menu implementation code

This is a pretty cool feature that makes web page...

HTML Marquee character fragment scrolling

The following are its properties: direction Set th...

Detailed explanation of the process of installing msf on Linux system

Or write down the installation process yourself! ...

Differences and comparisons of storage engines in MySQL

MyISAM storage engine MyISAM is based on the ISAM...

Basic learning tutorial of table tag in HTML

Table label composition The table in HTML is comp...

Today I encountered a very strange li a click problem and solved it myself

...It's like this, today I was going to make a...