HTML table markup tutorial (6): dark border color attribute BORDERCOLORDARK

HTML table markup tutorial (6): dark border color attribute BORDERCOLORDARK

In a table, you can define the color of the lower right border separately, or you can define the color of the upper left border in the cell. The border colors in these two positions are called dark border colors.
Basic syntax
<TABLE Bordercolordark=color_VALUE>
Syntax explanation <br />When defining colors, you can use English color names or hexadecimal color values.
File example: 10-6.htm
Sets the color of the table's dark border.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-6.htm -->
03 <!-- File Description: Set the table dark border color-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the table dark border color</TITLE>
08 </HEAD>
09 <BODY>
10 <H1>Mainstream web design software</H1>
11 <TABLE BORDER=3 WIDTH=400 HEIGHT=100 Bordercolorlight=#336699 Bordercolordark=#FF0000>
12 <TR>
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 11 defines the light and dark border colors of the table as #336699 and #FF0000.

<<:  Detailed explanation of the usage of the ESCAPE keyword in MySQL

>>:  Vue dynamic menu, dynamic route loading and refresh pitfalls

Recommend

MySQL 8.0.18 installation tutorial under Windows (illustration)

Download Download address: https://dev.mysql.com/...

MySQL data aggregation and grouping

We often need to summarize data without actually ...

Solution to define the minimum height of span has no effect

The span tag is often used when making HTML web pa...

How to deploy FastDFS in Docker

Install fastdfs on Docker Mount directory -v /e/f...

How to upgrade CentOS7 to CentOS8 (detailed steps)

This article uses a specific example to introduce...

Mysql5.6.36 script compilation, installation and initialization tutorial

Overview This article is a script for automatical...

Solve the problem that Navicat cannot connect to MySQL on the Linux server

At the beginning, I felt sad. The screenshots are...

Detailed example of how to implement transaction commit and rollback in mysql

Recently, we need to perform a scheduled migratio...

mysql5.6.zip format compressed version installation graphic tutorial

Preface: MySQL is a relational database managemen...

How to permanently change the host name in Linux

If you want to change your host name, you can fol...

HTML checkbox Click the description text to select/uncheck the state

In web development, since the checkbox is small an...

Mysql splits string into array through stored procedure

To split a string into an array, you need to use ...

Two examples of using icons in Vue3

Table of contents 1. Use SVG 2. Use fontAwesome 3...