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

CSS3 realizes the mask barrage function

Recently I saw a barrage effect on B station call...

User experience of portal website redesign

<br />From the launch of NetEase's new h...

Detailed explanation of the use of grid properties in CSS

Grid layout Attributes added to the parent elemen...

Create a movable stack widget function using flutter

This post focuses on a super secret Flutter proje...

N ways to center elements with CSS

Table of contents Preface Centering inline elemen...

MySQL FAQ series: How to avoid a sudden increase in the size of the ibdata1 file

0. Introduction What is the ibdata1 file? ibdata1...

How to use geoip to restrict regions in nginx

This blog is a work note environment: nginx versi...

Vue implements a scroll bar style

At first, I wanted to modify the browser scroll b...

Detailed description of the use of advanced configuration of Firewalld in Linux

IP masquerading and port forwarding Firewalld sup...

Solution to failure in connecting to mysql in docker

Scenario: After installing the latest version of ...

Vue realizes cascading selection of provinces, cities and districts

Recently, I need to implement a cascading selecti...

5 basic skills of topic page design (Alibaba UED Shanmu)

This topic is an internal sharing in the second h...

How to solve "Unable to start mysql service error 1069"

Today, when I was on the road, a colleague sent m...