Forum Moderators: not2easy
<table width='100%' >
<tr>
<td align='left'>Left</td>
<td align='right'>Right</td>
</tr>
</table>
I tried this but it didn't work
<style type="text/css">
left1 {text-align: center}
right1 {text-align: right}
</style>
<div>
<span class='left1'>Left</span>
<span class='right1'>Right</span>
</div>
I tried playing with it a little and didn't get it to look any better, anyone have any suggestions?
<style type="text/css">
#left {
text-align: left;
}
#right {
float: right;
text-align: right;
}
</style>
<div id="left">
This is left-justified
</div>
<div id="right">
Ths is right-justified
</div>
Substitude classes instead of IDs if it fits your actual code better, of course.
Untested code, but I did something much like this Monday night so it shouldn't be too far off.