HTML table markup tutorial (38): Border color attribute of the header BORDERCOLOR

HTML table markup tutorial (38): Border color attribute of the header BORDERCOLOR

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

<<:  Detailed explanation of the differences and usages of Linux system shutdown commands

>>:  Vant uploader implements the drag-and-drop function for uploading pictures (set as cover)

Recommend

Linux tac command implementation example

1. Command Introduction The tac (reverse order of...

MySQL export of entire or single table data

Export a single table mysqldump -u user -p dbname...

Determine the direction of mouse entry based on CSS

In a front-end technology group before, a group m...

JavaScript timer to achieve seamless scrolling of pictures

This article shares the specific code of JavaScri...

Horizontal header menu implemented with CSS3

Result:Implementation Code html <nav class=&qu...

MySQL Workbench download and use tutorial detailed explanation

1. Download MySQL Workbench Workbench is a graphi...

Implementation steps for installing FTP server in Ubuntu 14.04

Table of contents Install Software Management Ano...

MySQL database optimization: index implementation principle and usage analysis

This article uses examples to illustrate the prin...

How to redraw Button as a circle in XAML

When using XAML layout, sometimes in order to make...

Two ideas for implementing database horizontal segmentation

introduction With the widespread popularity of In...

How to use display:olck/none to create a menu bar

The effect of completing a menu bar through displ...

Problems encountered in the execution order of AND and OR in SQL statements

question I encountered a problem when writing dat...