基于CSS的链接悬停激活/停用div

发布于 2024-12-10 12:16:29 字数 639 浏览 1 评论 0原文

知道我在链接中缺少什么吗:** http://jsfiddle.net/AnUZ7/2/< /a> **

我正在尝试像 Zerply

在此处输入图像描述

<a href="#" class="setting">Setting</a>

<ul>
    <li><a href="#">Lorem</a></li>
    <li><a href="#">Ipsum</a></li>
</ul>

css 那样创建一个下拉菜单:

ul {
    position: absolute;
    background: orange;
    width: 10em;
    left: -999em; 
}

a.setting:hover ul {
    left: auto;
}

谢谢!

any idea what am I missing at the link: ** http://jsfiddle.net/AnUZ7/2/ **

I'm trying to make a dropdown like at Zerply

enter image description here

<a href="#" class="setting">Setting</a>

<ul>
    <li><a href="#">Lorem</a></li>
    <li><a href="#">Ipsum</a></li>
</ul>

css here:

ul {
    position: absolute;
    background: orange;
    width: 10em;
    left: -999em; 
}

a.setting:hover ul {
    left: auto;
}

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

万人眼中万个我 2024-12-17 12:16:30

尝试将 a.setting:hover ul {...} 替换为

a.setting:hover + ul,
ul.submenu:hover {...}

编辑的小提琴:
http://jsfiddle.net/AnUZ7/4/

.first + .second< /code> 选择器选择 .first 之后的下一个元素。
.first ~ .after-first 选择器选择 .first 之后的所有元素。
这些选择器不适用于 Internet Explorer 6,但希望这在 2011 年不是一个大问题。

请注意 a 与其 ul 在您的实际设计中!如果鼠标指针落在它们之间,菜单就会消失。

Try replacing a.setting:hover ul {...} to

a.setting:hover + ul,
ul.submenu:hover {...}

Edited fiddle:
http://jsfiddle.net/AnUZ7/4/

The .first + .second selector selects the next element after .first.
The .first ~ .after-first selector select all elements after .first.
These selectors are not working on Internet Explorer 6, but hopefully that is not a big problem in 2011.

Beware the (possible) margin/padding/other gaps between the a and its ul in your actual design! If the mouse pointer falls between them, the menu will disappear.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文