HTML table tag tutorial (11): horizontal alignment attribute ALIGN

HTML table tag tutorial (11): horizontal alignment attribute ALIGN

In the horizontal direction, you can set the alignment of the table, which can be left, center, or right.
Basic syntax
<TABLE ALIGN="LEFT">
<TABLE ALIGN="CENTER">
<TABLE ALIGN="RIGHT">
Syntax
LEFT means left, CENTER means center, and RIGHT means right.
File example: 10-11.htm
Sets the horizontal alignment of the table.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-11.htm -->
03 <!-- File description: Set the table to center alignment -->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the table to center alignment</TITLE>
08 </HEAD>
09 <BODY>
10 <H1>Mainstream web design software</H1>
11 <TABLE BORDER=3 WIDTH=400 HEIGHT=100 Bordercolor=#336699 Background=10-8.jpg CellSpacing=10 CellPadding=25 ALIGN="CENTER">
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 the horizontal alignment of the table as center.

<<:  ElementUI implements sample code for drop-down options and multiple-select boxes

>>:  How to get the maximum or minimum value of a row in sql

Recommend

Implementation code of html floating prompt box function

General form prompts always occupy the form space...

Correct way to load fonts in Vue.js

Table of contents Declare fonts with font-face co...

WeChat applet implements user login module server construction

I chose node.js to build the server. Friends who ...

Installation process of zabbix-agent on Kylin V10

1. Download the installation package Download add...

MySQL 5.7.18 winx64 installation and configuration method graphic tutorial

The installation of compressed packages has chang...

WeChat applet scroll-view realizes left-right linkage effect

WeChat applet uses scroll-view to achieve left-ri...

Markup language - CSS layout

Click here to return to the 123WORDPRESS.COM HTML ...

In-depth explanation of nginx location priority

location expression type ~ indicates to perform a...

Example of using store in vue3 to record scroll position

Table of contents Overall Effect Listen for conta...

HTML hyperlinks explained in detail

Hyperlink Hyperlinks are the most frequently used ...

foreman ubuntu16 quick installation

Quickstart Guide The Foreman installer is a colle...

Detailed tutorial for downloading and installing mysql8.0.21

Official website address: https://www.mysql.com/ ...

WeChat applet implements a simple handwritten signature component

Table of contents background: need: Effect 1. Ide...

Problems with using wangeditor rich text editing in Vue

wangEditor is a web rich text editor developed ba...

Detailed examples of replace and replace into in MySQL into_Mysql

MySQL replace and replace into are both frequentl...