-1

我可以通过在 Gmail 中使用以下代码来隐藏表格,但同样不适用于 Google 的 Inbox。请查看以下代码并帮助我在 Inbox by Google 上隐藏此表格。

<!--[if !mso]><!--><table cellspacing="0" cellpadding="0" class="mobileShow" align="center" style="width:320px; background-color:#ffffff; max-height: 0px !important;  display: none !important; overflow:hidden; float:left; line-height:0px; mso-hide: all;">
<tr>
    <td style="width:85px;">
        <table cellspacing="0" cellpadding="0" style="width:85px; background-color:#f8f8f8;">
            <tr>
                <td style="width:85px; height:66px; background-color:#ffffff;"></td>
            </tr>
            <tr>
                <td style="width:85px; height:159px; background-color:#f8f8f8;"></td>
            </tr>
        </table>
    </td>
    <td style="width:150px; background:url(http://in.bmscdn.com/events/Large/ET00041490.jpg) no-repeat center center; height:225px; background-color:#adadad; border-radius:5px; background-size: 100% 225px;"><a href="https://in.bookmyshow.com/movies/half-ticket/ET00040972?&utm_source=ReviewBMS02Aug2016&utm_medium=email&utm_campaign=HalfTicket#trailer" target="_blank" style="text-decoration:none;"><img src="http://in.bmscdn.com/mailers/images/160720bmsreview/playbtn.png" style="margin:75px auto;display:block;" height="60" border="0" width="60"></a></td>

    <td style="width:85px;">
        <table cellspacing="0" cellpadding="0" style="width:85px; background-color:#f8f8f8;">
            <tr>
                <td style="width:85px; height:66px; background-color:#ffffff;"></td>
            </tr>
            <tr>
                <td style="width:85px; height:159px; background-color:#f8f8f8;"></td>
            </tr>
        </table>
    </td>
</tr></table><!--<![endif]-->
4

2 回答 2

0

这应该涵盖您的所有基础(作为内联 CSS)

{
    display:none;
    font-size:1px;
    line-height:1px;
    max-height:0px;
    max-width:0px;
    opacity:0;
    overflow:hidden;
    mso-hide:all;
}

编辑(如内联):

    <table style='display:none;font-size:1px;line-height:1px; 
              max-height:0;max-width:0;opacity:0;overflow:hidden;
              mso-hide:all;' cellspacing='0' cellpadding='0' border=0>
于 2016-08-02T13:03:29.953 回答
0

您确实没有提交足够的示例让我了解发生了什么,但是您使用的事实!important向我表明您没有使用内联样式。试试看,电子邮件很难处理,但内联通常效果更好。

于 2016-08-02T12:39:30.150 回答