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

React implements the sample code of Radio component

This article aims to use the clearest structure t...

MySQL log trigger implementation code

SQL statement DROP TRIGGER IF EXISTS sys_menu_edi...

How to create a new user in CentOS and enable key login

Table of contents Create a new user Authorize new...

Detailed explanation of nginx request header data reading process

In the previous article, we explained how nginx r...

How to use docker to deploy Django technology stack project

With the popularity and maturity of Docker, it ha...

How to handle the tcp_mark_head_lost error reported by the Linux system

Problem Description Recently, a host reported the...

Detailed explanation of Windows time server configuration method

Recently, I found that the company's server t...

MySQL multi-master and one-slave data backup method tutorial

Overview Operations on any one database are autom...

Build a severe weather real-time warning system with Node.JS

Table of contents Preface: Step 1: Find the free ...

Example of how to install kong gateway in docker

1. Create a Docker network docker network create ...

Teach you how to install mysql database on Mac

Download MySQL for Mac: https://downloads.mysql.c...

Description of meta viewport attribute in HTML web page

HTML meta viewport attribute description What is ...