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

Details of using vue activated in child components

Page: base: <template> <div class="...

Nodejs global variables and global objects knowledge points and usage details

1. Global Object All modules can be called 1) glo...

jQuery implements clicking left and right buttons to switch pictures

This article example shares the specific code of ...

The process of deploying and running countly-server in docker in win10

I have just come into contact with and become fam...

How to install ROS Noetic in Ubuntu 20.04

Disclaimer: Since the project requires the use of...

How to clear floating example code in css

Overview The framework diagram of this article is...

How to install and connect Navicat in MySQL 8.0.20 and what to pay attention to

Things to note 1. First, you need to create a my....

Understanding render in Vue scaffolding

In the vue scaffolding, we can see that in the ne...

Tips on MySQL query cache

Table of contents Preface Introduction to QueryCa...

Analysis of the principle of Rabbitmq heartbea heartbeat detection mechanism

Preface When using RabbitMQ, if there is no traff...

Display and hide HTML elements through display or visibility

Sometimes we need to control whether HTML elements...

What you need to know about creating MySQL indexes

Table of contents Preface: 1. Create index method...