Html 在outlook中显示白色边框的表格单元格

Html 在outlook中显示白色边框的表格单元格,html,css,outlook,Html,Css,Outlook,我正试图建立一个通讯。然而,当我将html导入outlook时,我看到outlook将一个非常奇怪的白色边框附加到我的图像中。e、 这是一个有左右白色边框的按钮,我无法删除它 代码是 <table id="__02" height="44" border="0" cellpadding="0" cellspacing="0"> <tr> <td align="left" width="463" style=”line-height:44px

我正试图建立一个通讯。然而,当我将html导入outlook时,我看到outlook将一个非常奇怪的白色边框附加到我的图像中。e、 这是一个有左右白色边框的按钮,我无法删除它

代码是

<table id="__02" height="44" border="0" cellpadding="0" cellspacing="0">
    <tr>
        <td align="left" width="463" style=”line-height:44px;”>
            <img border="0" src="images/index_03.png" width="463" height="44" alt=""></td>
        <td align="left" width="183" style=”line-height:44px;”>
            <img border="0" src="images/index_04.png" width="183" height="44" alt=""></td>
        <td align="left" width="334" style=”line-height:44px;”>
            <img border="0" src="images/index_05.png" width="334" height="44" alt=""></td>
    </tr>
</table>

请帮忙。谢谢。

我不确定这是不是正确答案,但你试过了吗

img{border:0;}
我知道这曾经是一些浏览器的一个问题,但不确定这是否在outlook中得到了纠正

我唯一能建议的另一件事是将table,td,img border更改为0

table, td, img{
    border:0;
}

嗨,它不工作了,就像我已经做的那样
table, td, img{
    border:0;
}