0

我试图遵循这个例子,但我无法让它满足我的需要,我们将不胜感激。

更新: 好的,由于 yourkishore,我的子菜单位置更好,我现在解决了一些如何处理嵌套菜单的问题,但是我的子菜单仍然出现在我的文本底部?

** 更新了 jsFiddle **

HTML:

<ul id="menubar">
    <div id="title">title</div>
    <li>File
        <ul>
        <li>Photoshop CC</li>
        <li>Illustrator CC Adobe</li>
        <li>My Web Design
            <ul>
            <li>HTML</li>
            <li>CSS</li>
            </ul>
        </li>
        </ul>
    </li>
    <li>Config</li>
</ul>
<div id=other></div>

CSS

html, body {height:100%;width:100%;margin:0;}
#menubar {
    background: #eeeeee;
    height:25%;
    list-style-type: none;
    width:100%;
    display: inline-table;
    margin:0;
    padding:0;
    z-index:99;
}
#menubar #title {
    display:inline-block;
    padding:0 5%;
    font-size:140%;
    font-weight:bold;
    float:left;
    height:100%;
    display: inline-flex;
    align-items: center;
}
#menubar li {
    height:100%;
    position:relative;
    float:left;
    padding:0 1%;
    list-style-type: none;
    white-space:nowrap;
    display: inline-flex;
    align-items: center;
}
#menubar li:hover {
    background-color:#7faddb;
}
#menubar li > ul {
    background-color:white;
    z-index:99;
    display: none;
    position:absolute;
    list-style-type: none;
    margin:0;
    padding:0;
}
#menubar li:hover > ul {
    display: block;
}
#other {
    background-color:green;
    position:absolute;
    top:25%;
    bottom:0;
    left:0;
    right:0;
}
4

2 回答 2

1

它显示在菜单内,因为它们在里面。使它们在鼠标悬停时出现在外面。您需要设置一个名为位置的属性。

对于#menubar li,您需要添加 poistion:relative

然后对于#menubar li ul,您需要添加位置:绝对。

菜单总是在这个重要的属性上起作用。没有这个就没有嵌套列表的菜单。只需学习 css 定位。一切顺利。

于 2013-10-19T19:44:26.477 回答
0

它在你的小提琴中工作正常,使用这个 HTML

<div id="title">title</div>
<nav>
<ul>
    <li>File
        <ul>
        <li>Photoshop CC</li>
        <li>Illustrator CC Adobe</li>
        <li>My Web Design
            <ul>
            <li>HTML</li>
            <li>CSS</li>
            </ul>
        </li>
        </ul>
    </li>
    <li>Config</li>
</ul>
</nav>
<div id=other></div>

并使用这个 CSS

 body, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, img, form, fieldset, input, textarea, blockquote {
    margin: 0; padding: 0; border: 0;
}

body {

    font-family: Helvetica, sans-serif; font-size: 18px; line-height: 24px;
}

nav {

    text-align: center;
}

nav ul ul {
    display: none;
}

    nav ul li:hover > ul {
        display: block;
    }


nav ul {
    padding: 0 20px;

    list-style: none;
    position: relative;
    display: inline-table;
}
    nav ul:after {
        content: ""; clear: both; display: block;
    }

    nav ul li {
        float: left;
    padding:12px;
    }
        nav ul li:hover {
            background: #505050;

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

        nav ul li a {
            display: block; padding: 25px 40px;
            color: #994411; text-decoration: none;
        }


    nav ul ul {
        background: #888888; border-radius: 0px; padding: 0;
        position: absolute; top: 100%;
    }
        nav ul ul li {
            float: none; 
            border-top: 1px solid #111;
            border-bottom: 1px solid #575f6a; position: relative;
        }
            nav ul ul li a {
                padding: 1px 40px;
                color: #666;
            }   
                nav ul ul li a:hover {
                    background: #333;
                }

    nav ul ul ul {
        position: absolute; left: 100%; top:0;
    }
        #other {
    background-color:green;
    position:absolute;
    top:25%;
    bottom:0;
    left:0;
    right:0;
    z-index:-1;
}
于 2013-10-19T19:42:04.597 回答