我正在尝试制作一个简单的 HTML 电子邮件。90% 的时间都可以正常显示。当我使用 Gmail APP以纵向查看电子邮件时,它没有正确显示(通过浏览器的 gmail 工作正常)。横向可以,纵向不行。在寻找解决方案时,我意识到问题在于字体大小已调整大小并调整为屏幕。
任何人都知道如何强制设备保留原始字体大小?如果电子邮件的宽度不适合屏幕的宽度,则不是问题。我只想保留电子邮件的原始样式,即使电子邮件比屏幕宽。
这就是电子邮件应该如何显示 http://i.imgur.com/MfGT5yC.png
这就是 gmail 应用程序纵向显示的方式 http://img208.imageshack.us/img208/8969/so2b.png
编辑:
这是主要代码:
<table border="0" align="center" cellspacing="10" style="font-family: Calibri" width="600px">
<!-- ****************** H E A D E R ****************** -->
<tr>
<td colspan="2" style="width:600px;height:81">
<img style="width:600px;" src="http://cimalab.com/folleto_digital/2013_abril_mayo_junio/images/cabecera_principal.png">
</td>
</tr>
<!-- ****************** H E A D E R ****************** -->
<!-- ****************** S U B - H E A D E R ****************** -->
<tr>
<td style="width:293px;">
<img style="width:293px;" src="http://cimalab.com/folleto_digital/2013_abril_mayo_junio/images/cab1.png">
</td>
<td style="width:293px;">
<img style="width:293px;" src="http://cimalab.com/folleto_digital/2013_abril_mayo_junio/images/cab2.png">
</td>
</tr>
<!-- ****************** S U B - H E A D E R ****************** -->
<tr>
<td colspan="2" width="600px" height="3px;">
<img style="width:600px;height:2px" src="http://cimalab.com/folleto_digital/2013_abril_mayo_junio/images/linea1.png">
</td>
</tr>
<!-- ****************** NEWS ****************** -->
<tr>
<td valign="top" style="width:293px;">
<img style="width:293px;" src="http://cimalab.com/folleto_digital/2013_abril_mayo_junio/images/not1.png">
</td>
<td valign="top" style="width:293px;">
<div valign="top" style="height:190px;">
<div style="height:160px;">
<!-- <img style="width:293px;" src="http://cimalab.com/folleto_digital/2013_abril_mayo_junio/images/linea_titulo1.png"> -->
<div id="dTitulo" align="justify" style="font-size:16px;">
<b>sadsa asdfsafsd asdf asdfsafsd asdf asdfsafsd asdf asdfsafsd asdf asdfsafsd asdf asdfsafsd asdf dsadsadasd sadasdasdasdasd </b></p>
</div>
<div id="dTexto" align="justify" style="font-size:14px;margin-top:5px;">
texto texto texto texto texto texto texto texto texto texto texto texto
</div>
</div>
<div id="dLeerMas" valign="bottom" style="color:#2C89E3; text-align:right;">
<p>
<b><i>Leer más..</i></b>
</p>
</div>
</div>
</td>
</tr>
<!-- ****************** NEWS ****************** -->
</table>