Tables default to the width of the page, so if you want to set some text inside them that deosn't go allthe way over to the other side of the page you have to set up a table width.
<table width=400>
Then, in the actual cells, you control the justification.
<tr>
<td align="right" valign="top"> blah blah blah</td>
I always put a "valign" in to cells, otehrwise the text ends up in the middle of the cell and not at the top where it should be.
|