空格/边框不会在表格tr中消失

Ton*_*bet 3 html css html-table newsletter

我有这个通讯标记:

<table width="600" align="center" cellpadding="0"  style="font-family:verdana,'Myriad Pro', Arial; border-collapse:collapse; border-spacing:0;">
    <tr valign="bottom" height="127" style="padding:0;text-align:left;vertical-align:bottom;margin:0;margin-bottom:-2px;" >
        <td height="141" valign="bottom">
                            <img width="608" height="141" src="http://toniweb.us/m/demos/headPildoraLarge.png" />                                
        </td>
    </tr>
    <tr>
                      /*Rest of table ommited*/
    </tr>
Run Code Online (Sandbox Code Playgroud)

事情是,在<tr>包含headPildoraLarge.png img 之后,底部有一个~2px的间隙,我无法删除...

这在Outlook IE 5,6,7(不是FF,IE8或其他)中可见,但在这种情况下是tarjet ....

我怎样才能消除这个差距?

完整的HTML动作:http://toniweb.us/m/demos/

san*_*eep 9

在你的CSS中写这个:

img{
 border:0;
 vertical-align:top;
}
Run Code Online (Sandbox Code Playgroud)