Internet Explorer 7 中是否存在 z-index 错误的替代方案?
无论我将 z-index 设置多高,或者将 position:relative;
设置为父 div,或者将更高的 z-index 设置为父 div<,都没有关系。 /code> 或我在 Google 中找到的任何调整。
我的工具提示在 Internet Explorer 7 中不可见,
是否有其他属性可以用来模拟 z-index 定位?
It doesn't matter how high I set the z-index, or if I set position:relative;
to the parent div, or if I set a higher z-index to parent div
or any tweak I found in Google.
My tooltip will not be visible in Internet Explorer 7,
Is there any other property I could use to simulate z-index positioning?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
工具提示是如何定位的?尝试添加
position:absolute; z-index:999
到您的工具提示 div 和position:relative
到父级以查看它的反应。如果您可以发布您的页面或一些代码,那将非常有帮助。
How is the tooltip being positioned? Try adding
position:absolute; z-index:999
to your tooltip div andposition:relative
to the parent to see how it reacts.It would be really helpful if you can post your page or some code.
我倾向于使用的一种替代方法是在
之后添加下拉菜单。
然后用 JavaScript 将其定位到您想要的位置。
因为它被放置在主体之后,所以它在 DOM(树)中已经很高了,所以你最有可能将它放在顶部。
One alternative I tend to use is adding the dropdown menu right after
<body id="homeIsoraGold" class="idioma_es">
.And then positioning it with JavaScript to be placed where you want it.
Because it is placed right after the body it will already be high in the DOM (tree) so you will have the best chance of it being on top.