unattainable item in dropdown menu ie8

懵懂的女人 提交于 2019-12-24 15:36:43

问题


the page : http://medisra.sideradesign.com/ on the second menu from the left, there is a dropdown. I am not able to click on the last 3 items of the submenu because they disappear before I get a chance. it seems it has something to do with the position of the menu. for example, if I increase the height of the header container, I'm able to click the menu items.

any help appreciated

thanks Paul


回答1:


The most direct reason for this problem is that the page is being set to render in IE7 mode via the HTTP response headers:

HTTP/1.1 200 OK
..
X-UA-Compatible: IE=EmulateIE7
..

This header is effectively turning IE8 into IE7, which isn't great. The purpose of X-UA-Compatible is to provide a quick way to help older pages designed for IE7 still look acceptable in IE8.

If you remove this header, the page looks almost correct in IE8 (just a couple of minor display problems; they look relatively easy to fix).



来源:https://stackoverflow.com/questions/4803503/unattainable-item-in-dropdown-menu-ie8

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!