HTML table markup tutorial (30): cell dark border color attribute BORDERCOLORDARK

HTML table markup tutorial (30): cell dark border color attribute BORDERCOLORDARK

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

<<:  MySQL can actually implement distributed locks

>>:  Vue3 (V) Details of integrating HTTP library axios

Recommend

In-depth understanding of this in JavaScript

In-depth understanding of this in Js JavaScript s...

Uniapp's experience in developing small programs

1. Create a new UI project First of all, our UI i...

Detailed explanation of MySQL database binlog cleanup command

Overview Today I will mainly share how to correct...

What are the differences between xHTML and HTML tags?

All tags must be lowercase In XHTML, all tags must...

HTML code text box limit input text box becomes gray limit text box input

Method 1: Set the readonly attribute to true. INPU...

MySQL Workbench download and use tutorial detailed explanation

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

The difference and usage of LocalStorage and SessionStorage in vue

Table of contents What is LocalStorage What is Se...

Complete code for implementing the vue backtop component

Effect: Code: <template> <div class=&quo...

Some Linux file permission management methods you may not know

Why do we need permission management? 1. Computer...

How to use Antd's Form component in React to implement form functions

1. Construction components 1. A form must contain...

Introduction to common commands and shortcut keys in Linux

Table of contents 1 System Introduction 2 System ...

JavaScript implements mouse drag to adjust div size

This article shares the specific code of JavaScri...

jQuery implements form validation

Use jQuery to implement form validation, for your...