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

About Zabbix custom monitoring items and triggers

Table of contents 1. Monitoring port Relationship...

MySQL 5.7.30 Installation and Upgrade Issues Detailed Tutorial

wedge Because the MySQL version installed on the ...

Vue3 list interface data display details

Table of contents 1. List interface display examp...

Some Linux file permission management methods you may not know

Why do we need permission management? 1. Computer...

The complete implementation process of Sudoku using JavaScript

Table of contents Preface How to solve Sudoku Fil...

Detailed explanation of Mysql function call optimization

Table of contents Function call optimization Func...

Vue data responsiveness summary

Before talking about data responsiveness, we need...

Window.name solves the problem of cross-domain data transmission

<br />Original text: http://research.microso...

Vue.$set failure pitfall discovery and solution

I accidentally found that Vue.$set was invalid in...

MYSQL slow query and log example explanation

1. Introduction By enabling the slow query log, M...

Steps to install superset under win10 system

Superset is a lightweight self-service BI framewo...

Summary of the understanding of virtual DOM in Vue

It is essentially a common js object used to desc...

Correct modification steps for Docker's default network segment

background A colleague is working on his security...