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

How to use firewall iptables strategy to forward ports on Linux servers

Forwarding between two different servers Enable p...

Use tomcat to deploy SpringBoot war package in centos environment

Prepare war package 1. Prepare the existing Sprin...

How to uninstall MySQL 5.7.19 under Linux

1. Find out whether MySQL was installed before Co...

Search engine free collection of website entrances

1: Baidu website login entrance Website: http://ww...

Implementation ideas for docker registry image synchronization

Intro Previously, our docker images were stored i...

Summary of some reasons why crontab scheduled tasks are not executed

Preface I recently encountered some problems at w...

Two problems encountered when deploying rabbitmq with Docker

1. Background The following two problems are enco...

Talking about the practical application of html mailto (email)

As we all know, mailto is a very practical HTML ta...

Ten Experiences in Web Design in 2008

<br />The Internet is constantly changing, a...

Why is it not recommended to use an empty string as a className in Vue?

Table of contents Compare the empty string '&...

In-depth analysis of HTML table tags and related line break issues

What is a table? Table is an Html table, a carrie...

Detailed examples of how to use the box-shadow property in CSS3

There are many attributes in CSS. Some attributes...