HTML table tag tutorial (25): vertical alignment attribute VALIGN

HTML table tag tutorial (25): vertical alignment attribute VALIGN

In the vertical direction, you can set the row alignment, which can be top, center, or bottom.
Basic syntax
<TR VALIGN="TOP">
<TR VALIGN="MIDDLE">
<TR VALIGN="BOTTOM">
Syntax
TOP means on the top, MIDDLE means in the middle, and BOTTOM means at the bottom.
File example: 10-23.htm
Sets the vertical alignment of the row.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-23.htm -->
03 <!-- File description: Set the vertical alignment of the line -->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Setting vertical alignment of rows</TITLE>
08 </HEAD>
09 <BODY>
10 <H1>Mainstream web design software</H1>
11 <TABLE BORDER=3 WIDTH=400 HEIGHT=200 Bordercolor=#336699 Background=10-8.jpg>
12 <TR VALIGN="Top">
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 vertical alignment of the row as top.

<<:  Quick solution for forgetting MySQL8 password

>>:  Detailed explanation of slots in Vue

Recommend

Practice using Golang to play with Docker API

Table of contents Installing the SDK Managing loc...

Class in front-end JavaScript

Table of contents 1. Class 1.1 constructor() 1.2 ...

Tutorial on using the hyperlink tag in HTML

The various HTML documents of the website are con...

A brief description of the relationship between k8s and Docker

Recently, the project uses kubernetes (hereinafte...

How to ensure transaction characteristics of MySQL InnoDB?

Preface If someone asks you "What are the ch...

Docker View Process, Memory, and Cup Consumption

Docker view process, memory, cup consumption Star...

How to configure Http, Https, WS, and WSS in Nginx

Written in front In today's Internet field, N...

Summary of Docker configuration container location and tips

Tips for using Docker 1. Clean up all stopped doc...

CocosCreator Getting Started Tutorial: Network Communication

Network Communication Overview When developing an...

Minimalistic website design examples

Web Application Class 1. DownForEveryoneOrJustMe ...