View Full Version : fonts in tables


angel_victory
06-19-2004, 08:02 AM
ok my table is like this

<table>
<tr>
<Td>
<div align=left>blah 1</div><divalign=blah2></div>
</td>
</tr>
</Table>

anyways when i try to do that blah2 is on another line below blah1 and i want them both to be in the same <td> but just have on to be on the left and one to be on the right. that might of been confusing but if you know what im talking about please help!

pb&j
06-19-2004, 12:58 PM
try using SPAN instead of DIV.

angel_victory
06-19-2004, 05:06 PM
whats span lol

pb&j
06-20-2004, 12:45 AM
span is an inline style instead of a full block element.

<table>
<tr>
<Td>
<span>blah 1</span><span>blah 2</span>
</td>
</tr>
</Table>

span does not break to the next line.

angel_victory
06-20-2004, 01:53 AM
thx i'll try that