HTML table markup tutorial (16): title horizontal alignment attribute ALIGN

HTML table markup tutorial (16): title horizontal alignment attribute ALIGN

By default, the table title is horizontally centered. We can set the horizontal alignment of the title text through the ALIGN attribute.
Basic syntax
<Caption ALIGN="LEFT">…</Caption>
<Caption ALIGN="CENTER">…</Caption>
<Caption ALIGN="RIGHT">…</Caption>
Syntax
LEFT means left, CENTER means center, and RIGHT means right.
Document example: 10-15.htm
The horizontal alignment of the table caption is set by the ALIGN attribute of the <CAPTION> tag.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-15.htm -->
03 <!--File Description: Set the horizontal alignment of the table title-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the horizontal alignment of the table title</TITLE>
08 </HEAD>
09 <BODY>
10 <TABLE BORDER=3 WIDTH=400 HEIGHT=100 Bordercolor=#336699 ALIGN="CENTER">
11 <CAPTION ALIGN="RIGHT">Mainstream web design software</CAPTION>
12 <TR>
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 11 defines that the table title text is right-aligned.

<<:  JavaScript adds event listeners to event delegation in batches. Detailed process

>>:  Detailed explanation of the usage of MySQL memory tables and temporary tables

Recommend

Let’s talk in detail about how JavaScript affects DOM tree construction

Table of contents Document Object Model (DOM) DOM...

How to Apply for Web Design Jobs

<br />Hello everyone! It’s my honor to chat ...

Analysis of the differences between Iframe and FRAME

1. Use of Iframe tag <br />When it comes to ...

Summary of shell's method for determining whether a variable is empty

How to determine whether a variable is empty in s...

Detailed explanation of docker's high availability configuration

Docker Compose Docker Compose divides the managed...

Windows 10 is too difficult to use. How to customize your Ubuntu?

Author | Editor Awen | Produced by Tu Min | CSDN ...

How to uninstall MySQL cleanly (tested and effective)

How to uninstall Mysql perfectly? Follow the step...

How to create a trigger in MySQL

This article example shares the specific code for...

Solve the problem when setting the date to 0000-00-00 00:00:00 in MySQL 8.0.13

I just started learning database operations. Toda...

How to use DPlayer.js video playback plug-in

DPlayer.js video player plug-in is easy to use Ma...