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

Display and hide HTML elements through display or visibility

Sometimes we need to control whether HTML elements...

Very practical Tomcat startup script implementation method

Preface There is a scenario where, for the sake o...

One line of code teaches you how to hide Linux processes

Friends always ask me how to hide Linux processes...

JS removeAttribute() method to delete an attribute of an element

In JavaScript, use the removeAttribute() method o...

Detailed steps for setting up host Nginx + Docker WordPress Mysql

environment Linux 3.10.0-693.el7.x86_64 Docker ve...

Details after setting the iframe's src to about:blank

After setting the iframe's src to 'about:b...

Steps to create your own YUM repository

To put it simply, the IP of the virtual machine u...

A little-known JS problem: [] == ![] is true, but {} == !{} is false

console.log( [] == ![] ) // true console.log( {} ...

How to install and uninstall open-vswitch in Linux

1. Compile and install ovs from source code: Inst...

How to create scheduled tasks using crond tool in Linux

Preface Crond is a scheduled execution tool under...

How to draw a cool radar chart in CocosCreator

Table of contents Preface Preview text Graphics C...

Detailed Linux installation tutorial

(Win7 system) VMware virtual machine installation...

The whole process of realizing website internationalization using Vite2 and Vue3

Table of contents Preface Install vue-i18n Config...