IE6:只有带有“ ”的正确尺寸?

发布于 2024-10-11 04:01:31 字数 280 浏览 3 评论 0原文

Internet Explorer (6.0):以下代码显示不同的大小:为什么?

<a style=display:inline-block;height:8px></a>
<a style=display:inline-block;height:8px>&nbsp;</a>

Chromium和FF(我喜欢的浏览器)两次都显示正确的大小,但在工作中我被迫使用IE6.0。

有什么办法可以防止这种行为吗?

Internet Explorer (6.0): shows different sizes for the following code: why is that?

<a style=display:inline-block;height:8px></a>
<a style=display:inline-block;height:8px> </a>

Chromium and FF (my preferred browsers) show the correct sizes both times, but at work I am forced to use IE6.0.

Is there something to prevent this behaviour?

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

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

发布评论

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

评论(1

孤千羽 2024-10-18 04:01:31

Display:inline-block 不适用于 IE6 中的空元素 - 因此 height 元素被忽略,因为它需要显示标签。

Display:inline-block won't work on empty elements in IE6 - therefore the height element is ignored since it requires the display tag.

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