HTML table tag tutorial (36): table header background color attribute BGCOLOR

HTML table tag tutorial (36): table header background color attribute BGCOLOR

The <TH> tag is used to set the properties of a header in a table. See the table below:
<th> tag attributes for table headers
Property Description ALIGN Horizontal alignment VALIGN Vertical alignment of cell content BGCOLOR Background color of cell BACKGROUND Background image of cell BORDERCOLOR Border color of cell BORDERCOLORLIGHT Light border color of cell BORDERCOLORDARK Dark border color of cell WIDTH Width of cell HEIGHT Height of cell The background color of the header can be set through the BGCOLOR property.
Basic Syntax>
<TH BGcolor=color_VALUE>
Syntax explanation <br />When defining colors, you can use English color names or hexadecimal color values.
File example: 10-34.htm
Set the background color of the table header.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-34.htm -->
03 <!-- File Description: Set the background color of the table header-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the background color of the header</TITLE>
08 </HEAD>
09 <BODY>
10 <H1>Mainstream web design software</H1>
11 <TABLE BORDER=3 WIDTH=400 HEIGHT=100 Bordercolor=#336699>
12 <TR>
13 <TH Bgcolor=#00FFFF>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 background color of the header as #00FFFF.

<<:  Detailed explanation of the syntax and process of executing MySQL transactions

>>:  Vue implements multi-grid input box on mobile terminal

Recommend

How to install Nginx in Docker

Install Nginx on Docker Nginx is a high-performan...

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

Table of contents Preface iframe implements sandb...

Summary of various methods of implementing article dividing line styles with CSS

This article summarizes various ways to implement...

Detailed analysis of the syntax of Mysql update to modify multiple fields and

When updating a record in MySQL, the syntax is co...

How to clean up the disk space occupied by Docker

Docker takes up a lot of space. Whenever we run c...

...

Input file custom button beautification (demo)

I have written such an article before, but I used...

Detailed summary of web form submission methods

Let's first look at several ways to submit a ...

Introduction to Linux compression and decompression commands

Table of contents Common compression formats: gz ...

VMware workstation 12 install Ubuntu 14.04 (64 bit)

1. Installation Environment Computer model: Lenov...

A brief discussion on JavaScript shallow copy and deep copy

Table of contents 1. Direct assignment 2. Shallow...

Ubuntu 20.04 connects to wifi (2 methods)

I recently installed Ubuntu 20.04 and found that ...

How to implement HTML Table blank cell completion

When I first taught myself web development, there...