IE and the td Tag
09:12 Tuesday, 9 May 2006
What’s the different between this
<tr> <td> <img src="..." /> </td> </tr>
and this
<tr><td><img src="..." /></td></tr>
The answer is: nothing unless you are IE. The World’s Worst Webrowser treats them differently, adding unwanted vertical space in the case where there are spaces between and inside the tr and td elements and their contents - newlines are just as bad btw. Grrr, debug hell.