HTML table markup tutorial (38): Border color attribute of the header BORDERCOLOR

HTML table markup tutorial (38): Border color attribute of the header BORDERCOLOR

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

<<:  Detailed explanation of the differences and usages of Linux system shutdown commands

>>:  Vant uploader implements the drag-and-drop function for uploading pictures (set as cover)

Recommend

Good website copywriting and good user experience

Looking at a website is actually like evaluating a...

Install and configure MySQL 5.7 under CentOS 7

This article tests the environment: CentOS 7 64-b...

Nest.js authorization verification method example

Table of contents 0x0 Introduction 0x1 RBAC Imple...

Vue implements student management function

This article example shares the specific code of ...

Vue implements countdown between specified dates

This article example shares the specific code of ...

Detailed explanation of how to migrate a MySQL database to another machine

1. First find the Data file on the migration serv...

js to realize web message board function

This article example shares the specific code of ...

Summary of Button's four Click response methods

Button is used quite a lot. Here I have sorted ou...

How to allow remote access to open ports in Linux

1. Modify the firewall configuration file # vi /e...

Vue's global watermark implementation example

Table of contents 1. Create a watermark Js file 2...

SVG button example code based on CSS animation

The specific code is as follows: <a href="...

SQL implementation of LeetCode (183. Customers who have never placed an order)

[LeetCode] 183.Customers Who Never Order Suppose ...

Software Testing - MySQL (VI: Database Functions)

1.MySQL functions 1. Mathematical functions PI() ...

In-depth analysis of MySQL database transactions and locks

Table of contents 1. Basic Concepts ACID 3.AutoCo...

Using Apache ab to perform http performance testing

Mac comes with Apache environment Open Terminal a...