HTML table tag tutorial (23): row border color attribute BORDERCOLORDARK

HTML table tag tutorial (23): row border color attribute BORDERCOLORDARK

In rows, dark border colors can be defined individually.
Basic syntax
<TR Bordercolordark=color_VALUE>
Syntax explanation <br />When defining colors, you can use English color names or hexadecimal color values.
File example: 10-21.htm
Sets the color of the row's dark border.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-21.htm -->
03 <!-- File Description: Set the row dark border color-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set row dark border color</TITLE>
08 </HEAD>
09 <BODY>
10 <H1>Mainstream web design software</H1>
11 <TABLE BORDER=3 WIDTH=400 HEIGHT=100>
12 <TR Bordercolorlight=#336699 Bordercolordark=#ff0000>
13 <TD>Web Graphics Software</TD><TD>Fireworks</TD>
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 12 defines the dark border color of the row as #FF0000.

<<:  MySQL Null can cause 5 problems (all fatal)

>>:  Super simple implementation of Docker to build a personal blog system

Recommend

How to get the intersection/difference/union of two sets in mysql

Common scenarios of MySQL: getting the intersecti...

Detailed explanation of Vue's live broadcast function

Recently, the company happened to be doing live b...

Detailed explanation of MySQL combined index and leftmost matching principle

Preface I have seen many articles about the leftm...

Detailed explanation of Vue data proxy

Table of contents 1. What I am going to talk abou...

Detailed analysis of MySQL optimization of like and = performance

introduction Most people who have used databases ...

jQuery uses the canvas tag to draw the verification code

The <canvas> element is designed for client...

3 methods to restore table structure from frm file in mysql [recommended]

When mysql is running normally, it is not difficu...

MySQL implementation of lastInfdexOf function example

Sometimes MySQL needs to use a function similar t...

Solve the problem of docker images disappearing

1. Mirror images disappear in 50 and 93 [root@h50...

A brief discussion of the interesting box model of CSS3 box-sizing property

Everyone must know the composition of the box mod...

JavaScript event delegation principle

Table of contents 1. What is event delegation? 2....

Bootstrap 3.0 study notes grid system case

Preface In the previous article, we mainly learne...

Ideas and practice of multi-language solution for Vue.js front-end project

Table of contents 1. What content usually needs t...