HTML table tag tutorial (21): row border color attribute BORDERCOLOR

HTML table tag tutorial (21): row border color attribute BORDERCOLOR

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

<<:  The difference between MySQL user management and PostgreSQL user management

>>:  Implementation of docker view container log command

Recommend

Can Docker become the next "Linux"?

The Linux operating system has revolutionized the...

vue+ts realizes the effect of element mouse drag

This article example shares the specific code of ...

JavaScript implementation of the back to top button example

This article shares the specific code for JavaScr...

The connection between JavaScript constructors and prototypes

Table of contents 1. Constructors and prototypes ...

Detailed steps to install JDK and Tomcat in Linux environment

Table of contents 1. Install JDK Manual Installat...

Detailed explanation of keepAlive use cases in Vue

In development, it is often necessary to cache th...

How to install MySQL database on Ubuntu

Ubuntu is a free and open source desktop PC opera...

How to reset the root password in CentOS7

There are various environmental and configuration...

Detailed explanation of Vue's monitoring properties

Table of contents Vue monitor properties What is ...

How to install docker on ubuntu20.04 LTS

Zero: Uninstall old version Older versions of Doc...

4 ways to implement routing transition effects in Vue

Vue router transitions are a quick and easy way t...

Implementation of vite+vue3.0+ts+element-plus to quickly build a project

Table of contents vite function Use Environment B...

Exploring the Linux Kernel: The Secrets of Kconfig

Get a deep understanding of how the Linux configu...

JS realizes the case of eliminating stars

This article example shares the specific code of ...