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

Install MySQL 5.7.17 in win10 system

Operating system win10 MySQL is the 64-bit zip de...

Implementation of Docker to build private warehouse (registry and Harbor)

As more and more Docker images are used, there ne...

Alibaba Cloud Centos7 installation and configuration of SVN

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

HTML form tag tutorial (2):

This tutorial introduces the application of vario...

Quick solution for forgetting MySQL8 password

Preface When we forget the MySQL database passwor...

Various methods to implement the prompt function of text box in html

You can use the attribute in HTML5 <input="...

Detailed explanation of MySQL alter ignore syntax

When I was at work today, the business side asked...

Example of implementing GitHub's third-party authorization method in Vue

Table of contents Creating OAuth Apps Get the cod...

MySQL 5.7.18 Installer installation download graphic tutorial

This article records the detailed installation tu...

How to build a private Docker repository using Harbor

Table of contents 1. Open source warehouse manage...

Briefly understand the two common methods of creating files in Linux terminal

We all know that we can use the mkdir command to ...