html - How to give proper width to a .png in email newsletter for outlook 2013 -
i have developed email newsletter. developed email newsletter working fine on email clients except outlook 2013 .
i using image in email newsletter not taking table width have given, taking own width i.e. 658px image attached
and code table
<table bgcolor="#ffffff" cellpadding="0" cellspacing="0" width="600px" align="center"> <tbody> <tr> <td style="align:center;vertical-align:top;width:600px"> <div style="width:600px;align:center"> <img src="images/demo1.png" style="width:600px"> </div> </td> </tr> </tbody> </table>
please provide suggestions on how put image inside table
<table bgcolor="#ffffff" cellpadding="0" cellspacing="0" width="600px" align="center"> <tbody><tr> <td style="align:center;vertical-align:top;width:600px"> <div style="width:300px;align:center"> <img src="images/demo1.png" width="300"> </div> </td> </tr> </tbody></table>`
try also
<img src="images/demo1.png" style="margin: 0; border: 0; padding: 0; display: block;" width="300">