Forum Moderators: open
<table>
<tr>
<td width=X>
<img src="image.ext" width=X>
</td>
</tr>
</table>
The individual cell ended up being the height of the image + 1. I'd been smacking my head on my keyboard for a while about this, so I finally just played with different tags until I got it to work. Just one thing is missing:
<img src="image.ext" width=X align="left"> After that, the cells held the image perfectly, and my tables aligned in IE as well as the other browsers.
I tried looking around here for the answer when I first had the problem, but couldn't find anything that worked. I've had to use hippie's [webmasterworld.com] workaround in the past, but that just wasn't going to work in this case, so I wanted to make sure that this solution might also be searchable should someone else have the same issue.
<td width=X>
<img src="image.ext" width=X>
</td>
On one line, like this:
<td width=X><img src="image.ext" width=X></td>
I've seen this before and the all on one line can fix it.
One thing about your workaround is that the [blue]align[blue] property is deprecated and will not validate...
HTH