Outlook 2007 超链接和文本缩进
基本上我试图隐藏超链接中的文本。到目前为止,我已经尝试了几乎所有方法,但在 Outlook 2007
上运气不佳。
<a href="http://www.dominos.co.uk/" height="35" width="155" style="margin: 0 auto; display: block;
width: 155px; height: 35px; text-indent: -1999px; overflow: hidden; filter:alpha(opacity=0);
zoom: 1;"><font size="35">DOMINOS</font></a>
Basically I am trying to hide the text from the hyperlink. I've tried pretty much everything so far, however with not luck on Outlook 2007
.
<a href="http://www.dominos.co.uk/" height="35" width="155" style="margin: 0 auto; display: block;
width: 155px; height: 35px; text-indent: -1999px; overflow: hidden; filter:alpha(opacity=0);
zoom: 1;"><font size="35">DOMINOS</font></a>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显示和溢出位于 Outlook 2007 的“不支持”列表中。我认为在 Outlook 2007+ 上渲染引擎的中性状态下,可以肯定地说过滤器也不是受支持的属性。请参阅 MSDN,了解 Outlook2007 中的 Word 2007 HTML 和 CSS 呈现功能, http://msdn.com/en-us/library/aa338201(v=office.12).aspx,以及类似的代码1989。
我得到的是,如果没有显示块,文本缩进将无法在锚标记上工作,因为它是内联元素。
Display and overflow are on the Unsupported list for Outlook 2007. I think in the neutered state of the rendering engine on outlook 2007+, it is safe to say that filter is also not a supported property. See the MSDN on Word 2007 HTML and CSS Rendering Capabilities in Outlook2007, http://msdn.com/en-us/library/aa338201(v=office.12).aspx, and code like it's 1989.
What I was getting at is without the display block the text-indent won't work on the anchor tag as it is an inline element.