Thunderbird
How to tackle issues and coding pitfalls while using Thunderbird.
1 Why am I seeing extra vertical spacing between my images?
If you have an align attribute within an image and it is set to “right” or “left” Thunderbird will add a 3 pixel margin to your image.
Align=”right” adds a 3px margin to the left of the image.
Align=”left” adds a 3px margin to the right of the image.
This is especially important of you are trying to get images to stack up neatly within a table.
To fix the spacing, either remove the alignment or add a CSS margin of “0”.
For example:
<img src="http://www.test.jpg" align="right" style="margin:0">