12

这就是我想要做的:

在此处输入图像描述

如果您注意到菜单和子菜单之间有空格。

问题是子菜单不能以这种方式工作,因为当鼠标指针离开菜单时,子菜单就会消失。

只有当它看起来像这样时它才有效:

在此处输入图像描述

我怎样才能离开菜单和子菜单之间的空间并让它工作?

我的代码:

JSFIDDLE 代码

HTML:

<body>
<nav>
    <ul>
        <li><a href="#">One</a>
            <ul>
                <li><a href="1.html">1.1</a></li>
                <li><a href="2.html">1.2</a>
            </ul>
        </li>
        <li><a href="#">Two</a>
            <ul>
                <li><a href="3.html">2.1</a></li>
                <li><a href="4.html">2.2</a></li>
                <li><a href="5.html">2.3</a></li>
            </ul>
        </li>
        <li><a href="#">Three</a>
            <ul>
                <li><a href="6.html">3.1</a></li>
                <li><a href="7.html">3.2</a></li>
            </ul>
        </li>
        <li><a href="8.html">Four</a></li>
    </ul>
</nav>
</body>

CSS:

body {
    background-color: #cac3bc
}
nav {
    float: left;
}
nav ul ul {
    display: none;
}
nav ul li:hover > ul {
    display: block;
}
nav ul {
    background-color: #fff;
    margin-top: 10px;
    padding: 0 20px;  
    list-style: none;
    position: relative;
    display: inline-table;
    margin-right: -80px;
}
nav ul li {
    float: left;
}
nav ul li:hover {
    border-bottom: 5px solid #f5aa65;
    color: #fff;
}
nav ul li a:hover {
    color: #000;
}

nav ul li a {
    display: block; 
    padding: 15px 15px;
    font-family: 'PT Sans', sans-serif;
    color: #000; 
    text-decoration: none;
}
nav ul ul {
    background-color:#fff;
    border-radius: 0px; 
    padding: 0;
    position: absolute;
    top: 100%;
    box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
}
nav ul ul li {
    float: none; 
    position: relative;
}
nav ul ul li a {
    padding: 15px 40px;
    color: #000;
}
4

2 回答 2

29

您可以利用:before来扩展“可悬停”区域:

nav ul ul:before {
    content: "";
    display: block;
    height: 20px;
    position: absolute;
    top: -20px;
    width: 100%;
}

看这个演示。

于 2013-04-22T23:38:32.807 回答
0

公认的答案非常简单和完美。但是,我想为像我这样不得不使用上述答案的变体的其他人添加一个替代方案。在我的情况下,我的子菜单是全宽的,因此我在子菜单上做了一个绝对位置,从主菜单下方开始 - 我引入了 :before 元素以引入 100px 的间隙。因此我的 :before 代码是

// Define the 100px gap between menu and submenu.
        &:hover ul.sub-menu:before {
            content: "";
            display: block;
            //Note: This height starts at the top:100% of the position absolute for the ul.sub-menu below, 
            //pushing the sub-menu down by the height defined here.
            height: 100px;
            width: 100%;
            background-color: transparent;
        }

将子菜单放置在主菜单和全宽下方的绝对位置的代码是

   &:hover ul.sub-menu {
            background-color: transparent;
            display: block;
            position: absolute;
            border-top: 10px solid red;
            top: 100%;
            left: 0;
            width: 100%;
            // Sub-menu appears on top of main menu.
            z-index: 1;
enter code here
于 2020-01-30T18:51:28.430 回答