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

How to use the realip module in Nginx basic learning

Preface There are two types of nginx modules, off...

Optimize MySQL with 3 simple tweaks

I don't expect to be an expert DBA, but when ...

MySQL Index Optimization Explained

In daily work, we sometimes run slow queries to r...

Web Design Experience: Self-righteous Web Designers

1. Trash or Classic? Web technology updates very ...

Teach you how to install mysql database on Mac

Download MySQL for Mac: https://downloads.mysql.c...

Detailed explanation of flex layout in CSS

Flex layout is also called elastic layout. Any co...

Summary of various methods of MySQL data recovery

Table of contents 1. Introduction 2. Direct recov...

Details on how to use class styles in Vue

Table of contents 1. Boolean 2. Expression 3. Mul...

How to implement blank space in Taobao with CSS3

Make a blank space for Taobao: When you shrink th...

How to Check Memory Usage in Linux

When troubleshooting system problems, application...

Summary of common docker commands

Docker installation 1. Requirements: Linux kernel...

Problems encountered in using MySQL

Here are some problems encountered in the use of ...

The best explanation of HTTPS

Good morning everyone, I haven’t updated my artic...