The markup below produces 2 lines of text, with the 2nd line of text centred and an image in the bottom right on the 2nd line. At least it does in Firefox and ie8. In ie7 it adds a line-break and the image appears on a 3rd line. I've tried all sorts of things without success and the ie Developer Tool is so not very useful.
How do I get it to appear properly (like ie8) in ie7?
<table>
<tr><td>blah blah blah blah</td></tr>
<tr>
<td style="text-align:center;">
Hi
<div style="float:right; background-image:url('aaa.png'); height:16px; width:16px;">
</div>
</td>
</tr>
</table>
This is just a very simplified version of what I have; I need the table structure, so please don't suggest changing it to a series of divs :)