HTML table markup tutorial (22): row border color attribute BORDERCOLORLIGHT

HTML table markup tutorial (22): row border color attribute BORDERCOLORLIGHT

Within rows, light border colors can be defined individually.
Basic syntax
<TR Bordercolorlight=color_VALUE>
Syntax explanation <br />When defining colors, you can use English color names or hexadecimal color values.
Document example: 10-20.htm
Sets the color of the row's light border.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-20.htm -->
03 <!-- File Description: Set the row bright border color-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the row bright 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>
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 light border color of the row as #336699.

<<:  MySQL stored procedure in, out and inout parameter examples and summary

>>:  Native JS to implement breathing carousel

Recommend

Alibaba Cloud applies for a free SSL certificate (https) from Cloud Shield

Because the project needs to use https service, I...

Node script realizes automatic sign-in and lottery function

Table of contents 1. Introduction 2. Preparation ...

Alibaba Cloud Centos7 installation and configuration of SVN

1. Install SVN server yum install subversion 2. C...

How to modify the initial password of a user in mysql5.7

When users install MySQL database for the first t...

Detailed explanation of Kubernetes pod orchestration and lifecycle

Table of contents K8S Master Basic Architecture P...

Pros and Cons of Vite and Vue CLI

There is a new build tool in the Vue ecosystem ca...

Reasons and solutions for not being able to detect array changes in Vue2

Table of contents Workaround Why can't I moni...

Example code for implementing WeChat account splitting with Nodejs

The company's business scenario requires the ...

Detailed explanation of Docker Swarm concepts and usage

Docker Swarm is a container cluster management se...

CSS performance optimization - detailed explanation of will-change usage

will-change tells the browser what changes will h...

Recommend a cool interactive website made by a front-end engineer

Website link: http://strml.net/ By Samuel Reed Ti...

MySQL 8.0 user and role management principles and usage details

This article describes MySQL 8.0 user and role ma...