I really feel like a big n00b asking a question here...
But, without using tables is there a way you can align something to the left, center, and right (on the same line)? Basically I want to do this, without using tables do this:
Code:
<table width="100%" border="0">
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</table>
I know I can easily go like this:
Code:
<div align="left">1</div>
to align the text to the left. However if i go
Code:
<div align="left">1</div>
<div align="center">2</div>
<div align="right">3</div>
It will be out puted like so:
On different lines, and i cant have that

Something like this sort of works, but I sense there is a better solution
Code:
<div>
<span style="left: 0px; top: 0px; position: relative; z-index: 0;">1</span>
<span style="left: 50%; top: 0px; position: relative; z-index: 0;">2</span>
<span style="left: 90%; top: 0px; position: relative; z-index: 0;">3</span>
</div>
because depending how many characters "2" and "3" get depends if they are really aligned where they are suppose to be, so although its a solution, its not the answer im looking for.
