2014-03-05 92 views
0

我做了outlook HTML签名,它看起来不错,工作很好,但在移动设备上看起来很大。如果可以做我的签名响应? 我的HTML代码:如何做到Outlook HTML电子邮件签名移动友好?

<html> 
<head> 
<title>Signature</title> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 
</head> 
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> 
<!-- Save for Web Slices (Signature4.psd) --> 
<table id="Table_01" width="880" height="300" border="0" cellpadding="0" cellspacing="0"> 
    <tr> 
     <td colspan="6"> 
      <img src="images/Signature4_01.png" width="880" height="263" alt=""></td> 
    </tr> 
    <tr> 
     <td> 
      <a href="[email protected]"> 
       <img src="images/email.png" width="301" height="37" border="0" alt=""></a></td> 
     <td> 
      <img src="images/Signature4_03.png" width="58" height="37" alt=""></td> 
     <td> 
      <a href="https://www.facebook.com/pages/Imagine-Built-Homes/109522549076128" target="_blank"> 
       <img src="images/facebook.png" width="28" height="37" border="0" alt=""></a></td> 
     <td> 
      <img src="images/Signature4_05.png" width="1" height="37" alt=""></td> 
     <td> 
      <a href="https://twitter.com/ImagineBltHomes" target="_blank"> 
       <img src="images/twitter.png" width="28" height="37" border="0" alt=""></a></td> 
     <td> 
      <img src="images/Signature4_07.png" width="464" height="37" alt=""></td> 
    </tr> 
</table> 
<!-- End Save for Web Slices --> 
</body> 
</html> 

回答

0

如果你尝试用百分比免去您所有的固定宽度,应该调整到适合的设备。例如,使表格宽度100%而不是880等

+0

谢谢!我没有想过。 – Sansevna