HTML table markup tutorial (40): Dark border color attribute of the header BORDERCOLORDARK

HTML table markup tutorial (40): Dark border color attribute of the header BORDERCOLORDARK

In the table header, you can define the dark border color separately.
Basic syntax
<TH Bordercolordark=color_VALUE>
Syntax explanation <br />When defining colors, you can use English color names or hexadecimal color values.
File example: 10-38.htm
Set the color of the dark border of the table header.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-38.htm -->
03 <!-- File Description: Set the dark border color of the header -->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the dark border color of the header</TITLE>
08 </HEAD>
09 <BODY>
10 <H1>Mainstream web design software</H1>
11 <TABLE BORDER=3 WIDTH=400 HEIGHT=100>
12 <TR>
13 <TH Bordercolorlight=#336699 Bordercolordark=#ff0000>Web Image 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 dark border color of the header as #FF0000.

<<:  How to deploy and start redis in docker

>>:  MySQL common statements for viewing transactions and locks

Recommend

Docker installation tutorial in Linux environment

1. Installation environment Docker supports the f...

Detailed explanation of Redis master-slave replication practice using Docker

Table of contents 1. Background 2. Operation step...

MySQL online deadlock analysis practice

Preface I believe that everyone has had a simple ...

MySQL knowledge points for the second-level computer exam mysql alter command

Usage of alter command in mysql to edit table str...

MySQL uses SQL statements to modify table names

In MySQL, you can use the SQL statement rename ta...

Detailed explanation of Nginx current limiting configuration

This article uses examples to explain the Nginx c...

The 6 Most Effective Ways to Write HTML and CSS

This article shares the 6 most effective methods,...

5 Easy Ways to Free Up Space on Ubuntu

Preface Most people will probably perform this op...

Style trigger effect of web page input box

<br />This example mainly studies two parame...

Method of using MySQL system database for performance load diagnosis

A master once said that you should know the datab...

Detailed explanation of the Docker deployment tutorial for Jenkins beginners

This article deploys Jenkins+Maven+SVN+Tomcat thr...

What is flex and a detailed tutorial on flex layout syntax

Flex Layout Flex is the abbreviation of Flexible ...

MySQL 5.7.17 installation and configuration tutorial under Linux (Ubuntu)

Preface I have installed MySQL 5.6 before. Three ...

Complete steps to quickly build a vue3.0 project

Table of contents 1. We must ensure that the vue/...