Right align not same in firefox & explorer

The following code shows me on explorer:
[IMAGE][TEXT]
and on firefox like that:
[TEXT][IMAGE]

How can I change it that it will work the same on both browsers
[TEXT][IMAGE]…

	<table border="0" style="float: right; margin: 10px;">
	<tr VALIGN=TOP>
	
	  <td style="float:right; font-size:10pt; font-weight:bold; width: 400px; text-align:right;">
	<?php echo $content; ?>
   </td>
   <td style="float:right;">
	<img src="showimage.php?width=90&height=90&image=<?php echo $showid;?>" height="90" width="90" />
   </td>

</tr>
</table>

Try foating the content of the TD tags instead of the tags themselves.

It makes no sense to float TD tags as their position is predefined by their place within the table. One of the browsers is therefore correctly ignoring the nonsense floats while the other is incorrectly rearranging the table.

Try removing those float styles from the TDs. There’s no need to float table cells. They sit side by side anyway. If you want to float the contents, apply the float directly to them.

EDIT: ah, beaten to it!

That solved it, Thanks alot… I was playing with it like 30min:X