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

How to quickly modify the root password under CentOS8

Start the centos8 virtual machine and press the u...

How to try to add sticky effect to your CSS

Written in front I don’t know who first discovere...

jQuery achieves seamless scrolling of tables

This article example shares the specific code of ...

How to solve the problem of forgetting the root password of Mysql on Mac

I haven't used mysql on my computer for a lon...

Example of how to configure cross-domain failure repair in nginx

Nginx cross-domain configuration does not take ef...

TCP performance tuning implementation principle and process analysis

Three-way handshake phase Number of retries for c...

Some small methods commonly used in html pages

Add in the <Head> tag <meta http-equiv=&q...

Example of how to implement embedded table with vue+elementUI

During my internship in my senior year, I encount...

Sample code for implementing a background gradient button using div+css3

As the demand for front-end pages continues to in...

How to use nginx as a load balancer for mysql

Note: The nginx version must be 1.9 or above. Whe...

Introduction to JavaScript Number and Math Objects

Table of contents 1. Number in JavaScript 2. Math...

HTML framework_Powernode Java Academy

1. Framework A browser document window can only d...

How to redirect PC address to mobile address in Vue

Requirements: The PC side and the mobile side are...