<html>
<title>CodeAve.com (Table Data Text)</title>
<body bgcolor="#FFFFFF">
<!-- Table data will by default go to the left
horizontally
and to the middle vertically. To place table data into different
positions horizontally align="" is added to the <td> tag.
Valid horizontal controls include left, center, right and middle.
To adjust table data vertically the valign="" is added ti the
<td> tag.
Valid horizontal controls include top, center, bottom, baseline and middle.
-->
<table width="300"
height="60"
align="center"
border="1">
<caption>Table data (default view)</caption>
<tr>
<td>
Table data text
</td>
</tr>
</table>
<p>
<table width="300"
height="60"
align="center"
border="1">
<caption>Table data aligned to the center</caption>
<tr>
<td align="center">
Table data text
</td>
</tr>
</table>
<p>
<table width="300"
height="60"
align="center"
border="1">
<caption>Table data aligned to the center and
top</caption>
<tr>
<td align="center"
valign="top">
Table data text
</td>
</tr>
</table>
<p>
<table width="600"
height="60"
align="center"
border="1">
<caption>Various Table Alignments</caption>
<tr>
<td align="left"
valign="top">
Table data text
</td>
<td align="center"
valign="middle">
Table data text
</td>
<td align="right"
valign="bottom">
Table data text
</td>
</tr>
</table>
/body>
</html>
|