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

js implements a simple countdown

This article example shares the specific code of ...

Detailed explanation of a method to rename procedure in MYSQL

Recently I have used the function of renaming sto...

js realizes the magnifying glass effect of shopping website products

This article shares the specific code of js to ac...

Detailed explanation of script debugging mechanism in bash

Run the script in debug mode You can run the enti...

Sample code for implementing DIV suspension with pure CSS (fixed position)

The DIV floating effect (fixed position) is imple...

Example explanation of alarm function in Linux

Introduction to Linux alarm function Above code: ...

Detailed Linux installation tutorial

(Win7 system) VMware virtual machine installation...

js implements custom drop-down box

This article example shares the specific code of ...

Implementation example of Docker rocketmq deployment

Table of contents Preparation Deployment process ...

Detailed introduction to logs in Linux system

Table of contents 1. Log related services 2. Comm...

Solve the black screen problem after VMware installs Linux system and starts

1. Installation environment 1. HUAWEI mate x cpu ...

Getting Started with Front-End Vue Unit Testing

Table of contents 1. Why do we need unit testing?...