HTML table markup tutorial (4): border color attribute BORDERCOLOR

HTML table markup tutorial (4): border color attribute BORDERCOLOR

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

<<:  Nginx configuration and compatibility with HTTP implementation code analysis

>>:  Detailed tutorial on how to create a user in mysql and grant user permissions

Recommend

Design Theory: Text Legibility and Readability

<br />Not long ago, due to business needs, I...

JavaScript realizes the drag effect of modal box

Here is a case of modal box dragging. The functio...

Detailed explanation of the function and usage of keepAlive component in Vue

Preface During the interview, many interviewers m...

JavaScript implementation of magnifying glass details

Table of contents 1. Rendering 2. Implementation ...

Tutorial on using Multitail command on Linux

MultiTail is a software used to monitor multiple ...

Example of implementing QR code scanning effects with CSS3

Online Preview https://jsrun.pro/AafKp/ First loo...

About debugging CSS cross-browser style bugs

The first thing to do is to pick a good browser. ...

Extract specific file paths in folders based on Linux commands

Recently, there is a need to automatically search...

Summary of MySQL lock related knowledge

Locks in MySQL Locks are a means to resolve resou...

Summary of changes in the use of axios in vue3 study notes

Table of contents 1. Basic use of axio 2. How to ...

MariaDB-server installation of MySQL series

Table of contents Tutorial Series 1. Install Mari...

How to use nginx as a load balancer for mysql

Note: The nginx version must be 1.9 or above. Whe...

The pitfalls encountered when learning Vue.js

Table of contents Class void pointing ES6 Arrow F...

Semantics, writing, and best practices of link A

The semantics, writing style, and best practices ...