html - table cell showing white border in outlook -
i trying build newsletter. when import html outlook, see strange white border appended outlook images. e.g. here button having left , right white borders, , cant remove it
the code is
<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> and css have tried
table, td, img{ border-collapse: collapse; } img {display:block;margin:0;padding:0;} please help. thanks.
i'm not sure if correct answer have tried?
img{border:0;} i know used issue browsers not sure if has been corrected in outlook
the other thing can suggest change table, td, img border 0
table, td, img{ border:0; } 
Comments
Post a Comment