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

Vue custom v-has instruction, steps for button permission judgment

Table of contents Application Scenario Simply put...

js dynamically implements table addition and deletion operations

This article example shares the specific code for...

CSS solution for centering elements with variable width and height

1. Horizontal center Public code: html: <div c...

How to import and export Cookies and Favorites in FireFox

FireFox is a commonly used browser with many exte...

Example of how to enable Brotli compression algorithm for Nginx

Brotli is a new data format that can provide a co...

A brief discussion on HTML doctype and encoding

DOCTYPE Doctype is used to tell the browser which...

How to use CocosCreator for sound processing in game development

Table of contents 1. Basics of audio playback in ...

Method for realizing Internet interconnection by VMware virtual machine bridging

After installing VMware and creating a new virtua...

Vue2.0 implements adaptive resolution

This article shares the specific code of Vue2.0 t...

How to read the regional information of IP using Nginx and GeoIP module

Install GeoIP on Linux yum install nginx-module-g...

Mysql delete data and data table method example

It is very easy to delete data and tables in MySQ...