我的博客的下拉菜单位于主页上图像滑块的后面。
http://allfacebookgames.blogspot.com/

如何避免这种情况,以使下拉菜单不被覆盖?

就您的信息而言,下拉菜单不需要任何JavaScript,仅取决于CSS。
谢谢。

最佳答案

这将解决它:

#menu-wrapper {
    position: relative;
    z-index: 40;
}


为了证明它有效:http://www.csspivot.com/t0Sj3

关于javascript - 下拉菜单隐藏在图像后面,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8340666/

10-16 01:42