0

我正在将 2 级<nav>变成 3 级并遇到一些困难。

第三级显示位置和预测,但当“祖父母”悬停时,不是我要显示的项目的父项。

我一直在玩 CSS 一段时间,但我无法让它响应我想要的方式。

任何帮助表示赞赏。

有一个小提琴,因为我的解释可能有些缺乏。

http://jsfiddle.net/6TGaf/

小提琴的代码:

    #nav{
    background: #bada55;
    width: 99%;
    margin-top:-5px;
}

#nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
    height: 40px;
}

#nav ul li{
    /*child elements positioned absolutley will be relative to this*/
    position: relative;
    border-top: 1px solid #e9e9e9;
    float: left;

}

#nav a{
    color: ghostwhite;
    padding: 12px 0px;
    /*fill hori space*/
    display: block;
    text-decoration: none;
/*apply transition to background property, taking 1s to change it
*/
    transition:padding 1s, background 1s;
    -moz-transition:padding 1s, background 1s;
    -webkit-transition:padding 1s, background 1s;
    -o-transition:padding 1s, background 1s;

    font-family:tahoma;

    font-size:13px;
    text-transform:uppercase;
    padding-left:20px;
}

/*hover pseduo class*/
#nav a:hover{
    /*
    RGBA background for transparancy:
    last number(0.05) is the transparency
    */
    padding-left:35px;
    background: RGBA(255,255,255,0.05);
    color:#fff;
}

#nav ul li:hover ul{
    /*diplay when hovered*/
    display: block;
}

#nav ul ul{
    position: absolute;
    left: 0px;
    top: 40px;
    border-top: 1px solid #e9e9e9;
    display: none;
    /*width: 304px;*/
    z-index: 1;
}

#nav ul ul li{
    width: 150px;
    background: #f1f1f1;
    border: 1px solid #e9e9e9;
    border-top: 0;
    /*float:left;*/

}

#nav ul ul li a{
    color:#000000;
    font-size:12px;
    text-transform:none;
}

#nav ul ul li a:hover {
    color:#929292;
}

/*3rd level...*/
#nav ul ul ul{
    position: absolute;
    left: 150px;
    top: 0px;
    border-top: 1px solid #e9e9e9;
    display: none;
    /*width: 304px;*/
    z-index: 1;
}

#nav ul ul ul li{
    width: 150px;
    background: #f1f1f1;
    border: 1px solid #e9e9e9;
    border-top: 0;
}

#nav ul ul ul li a{
    color:#000000;
    font-size:12px;
    text-transform:none;
}

#nav ul ul ul li a:hover {
color:#929292;
}

#nav ul ul li:hover ul{
/*diplay when hovered*/
display: block;
}

<nav id = "nav">
    <ul>
        <li>
            <a href="#">1.1</a>
            <ul>
                <li>
                    <a href="#">1.1.1</a>
                    <ul>
                        <li><a href="#">1.1.1.a</a></li>
                        <li><a href="#">1.1.1.b</a></li>
                    </ul>
                </li>

                <li><a href="#">1.1.2</a></li>
                <li><a href="#">1.1.3</a></li>

            </ul>
        </li>
</ul>

4

2 回答 2

2

改变

#nav ul li:hover ul {
    /*diplay when hovered*/
    display: block;
}

#nav ul li:hover>ul {
    /*diplay when hovered*/
    display: block;
}

注意额外的“>”

编辑:添加了 jsFiddler

于 2013-07-30T11:50:01.117 回答
1

只需添加这段代码,它将为您工作

#nav ul li:hover ul ul{
    /*diplay when hovered*/
    display: none;
}
于 2013-07-30T11:51:43.040 回答