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:
<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:
<div align="left">1</div>to align the text to the left. However if i go
<div align="left">1</div> <div align="center">2</div> <div align="right">3</div>It will be out puted like so:
1
2
3
On different lines, and i cant have that :mad:Something like this sort of works, but I sense there is a better solution
<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. :eek:


Sign In
Create Account

Back to top










