0

http://jsfiddle.net/Uqxxh/1/

我在显示旁边有图片的导航栏时遇到问题。图片中有缩放功能。当鼠标悬停在它上面时,将显示一个放大的版本。

我有一个模拟情况的演示。

我有两个要求:
1.放大的树应该在导航栏的顶部。
2.第二层导航栏应该在小树的顶部。

#container
{
    width: 700px;
}
#contentLeft
{
    width: 220px;
    float: left;
    z-index: 50;
}
#contentRight
{
    width: 450px;
    float: right;
    z-index: 50;
}
#navBar > li
{
    list-style-type: none;
    position: relative;
    color: #EAC789;
    border-bottom: 1px dashed #EAC789;
    background: #fff;
    width: 200px;
    line-height: 24px;
}

#navBar > li a
{
    text-decoration: none;
    color: #B38C51;
}

#navBar > li ul
{
    position: absolute;
    left: 200px;
    top: 0;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
}

#navBar > li li
{
    display: none;
    background: #967644;
    border-bottom: 1px dashed #fff;
    color: #fff;
    width: 100%;
    line-height: 24px;
}

#navBar > li:hover li
{
    display: block;
}

#navBar > li li a
{
    color: #fff;
}

#mouseOverDiv
{
    position: relative;
}

#mouseOverDiv .enlargePic
{
    display: none;
    position: absolute;
    left: -200px;
    top: 0;
}

#mouseOverDiv:hover img
{
    border: 1px solid #000;
    background: #fff;
}

#mouseOverDiv:hover .enlargePic
{
    display: block;
    z-index: 9999;
}
4

1 回答 1

2

申请z-index应该#navBar > li ul可以解决问题

#navBar > li ul
{
    position: absolute;
    left: 200px;
    top: 0;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    z-index:51;
}

小提琴

更新

申请z-index这个班级

.rpSlide{
   z-index:51;
}

z-index从此类中移除.MainLeft

inline z-index从此主菜单中删除div

<div id="ctl00_ctl01_siteMenu" class="RadMenu RadMenu_Yaki" style="z-index: 7000;">

这应该可以解决您在页面上遇到的所有问题

于 2013-09-12T02:45:59.073 回答