IE6 和 IE7 中锚标记后的间距问题

发布于 2024-10-16 18:17:56 字数 135 浏览 11 评论 0原文

我在 IE6 和 IE7 中的链接出现问题(它们在 IE8 中工作正常)。 HTML 是正确的,并且没有不必要的空格,但 IE 不会删除链接文本末尾之间的空格 - 它直接进入连续的段落文本。

我无休止地搜索,但找不到解决方案。有什么建议吗?

I'm having problems with my links in IE6 and IE7 (they're working fine in IE8). The HTML is correct and there are no unecessary spaces, but IE isn't removing the space between the end of the linked text - it's running straight on into the continuing paragraph text.

I've searched endlessly, but can't find a solution for this. Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里°也失望 2024-10-23 18:17:56

那是一个奇怪的事情。一旦锚点具有以“mailto:”开头的 href,锚点与其旁边的文本之间的空格就会被删除。

我用 mootools 解决了这个问题:

if (Browser.ie6 || Browser.ie7){$('a[href^=mailto:]').setStyle("margin-right", "0.3em");}

That is a strange. As soon as an anchor has href that begins with "mailto:" the space between the anchor and the text next to it is removed.

With mootools here is how I fixed the problem :

if (Browser.ie6 || Browser.ie7){$('a[href^=mailto:]').setStyle("margin-right", "0.3em");}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文