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

How to monitor global variables in WeChat applet

I recently encountered a problem at work. There i...

How to Run a Command at a Specific Time in Linux

The other day I was using rsync to transfer a lar...

Hexadecimal color codes (full)

Red and pink, and their hexadecimal codes. #99003...

Learn Node.js from scratch

Table of contents url module 1.parse method 2. fo...

Detailed tutorial on installing MYSQL under WINDOWS

1. Download the installation package -Choose the ...

C# implements MySQL command line backup and recovery

There are many tools available for backing up MyS...

How to monitor multiple JVM processes in Zabbix

1. Scenario description: Our environment uses mic...

js to realize the rotation of web page pictures

This article shares the specific code of js to re...

Detailed explanation of JSONObject usage

JSONObject is just a data structure, which can be...

js to write the carousel effect

This article shares the specific code of js to ac...

Summary of relevant knowledge points of ajax in jQuery

Preface Students who learn JavaScript know that A...