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

Sharing of web color contrast and harmony techniques

Color contrast and harmony In contrasting conditi...

Detailed explanation of Docker Compose deployment and basic usage

1. Docker Compose Overview Compose is a tool for ...

In-depth explanation of Mysql deadlock viewing and deadlock removal

Preface I encountered a Mysql deadlock problem so...

MySQL partitions existing tables in the data table

Table of contents How to operate Operation proces...

Vue implements adding watermark to uploaded pictures

This article shares the specific implementation c...

How to use Vuex's auxiliary functions

Table of contents mapState mapGetters mapMutation...

MySQL compression usage scenarios and solutions

Introduction Describes the use cases and solution...

How to remove the underline of a hyperlink using three simple examples

To remove the underline of a hyperlink, you need t...

Detailed explanation of HTML tables

Function: data display, table application scenari...

Install Linux rhel7.3 operating system on virtual machine (specific steps)

Install virtualization software Before installing...

JS implements random generation of verification code

This article example shares the specific code of ...

17 JavaScript One-Liners

Table of contents 1. DOM & BOM related 1. Che...

Detailed tutorial on deploying Apollo custom environment with docker-compose

Table of contents What is the Apollo Configuratio...

Open the app on the h5 side in vue (determine whether it is Android or Apple)

1. Development environment vue+vant 2. Computer s...