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

Detailed steps to download Tomcat and put it on Linux

If you have just come into contact with Linux, th...

An enhanced screenshot and sharing tool for Linux: ScreenCloud

ScreenCloud is a great little app you didn’t even...

Pure CSS to achieve three-dimensional picture placement effect example code

1. Percentage basis for element width/height/padd...

MYSQL Operator Summary

Table of contents 1. Arithmetic operators 2. Comp...

Detailed explanation of the calculation method of flex-grow and flex-shrink in flex layout

Flex(彈性布局) in CSS can flexibly control the layout...

How to modify the time in centos virtual machine

The one above shows the system time, and the one ...

How to configure path alias for react scaffolding

The react version when writing this article is 16...

Some settings of Div about border and transparency

frame: Style=”border-style:solid;border-width:5px;...

How to implement distributed transactions in MySQL XA

Table of contents Preface XA Protocol How to impl...

Docker connects to a container through a port

Docker container connection 1. Network port mappi...

JS Easy to understand Function and Constructor

Table of contents 1. Overview 1.1 Creating a func...

Using JS to implement binary tree traversal algorithm example code

Table of contents Preface 1. Binary Tree 1.1. Tra...

W3C Tutorial (15): W3C SMIL Activities

SMIL adds support for timing and media synchroniz...