layout within <td> -
05-10-2005
, 11:14 AM
How can I get the following to appear on just 1 line?
<style type="text/css">
#center { text-align: center;}
#left { text-align: left;}
#right {text-align: right}
</style>
<table border=1 width=200>
<tr>
<td>
<div id="left">left
<div id="center">center
<div id="right">right
</td>
</tr>
</table>
I tried using "display:inline" and play with "float" property but
couldn't get it to work right.
Thanks!
Radek |