HTML table tag tutorial (7): background color attribute BGCOLOR

HTML table tag tutorial (7): background color attribute BGCOLOR

The background color of the table can be set through the BGCOLOR attribute.
Basic syntax
<TABLE BGCOLORr=color_VALUE>
Syntax explanation <br />When defining colors, you can use English color names or hexadecimal color values.
File example: 10-7.htm
Sets the table background color.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-7.htm -->
03 <!-- File Description: Set the table background color-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the table background color</TITLE>
08 </HEAD>
09 <BODY>
10 <H1>Mainstream web design software</H1>
11 <TABLE BORDER=3 WIDTH=400 HEIGHT=100 Bordercolor=#336699 Bgcolor=#00FFFF>
12 <TR>
13 <TD>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 11 defines the background color of the table as #00FFFF.

<<:  MySQL fuzzy query usage (regular, wildcard, built-in function)

>>:  WeChat applet implements SMS login in action

Recommend

MySQL 8.0.12 winx64 decompression version installation graphic tutorial

Recorded the installation of mysql-8.0.12-winx64 ...

Linux sudo vulnerability could lead to unauthorized privileged access

Exploiting a newly discovered sudo vulnerability ...

Detailed explanation of three ways to import CSS files

There are three ways to introduce CSS: inline sty...

Detailed tutorial on installing pxc cluster with docker

Table of contents Preface Preliminary preparation...

Detailed steps for Spring Boot packaging and uploading to Docker repository

Important note: Before studying this article, you...

Detailed steps to modify MySQL stored procedures

Preface In actual development, business requireme...

Install tomcat and deploy the website under Linux (recommended)

Install jdk: Oracle official download https://www...

Implementing a simple student information management system based on VUE

Table of contents 1. Main functions 2. Implementa...

MySQL briefly understands how "order by" works

For sorting, order by is a keyword we use very fr...

Vue codemirror realizes the effect of online code compiler

Preface If we want to achieve the effect of onlin...

How to install and connect Navicat in MySQL 8.0.20 and what to pay attention to

Things to note 1. First, you need to create a my....

Knowledge about MySQL Memory storage engine

Knowledge points about Memory storage engine The ...

How to expand Linux swap memory

Swap memory mainly means that when the physical m...

How to use jconsole to monitor remote Tomcat services

What is JConsole JConsole was introduced in Java ...

js uses FileReader to read local files or blobs

Table of contents FileReader reads local files or...