【发布时间】:2017-07-19 06:27:19
【问题描述】:
我创建了一个时事通讯,但我在移动设备上使用表格时遇到问题。
我有一张这样的移动桌子:
</table class="mobile_table" width="1" height="1">
<tr>
<td>
<img src="mysource/test.jpg">
</td>
</tr>
<tr>
<td align="center">
<img src="mysource/test2.jpg">
</td>
</tr>
</table>
<style>
.mobile_table{
display: none;
font-size: 0px;
max-height: 0px;
line-height: 0px;
mso-hide: all;
width: 0px;
overflow: hidden;
}
</style>
我尝试在桌面版本上隐藏我的表格,它适用于网页版,但在 Outlook 上表格没有隐藏。
你能帮我解决这个问题吗?
【问题讨论】:
-
没有重复,问题出在桌子上没有在总体布局上...
-
您是否尝试过内联样式?如果是这样,请更新问题。
-
您在哪个版本的 Outlook 中进行测试?
标签: css outlook html-table html-email