center

Renders the enclosed content in the center of the browser page.
Can also be applied to table cells, but not needed since align="center" is supported by all mail clients.

Usage:

<center>
... blahblahblah ...
</center>


Best Practice Example:
<font face="Verdana,Arial,sans-serif" size="2" style="font: 10pt Verdana,Arial,sans-serif;">
The thing about the <code><center></code> tag is that everything inside gets shifted to the center. Like so:<br />
<center>
Entire sentences can be set right in the middle.<br /><br />
So can images...<br />
<img src="30align.jpg" width="400" height="134" border="0" alt="We align things perfetc." title="We align things perfetc." /><br /><br />

And even tables!<br />
<table border="0" cellpadding="4" cellspacing="0">
<tr bgcolor="#FFFFCC">
<th colspan="4" align="center">
<font face="Verdana,Arial,sans-serif" size="3" style="font: bold 11pt Verdana,Arial,sans-serif;">
<b>Relevant Statistics</b>
</font>
</th>
</tr>
<tr bgcolor="#EEEEBB" align="center">
<th>Item</th>
<th>April</th>
<th>May</th>
<th>June</th>
</tr>
<tr bgcolor="#FFFFCC" valign="middle">
<th bgcolor="#CCCCFF">Frammizans</th>
<td>32</td>
<td>38</td>
<td>43</td>
</tr>
<tr bgcolor="#EEEEBB" valign="middle">
<th bgcolor="#CCCCFF">Wossnames</th>
<td>22</td>
<td>24</td>
<td>27</td>
</tr>
<tr bgcolor="#FFFFCC" valign="middle">
<th bgcolor="#CCCCFF">Thingummabobs</th>
<td>55</td>
<td>61</td>
<td>70</td>
</tr>
</table><br />
</center></font><br /><br />



The thing about the <center> tag is that everything inside gets shifted to the center. Like so:

Entire sentences can be set right in the middle.

So can images...
We align things perfetc.

And even tables!
Relevant Statistics
Item April May June
Frammizans 32 38 43
Wossnames 22 24 27
Thingummabobs 55 61 70



NOTES:
This tag works in all mail clients.
It has been deprecated in favor of alignment-based styling, but it is still widely in use.

This reference was created for Innovyx by Steve Cartoon Q3 2007. All rights reversed.