IE6:只有带有“ ”的正确尺寸?
Internet Explorer (6.0):以下代码显示不同的大小:为什么?
<a style=display:inline-block;height:8px></a>
<a style=display:inline-block;height:8px> </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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.