HTML table markup tutorial (39): The bright border color attribute of the header BORDERCOLORLIGHT

HTML table markup tutorial (39): The bright border color attribute of the header BORDERCOLORLIGHT

In the table header, you can define the light border color separately.
Basic syntax
<TH Bordercolorlight=color_VALUE>
Syntax explanation <br />When defining colors, you can use English color names or hexadecimal color values.
File example: 10-37.htm
Set the color of the bright border of the table header.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-37.htm -->
03 <!-- File Description: Set the bright border color of the table header-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the bright border color of the table header</TITLE>
08 </HEAD>
09 <BODY>
10 <H1>Mainstream web design software</H1>
11 <TABLE BORDER=3 WIDTH=400 HEIGHT=100>
12 <TR>
13 <TH Bordercolorlight=#336699>Web Graphics Software</TH><TH>Fireworks</TH>
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 border color of the table header as color 3336699.

<<:  Detailed explanation of Docker common commands Study03

>>:  How to introduce img images into Vue pages

Recommend

Detailed installation history of Ubuntu 20.04 LTS

This article records the creation of a USB boot d...

Example of how to set up a third-level domain name in nginx

Problem Description By configuring nginx, you can...

How to install Composer in Linux

1. Download the installation script - composer-se...

Detailed tutorial on installing ElasticSearch 6.x in docker

First, pull the image (or just create a container...

A comprehensive understanding of Vue.js functional components

Table of contents Preface React Functional Compon...

Code for aligning form checkbox and radio text

Alignment issues like type="radio" and t...

JavaScript to achieve full or reverse selection effect in form

This article shares the specific code of JavaScri...

JavaScript to achieve the effect of clicking on the self-made menu

This article shares the specific code of JavaScri...

How to run JavaScript in Jupyter Notebook

Later, I also added how to use Jupyter Notebook i...

Detailed explanation of Vue monitoring attribute graphic example

Table of contents What is the listener property? ...

Some basic instructions of docker

Table of contents Some basic instructions 1. Chec...

A practical record of restoring a MySQL Slave library

Description of the situation: Today, I logged int...