HTML table markup tutorial (29): cell light border color attribute BORDERCOLORLIGHT

HTML table markup tutorial (29): cell light border color attribute BORDERCOLORLIGHT

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

<<:  How to install openjdk in docker and run the jar package

>>:  A brief discussion on the matching rules of host and user when Mysql connects to the database

Recommend

Solve the problem of using less in Vue

1. Install less dependency: npm install less less...

How to load third-party component libraries on demand in Vue3

Preface Take Element Plus as an example to config...

Detailed explanation of Vue data proxy

Table of contents 1. What I am going to talk abou...

How to use docker to deploy front-end applications

Docker is becoming more and more popular. It can ...

A brief discussion on several ways to implement front-end JS sandbox

Table of contents Preface iframe implements sandb...

Alibaba Cloud Server Ubuntu Configuration Tutorial

Since Alibaba Cloud's import of custom Ubuntu...

Detailed explanation of querying JSON format fields in MySQL

During the work development process, a requiremen...

How to implement the @person function through Vue

This article uses vue, and adds mouse click event...

Implementation of nginx flow control and access control

nginx traffic control Rate-limiting is a very use...

How to enable MySQL remote connection

For security reasons, MySql-Server only allows th...

Causes and solutions for MySQL master-slave synchronization delay

For historical reasons, MySQL replication is base...

WeChat applet implements fixed header and list table components

Table of contents need: Function Points Rendering...

Detailed explanation of MySQL master-slave replication and read-write separation

Article mind map Why use master-slave replication...

Detailed example code of mysql batch insert loop

background A few days ago, when I was doing pagin...