Outlook忽略IMG宽度属性

时间:2016-04-21 12:15:58

标签: html css email outlook html-email

我的电子邮件模板存在问题,特别是它在Outlook中的呈现方式(2007年和2010年)。

对于所有其他客户端,图像正确地保持在规定的参数范围内(CSS和HTML规则),但Outlook完全忽略了这些并且图像溢出。

它破坏了我的头!任何人都知道我哪里出错或如何解决这个问题?以下是我的IMG代码示例。

<div class="block">
   <!-- image + text -->
   <table width="100%" bgcolor="#a1dbee" cellpadding="0" cellspacing="0" border="0" id="backgroundTable" st-sortable="bigimage">
      <tbody>
         <tr>
            <td>
               <table bgcolor="#6db1e2" width="580" align="center" cellspacing="0" cellpadding="0" border="0" class="devicewidth" modulebg="edit">
              <tbody>
                 <tr>
                    <td>
                       <table width="580" align="center" cellspacing="0" cellpadding="0" border="0" class="devicewidth">
                          <tbody>
                             <tr>
                                <!-- start of image -->
                                <td align="center">
                                   <img width="580" border="0" height="auto" alt="" style="max-width: 580px; display:block; border:none; outline:none; text-decoration:none;" src="img/image-1.jpg" class="bigimage" mc:edit="featured image 1">
                                </td>
                             </tr>
                             <!-- end of image -->
                          </tbody>
                       </table>
                    </td>
                 </tr>
              </tbody>
           </table>
        </td>
     </tr>
  </tbody>

SCREENSHOT:http://i65.tinypic.com/wufo01.png

0 个答案:

没有答案