【发布时间】:2017-05-24 18:06:26
【问题描述】:
我正在构建一个电子邮件模板,并且遇到了我想在桌面上隐藏“td”的情况。除了 Outlook 2007/10/13/16 之外,我几乎可以使用所有电子邮件客户端的媒体查询和“显示”:无“属性来实现它。
我的“td”看起来像这样。
<td style="display:none;" class="show" >
<table border="0"cellpadding="0"cellspacing="0"width="100%">
<tr>
<td style="usual styling">
<font>some text</font>
</td>
</tr>
</table>
</td>
并且显示类很简单:
/* Responsive */
@media only screen and (max-width: 450px) {
.show {display:inline !important;}
}
我在不同的论坛上读到,如果使用 mso 9,您可以将部分 HTML 隐藏在 Outlook 中。所以我尝试了类似的方法:
<!--[if !mso 9]><\!-->
<td style="display:none;" class="show" >
<table border="0"cellpadding="0"cellspacing="0"width="100%">
<tr>
<td style="usual styling">
<font>some text</font>
</td>
</tr>
</table>
</td>
<!-- <![endif]-->
但 Outlook 2007/10/13/16 仍会显示此内容和其中的内容。有人可以帮我弄清楚这是如何实现的吗?
【问题讨论】: