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 introduction to CSS font, text, and list properties

1. Font properties color, specifies the color of ...

Detailed explanation of common methods of Vue development

Table of contents $nextTick() $forceUpdate() $set...

Introduction to CSS BEM Naming Standard (Recommended)

1 What is BEM Naming Standard Bem is the abbrevia...

Solution to the cross-domain problem of SpringBoot and Vue interaction

Table of contents Browser Same Origin Policy 1. V...

Some ways to eliminate duplicate rows in MySQL

SQL statement /* Some methods of eliminating dupl...

How to make your own native JavaScript router

Table of contents Preface Introduction JavaScript...

How to use Dayjs to calculate common dates in Vue

When using vue to develop projects, the front end...

Steps to use ORM to add data in MySQL

【Foreword】 If you want to use ORM to operate data...

JavaScript array deduplication solution

Table of contents Method 1: set: It is not a data...

Solve the problem of inconsistency between mysql time and system time in docker

Recently, when I installed MySQL in Docker, I fou...

What you need to know about filters in Vue

Table of contents Preface What is a filter How to...

Mysql 5.7.19 free installation version encountered pitfalls (collection)

1. Download the 64-bit zip file from the official...