HTML table tag tutorial (19): row tag

HTML table tag tutorial (19): row tag

The attributes of the <TR> tag are used to set the properties of each row in the table, as shown in the following table:
<TR> tag attributes for tables Attribute Description ALIGN Horizontal alignment of row contents VALIGN Vertical alignment of row contents BGCOLOR Background color of the row BORDERCOLOR Border color of the row BORDERCOLORLIGHT Light border color of the row BORDERCOLORDARK
The dark border color of the row

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 />Defines the row tag <TR>.

<<:  Native JS to implement drag position preview

>>:  MYSQL slow query and log settings and testing

Recommend

Ubuntu 19.10 enables ssh service (detailed process)

It took me more than an hour to open ssh in Ubunt...

Analysis of product status in interactive design that cannot be ignored in design

In the process of product design, designers always...

Analysis of uniapp entry-level nvue climbing pit record

Table of contents Preface Hello World image Set b...

Analyze MySQL replication and tuning principles and methods

1. Introduction MySQL comes with a replication so...

Very practical Tomcat startup script implementation method

Preface There is a scenario where, for the sake o...

Comprehensive analysis of MySql master-slave replication mechanism

Table of contents Master-slave replication mechan...

Use of Linux chkconfig command

1. Command Introduction The chkconfig command is ...

Implementation of MySQL scheduled database backup (full database backup)

Table of contents 1. MySQL data backup 1.1, mysql...

Implementation of docker redis5.0 cluster cluster construction

System environment: Ubuntu 16.04LTS This article ...

W3C Tutorial (9): W3C XPath Activities

XPath is a language for selecting parts of XML do...

Implementation of docker view container log command

Why should we read the log? For example, if the c...

Detailed examples of Docker-compose networks

Today I experimented with the network settings un...

The best way to start a jar package project under Centos7 server

Preface Everyone knows how to run a jar package o...