0

我有这个下拉菜单,当它悬停时,一些内容在另一个 div 后面。它看起来像这样:

在此处输入图像描述

菜单的 css 是这样的:

.nav-m {
        height: 50px;
        width: 60px;
        display: block;
        position: absolute;
        z-index: 9999;
        overflow-y: hidden;
        text-align: center;
        position: absolute;
    }

    .nav-m:hover {
        width: 140px;
        height: 210px;
    }

    .nav-m a {
        display: none;
        text-indent: -9999px;
        position: relative;
        height: 20px;
        padding: 13px 0;
        color: #fff !important;
    }

    nav a:first-child:hover {
        text-indent: -9999px;
    }

    .nav-m:hover>a {
        display: block;
    }

    .nav-m:hover>a:first-child:after {
        color: #6daeaf;
        background: #505664;
    }

    .nav-m a:first-child {
        display: block;
        text-align: center;
        margin-bottom: 16px;
        cursor: default;
    }

    .nav-m a:after {
        position: absolute;
        top: 0;
        padding: 12px 0;
        width: 60px;
        color: #fff;
        font-family: 'icons';
        font-size: 24px;
        display: block;
        text-indent: 0;
        background: #6daeaf;
    }

    nav a:hover {
        text-indent: 0px;
        text-align: left;
        margin-left: 70px;
    }

    .nav-m a:hover:after {
        color: #999;
        background: #fff;
        text-align: center;
        margin-left: -70px;
    }

    .nav-m a:first-child:before {
        position: absolute;
        text-indent: 0;
        top: 55px;
        left: 23px;
        content: "";
        width: 0; 
        height: 0; 
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid #6daeaf;
    }

    .nav-m a:first-child:hover:before {
        margin-left: -70px;
    }

    .nav-m a:first-child:after {
        left: 0;
        content: "m";
        background: #656d7e;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
    }

    .nav-m a:nth-child(2):after {
        content: "p";
        -webkit-border-top-left-radius: 5px;
        -webkit-border-top-right-radius: 5px;
        -moz-border-radius-topleft: 5px;
        -moz-border-radius-topright: 5px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .nav-m a:nth-child(3):after {
        content: "s";
    }

    .nav-m a:last-child:after {
        content: "e";
        -webkit-border-bottom-left-radius: 5px;
        -webkit-border-bottom-right-radius: 5px;
        -moz-border-radius-bottomleft: 5px;
        -moz-border-radius-bottomright: 5px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

菜单 div 下方是 .container、.row 和 class='span12' 的 div(我使用的是引导程序)

HTML 如下所示:

<div id="topbg">
 <div class="span9">span9 content here</div>
 <div class="span3 avatar-holder" >


  <nav class="nav-m" onmouseover="">
        <a href="#" title="Menu">Menu</a>
        <a href="#" title="Account">Account</a>
        <a href="#" title="Settings">Settings</a>
        <a href="#" title="Email">Email</a>
        <a href="#" title="Email">Email</a>
        <a href="#" title="Email">Email</a>
        <a href="#" title="Email">Email</a>
        <a href="#" title="Email">Email</a>
        <a href="#" title="Email">Email</a>
        <a href="#" title="Email">Email</a>
    </nav>

    </div>
    </div>


</div><!--end row-->  
</div><!--end topbg-->

<div class='container' style='margin-top:20px;'>

<div class='row'>

    <div class='span12' style='margin:0;'>
span 12 content

</div><!--end span12-->
</div><!--end row-->

因此,我尝试在以下 div 上将 z-index 设置为 -1:.row、.container、.span12,但没有成功。我还尝试将溢出设置为在每个可能的 div 上可见。我在这里找不到问题。

谁能帮我吗?

4

3 回答 3

1

div与菜单重叠。它是不可见的菜单项。

您有菜单项,并且由于遵循 CSS ,您恢复text-indent: -9999px了前三个项目的菜单项.nav-m a

.nav-m a:nth-child(3):after {
    content: "s";
}
.nav-m a:nth-child(2):after {
    content: "p";
}
.nav-m a:first-child:after {
    content: "m";
}

现在查看所有菜单项的一般样式:

.nav-m a:after {
    position: absolute;
    top: 0;
    padding: 12px 0;
    width: 60px;
    color: #FFF;
    font-family: 'icons';
    font-size: 24px;
    display: block;
    text-indent: 0;
    background: #6DAEAF;
}

它错过了content这里至关重要的属性。没有它,伪元素:after根本不会被渲染。

为了证明这一点,我用你的代码准备了一个JSFIDDLE(没有修改)。它根本不包含这个重叠的 div,但问题仍然存在。

如果您想继续使用这种方法,我建议您进行一些小的更改,这样可以节省大量 CSS。
为每个菜单项锚添加一个属性,该属性data-shortcut将保存菜单项的第一个字母

<a href="#" title"Settings" data-shortcut="s">Settings</a>

等等...现在您可以在 CSS 属性中访问此content属性

content: attr(data-shortcut);

多亏了这一点,您不需要为每个具有不同首字母的菜单项定义 CSS。

于 2013-10-10T10:38:37.257 回答
0

尝试给出z-index比重叠的 div 更多的值。

示例:如果div1 contains z-index 10,则给<nav>隐藏在 'div1' 后面的更大 z-index。

于 2013-10-10T06:48:34.570 回答
0

Z-index 仅影响设置了位置的元素。确保您拥有position:relativeposition:absolute设置了下拉列表和覆盖它的 div。

于 2013-10-10T10:29:56.797 回答