HTML table tag tutorial (20): row background color attribute BGCOLOR

HTML table tag tutorial (20): row background color attribute BGCOLOR

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

<<:  Mysql get table comment field operation

>>:  Use Docker to build a Git image using the clone repository

Recommend

How to use default values ​​for variables in SASS

Variables defined in SASS, the value set later wi...

The difference between ENTRYPOINT and CMD in Dockerfile

In the Docker system learning tutorial, we learne...

How to install git on linux

1. Introduction Git is a free, open source distri...

How to make an input text box change length according to its content

First: Copy code The code is as follows: <input...

Vue + OpenLayers Quick Start Tutorial

Openlayers is a modular, high-performance and fea...

Summary and analysis of commonly used Docker commands and examples

Table of contents 1. Container lifecycle manageme...

Summary of CSS sibling element floating analysis

float:left/right/none; 1. Same level floating (1)...

HTML code text box limit input text box becomes gray limit text box input

Method 1: Set the readonly attribute to true. INPU...

CSS inheritance method

Given a div with the following background image: ...

Solve the problem of Docker starting Elasticsearch7.x and reporting an error

Using the Docker run command docker run -d -p 920...

Installing MySQL 8.0.12 based on Windows

This tutorial is only applicable to Windows syste...

Detailed explanation of various join summaries of SQL

SQL Left Join, Right Join, Inner Join, and Natura...

JavaScript String Object Methods

Table of contents Methods of String Object Method...