HTML table markup tutorial (28): cell border color attribute BORDERCOLOR

HTML table markup tutorial (28): cell border color attribute BORDERCOLOR

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

<<:  TCP third handshake data transmission process diagram

>>:  How to quickly modify the host attribute of a MySQL user

Recommend

Detailed explanation of Vue's calculated properties

1. What is a calculated attribute? In plain words...

How to restore single table data using MySQL full database backup data

Preface When backing up the database, a full data...

JavaScript design pattern learning adapter pattern

Table of contents Overview Code Implementation Su...

VMware, nmap, burpsuite installation tutorial

Table of contents VMware BurpSuite 1. Virtual mac...

Detailed tutorial on building a private Git server on Linux

1. Server setup The remote repository is actually...

How to make JavaScript sleep or wait

Table of contents Overview Checking setTimeout() ...

Analysis of three parameters of MySQL replication problem

Table of contents 01 sql_slave_skip_counter param...

Pure CSS to adjust Div height according to adaptive width (percentage)

Under the requirements of today's responsive ...

4 ways to view processes in LINUX (summary)

A process is a program code that runs in the CPU ...

A small introduction to the use of position in HTML

I just learned some html yesterday, and I couldn&#...

How to use vue3+TypeScript+vue-router

Table of contents Easy to use Create a project vu...

CSS3 achieves flippable hover effect

CSS3 implements a flippable hover effect. The spe...