HTML table tag tutorial (17): table title vertical alignment attribute VALIGN

HTML table tag tutorial (17): table title vertical alignment attribute VALIGN

The table caption can be placed above or below the table, which can be adjusted via properties. The default table title is placed above the table.
Basic syntax
<Caption VALIGN="top">…</Caption>
<Caption VALIGN="bottom"> …</Caption>
Syntax
TOP means on the top and BOTTOM means on the bottom.
File example: 10-16.htm
The vertical alignment of the table caption is set by the VALIGN attribute of the <CAPTION> tag.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-16.htm -->
03 <!--File Description: Set the vertical alignment of the table title-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the vertical alignment of the table title</TITLE>
08 </HEAD>
09 <BODY>
10 <TABLE BORDER=3 WIDTH=400 HEIGHT=100 Bordercolor=#336699 ALIGN="CENTER">
11 <CAPTION VALIGN="BOTTOM" 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 bottom-aligned and right-aligned.

<<:  Front-end state management (Part 1)

>>:  MySQL select results to perform update example tutorial

Recommend

Html long text automatically cuts off when it exceeds the tag width

When we display long text, we often need to interc...

WeChat applet realizes taking photos and selecting pictures from albums

This article shares the specific code for WeChat ...

In-depth understanding of asynchronous waiting in Javascript

In this article, we’ll explore how async/await is...

Vue3 encapsulates its own paging component

This article example shares the specific code of ...

JavaScript implements simple date effects

The specific code of JavaScript date effects is f...

How to get the contents of .txt file through FileReader in JS

Table of contents JS obtains the .txt file conten...

Methods and problems encountered in installing mariadb in centos under mysql

Delete the previously installed mariadb 1. Use rp...

10 SQL statement optimization techniques to improve MYSQL query efficiency

The execution efficiency of MySQL database has a ...

Implementation of installing and uninstalling CUDA and CUDNN in Ubuntu

Table of contents Preface Install the graphics dr...

Two implementation codes of Vue-router programmatic navigation

Two ways to navigate the page Declarative navigat...

Solution to MySQL failure to start

Solution to MySQL failure to start MySQL cannot s...

JavaScript to achieve a simple page countdown

This article example shares the specific code of ...

How to implement https with nginx and openssl

If the server data is not encrypted and authentic...