IE8 中对齐的文本在右边缘被截断

发布于 2024-10-06 05:59:53 字数 138 浏览 4 评论 0原文

最近我注意到 IE8 中的这个错误(在 IE7 中正确显示),文本在 IE8 中被截断,只是一点点,主要是所有“o”:

文本是合理的,不知道这是否在这。

我的问题是,这个问题可以解决吗?这是IE8的问题吗?

谢谢。

Recently i noticed to this bug in IE8 (displays correctly in IE7), that the text gets cut off in IE8, just a bit and mainly all the "o":

The text is justified don't know if that plays an important role in this.

My questions would be, can this be fixed? is this a IE8 problem?

Thank you.

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

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

发布评论

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

评论(3

错々过的事 2024-10-13 05:59:53

尝试 padding-right: 1px;

Try padding-right: 1px;

苍风燃霜 2024-10-13 05:59:53

这似乎是 IE8 中的一个错误。我遇到了类似的问题:段落 (l) 中的最后一个字母几乎看不见。当我选择文本时,你可以看到它很好。

我可以通过打开 IE7 兼容模式来修复。

<meta http-equiv="X-UA-Compatible" content="IE=7"/>

发生这种情况

  • IE8
  • 对齐文本
  • 缩放级别增加 1 (Ctrl +)

This appears to be a bug in IE8. I was having a similar problem: one of the last letters in a paragraph (l) was turning barely visible. When I selected the text, you could see it fine.

I was able to fix by turning on IE7 compatibility mode.

<meta http-equiv="X-UA-Compatible" content="IE=7"/>

This was happening with

  • IE8
  • Justified text
  • Zoom level increased by 1 (Ctrl +)
青衫负雪 2024-10-13 05:59:53

我遇到了同样的问题,并且能够通过使用 -ms-text-justify CSS 属性来减少 IE 8 中的截止,如下所示:

text-justify: justify;
-ms-text-justify: newspaper;

这产生了显着的改进。然而,有些角色仍然被剪掉。

您可以在此处阅读有关 -ms-text-justify 的更多信息:http://msdn.microsoft.com/en-us/library/ie/ms531172%28v=vs.85%29.aspx

I was experiencing the same issue, and was able to reduce the cut-off in IE 8 by using the -ms-text-justify CSS property, like so :

text-justify: justify;
-ms-text-justify: newspaper;

This produced a noticeable improvement. However, some characters are still being cut off.

You can read more about -ms-text-justify here: http://msdn.microsoft.com/en-us/library/ie/ms531172%28v=vs.85%29.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文