HTML table tag tutorial (33): cell vertical alignment attribute VALIGN

HTML table tag tutorial (33): cell vertical alignment attribute VALIGN

In the vertical direction, you can set the cell alignment, which can be top, center, or bottom.
Basic syntax
<TD VLIGN="TOP">
<TD VLIGN="MIDDLE">
<TD VLIGN="MOTTOM">
Syntax
TOP means on the top, MIDDLE means in the middle, and MOTTOM means at the bottom.
File example: 10-31.htm
Sets the vertical alignment of the cell.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-31.htm -->
03 <!-- File description: Set the vertical alignment of the cell -->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Setting cell vertical alignment</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>
13 <TD VALIGN="Top">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 vertical alignment of the cell as top.

<<:  Some questions about hyperlinks

>>:  Vue implements a simple shopping cart example

Recommend

How to change the password of mysql5.7.20 under linux CentOS 7.4

After MySQL was upgraded to version 5.7, its secu...

How to execute PHP scheduled tasks in CentOS7

Preface This article mainly introduces the releva...

Example of how to change the domestic source in Ubuntu 18.04

Ubuntu's own source is from China, so the dow...

Docker case analysis: Building a Redis service

Table of contents 1 Create mount directories and ...

Advanced techniques for using CSS (used in actual combat)

1. The ul tag has a padding value by default in Mo...

A brief discussion on four solutions for Vue single page SEO

Table of contents 1.Nuxt server-side rendering ap...

Summary of MySQL ALTER command knowledge points

When we need to change the table name or modify t...

Example code of vue icon selector

Source: http://www.ruoyi.vip/ import Vue from ...

What qualities should a good advertisement have?

Some people say that doing advertising is like bei...

Linux kernel device driver address mapping notes

#include <asm/io.h> #define ioremap(cookie,...

Docker case analysis: Building a MySQL database service

Table of contents 1 Create configuration and data...

Summary of examples of common methods of JavaScript arrays

Table of contents Common array methods concat() M...

Detailed explanation of CSS elastic box flex-grow, flex-shrink, flex-basis

The functions of the three attributes flex-grow, ...

MySQL backup table operation based on Java

The core is mysqldump and Runtime The operation i...