HTML table markup tutorial (5): light border color attribute BORDERCOLORLIGHT

HTML table markup tutorial (5): light border color attribute BORDERCOLORLIGHT

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

<<:  Detailed explanation of how to deploy SpringBoot in docker and replace jar packages

>>:  Native JS to achieve blinds special effects

Recommend

Web front-end performance optimization

Web front-end optimization best practices: conten...

MySql8 WITH RECURSIVE recursive query parent-child collection method

background When developing a feature similar to c...

Linux kernel device driver kernel linked list usage notes

/******************** * Application of linked lis...

Detailed steps to modify MySQL stored procedures

Preface In actual development, business requireme...

How to automatically backup mysql remotely under Linux

Preface: Basically, whether it is for our own use...

JavaScript realizes the queue structure process

Table of contents 1. Understanding Queues 2. Enca...

SQL implementation of LeetCode (177. Nth highest salary)

[LeetCode] 177.Nth Highest Salary Write a SQL que...

A brief discussion on why daemon off is used when running nginx in docker

I'm very happy. When encountering this proble...

Three methods of inheritance in JavaScript

inherit 1. What is inheritance Inheritance: First...

VMware and CentOS system installation method to reset the root password

Today's Tasks 1. Choice of Linux distribution...

Graphical steps of zabbix monitoring vmware exsi host

1. Enter the virtualization vcenter, log in with ...

HTML meta explained

Introduction The meta tag is an auxiliary tag in ...

A brief analysis of MySQL explicit type conversion

CAST function In the previous article, we mention...