alignment problems..

liunx

Guest
Hello.. I want to be able to write two words on the same line and one word to be left justified and one word be right justified.. Is this possible?<br />
<br />
My problem is I have a page with some matching questions..<br />
where i have a question as follows... They put the number of the word with the correct definition<br />
<br />
1. word __definition<br />
<br />
2. longerword __definition<br />
<br />
You see the problem.. i have like 20 questions on the page and i want the definitions to be aligned on the right side and the words on the left side... Is there an easy way to do this if left justify and right justify on same line arent possible?<!--content-->I think your best option in this situation is to use table code:<br />
<br />
<table width="200" border="0"><br />
<tr><br />
<td width="100">left</td><td width="100" align="right">right</td><br />
</tr><br />
<tr><br />
<td>left</td><td align="right>right</td><br />
</tr><br />
</table><!--content-->Thanks a bunch, thats first time i've done anything really<br />
with tables.. It worked great.<!--content-->
 
Back
Top