如何让这个下拉菜单在 IE 8 中工作?
该菜单在 Firefox、chrome 和较旧的 IE 中工作正常,但在 IE8 中不行。 我已经坐了好几个小时了,但我无法让它工作。 请帮帮我。 这是有问题的菜单:hugoth
The menu works fine in Firefox, chrome and older IEs but not in IE8.
Ive been sitting for hours but i cant get it to work.
Please help me out.
Here´s menu in question: hugoth
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
菜单可以工作,但您遇到的问题是菜单显示在表格单元格内(请注意该单元格右侧的滚动条)。一个简单的修复方法是将
z-index:1;
添加到所有元素......甚至是菜单的父元素(即td
)。一个更耗时的解决方案是重写代码以使用 div 而不是表。这很难做到,因为您必须重新编写代码,但这样做会在所有浏览器中正确显示(IE5.5 除外)。
只是我的2分钱
The menu works, but the problem you're having is the menu is displaying within the table cell (note the scroll bar on the right side of that cell). A simple fix is to add
z-index:1;
to all the elements.... even the parent element of the menu (i.e. thetd
).A more time consuming solution is to rewrite your code to use div's instead of tables. This is harder to do since you have to re-write your code, but in doing so it will display correctly across all browsers (with the exception of IE5.5).
Just my 2 cents