0

我创建了下面列出的导航菜单:

<div class="menu">
    <ul>
        <li>
            <a href="index.php" target="_self" >Home</a>
        </li>
        <li>
            <a href="preparation.php" target="_self" >Gallery</a>
            <ul>
                <li>
                    <a href="digital.php" target="_self">Storybooks</a>
                </li>
                <li>
                    <a href="preparation.php" target="_self">Preparation</a>
                </li>
                <li>
                    <a href="ceremony.php" target="_self">Ceremony</a>
                </li>
                <li>
                    <a href="private.php" target="_self">Personal Shooting</a>
                </li>
                <li>
                    <a href="firstdance.php" target="_self">First Dance</a>
                </li>
                <li>
                    <a href="details.php" target="_self">Details</a>
                </li>
            </ul>
        </li>
        <li>
            <a href="login.php" target="_self" >Customers</a>
        </li>
        <li>
            <a href="about.php" target="_self" >About</a>
        </li>
        <li>
            <a href="contact.php" target="_self" >Contact</a>
        </li>
    </ul>
</div>

目前这个菜单的 CSS 是:

.menu {
    margin: 0px;
    padding: 0px;
    font-family: "Times New Roman";
    font-size: 14px;
    font-weight: bold;
    color: #6D6D6D;
}
.menu ul {
    height: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu li {
    float: left;
    padding: 0px;
}
.menu li a {
    color: #6D6D6D;
    display: block;
    font-weight: normal;
    line-height: 26px;
    margin: 0px;
    padding: 0px 25px;
    text-align: center;
    text-decoration: none;
}
.menu li a:hover, .menu ul li:hover a {

    background: #ca9875 url("menu_images/hover.gif") bottom center no-repeat;
    color: #6D6D6D;
    text-decoration: none;
}
.menu li ul {
    /*background:#333333;*/
    /*background: #B32267;*/
    background: white;
    display: none;
    height: auto;
    padding: 0px;
    margin: 0px;
    border: 0px;
    position: absolute;
    /*width: 225px;*/
    width: 135px;
    z-index: 200;
    /*top:1em;
     /*left:0;*/
}
.menu li:hover ul {
    display: block;
}
.menu li li {
    background: url('menu_images/sub_sep.gif') bottom left no-repeat;
    display: block;
    float: none;
    margin: 0px;
    padding: 0px;
    /*width: 225px;*/
    width: 135px;
}
.menu li:hover li a {
    background: none;
}
.menu li ul a {
    display: block;
    height: 26px;
    font-size: 13px;
    font-style: normal;
    margin: 0px;
    padding: 0px 10px 0px 15px;
    text-align: left;
}
.menu li ul a:hover, .menu li ul li:hover a {
    background: #ca9875 url('menu_images/hover_sub.gif') center left no-repeat;
    border: 0px;
    color: #ffffff;
    text-decoration: none;
}
.menu p {
    clear: left;
}

我想知道是否有办法将二级子菜单添加到“故事书”类别?我的意思是当我将鼠标悬停在“故事书”上时,我想查看右侧的另一个子菜单。这可以用css吗?感谢任何帮助,谢谢。

4

1 回答 1

3

我在上面编辑了您的代码以使其正常工作,请参阅http://jsfiddle.net/BVvc6/1/以获取新代码。

注意:我在 Storybooks 下方添加了两个菜单点,分别称为 Storybook 1 和 Storybook 2。CSS 被添加到现有代码的底部(上面没有更改)。

编辑:您应该稍微清理一下您的 CSS 代码,例如使用 CSS 选择器>来匹配特定的 DOM 级别。

于 2012-04-12T09:59:08.690 回答