HTML table tag tutorial (23): row border color attribute BORDERCOLORDARK

HTML table tag tutorial (23): row border color attribute BORDERCOLORDARK

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

<<:  MySQL Null can cause 5 problems (all fatal)

>>:  Super simple implementation of Docker to build a personal blog system

Recommend

Example code for implementing random roll caller in html

After this roll call device starts calling the ro...

A brief understanding of the three uses of standard SQL update statements

1. Environment: MySQL-5.0.41-win32 Windows XP Pro...

Centos6.9 installation Mysql5.7.18 step record

Installation sequence rpm -ivh mysql-community-co...

Three methods to modify the hostname of Centos7

Method 1: hostnamectl modification Step 1 Check t...

WeChat applet custom scroll-view example code

Mini Program Custom Scroll-View Scroll Bar Withou...

MYSQL slow query and log example explanation

1. Introduction By enabling the slow query log, M...

MySQL master-slave data is inconsistent, prompt: Slave_SQL_Running: No solution

This article uses an example to describe the solu...

Sharing tips on using scroll bars in HTML

Today, when we were learning about the Niu Nan new...

Color matching techniques and effect display for beauty and styling websites

Color is one of the most important elements for a...

Detailed explanation of Tomcat directory structure

Table of contents Directory Structure bin directo...

Use three.js to achieve cool acid style 3D page effects

This article mainly introduces how to use the Rea...

MySQL Series Database Design Three Paradigm Tutorial Examples

Table of contents 1. Knowledge description of the...

CSS sample code with search navigation bar

This article shows you how to use CSS to create a...

Detailed explanation of root directory settings in nginx.conf

There are always some problems when configuring n...