Table Alignment Right:

cell 1 cell 2
cell 3 cell 4
cell 4 This is a very large cell 6

 

 

Note how cell widths adjust to the approximate size of the text stored in the cells, when a width is not specified.  Produced by HTML Code:

<table BORDER="5" ALIGN="right">
<tr>
        <td>cell 1</td>
    <td>cell 2</td>
</tr>

<tr>
    <td>cell 3</td>
    <td>cell 4</td>
</tr>

<tr>
    <td>cell 4</td>
    <td>This is a very large cell 6</td>
</tr>

</table>

 

     

Last updated on 03/05/2007  by L.M. Hicks