gpt4 book ai didi

css - 将鼠标悬停在一个元素上,然后更改另一个元素(不使用 Javascript)

转载 作者:技术小花猫 更新时间:2023-10-29 10:09:29 26 4
gpt4 key购买 nike

我有一个嵌套的 CSS 菜单,我无法让子菜单出现。

我从 A list apart 中获取了代码.该网站上的示例工作得很好,但由于我的页面上有 2 个 CSS 导航菜单,我必须将我的 HTML 元素放在不同的 CSS 类中。

这是我的代码:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 

"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style type="text/css">
ul#lvl1 {
margin:0;
padding:0;
list-style:none;
width:150px; /* Width of Menu Items */
border-bottom:1px solid #ccc;
}
li.lvl1 {position:relative}
ul.lvl2 {
position: absolute;
left: 149px; /* Set 1px less than menu width */
top: 0;
display: none;
}
/* Styles for Menu Items */
li.lvl1 > a {
display: block;
text-decoration: none;
color: #777;
background: #fff; /* IE6 Bug */
padding: 5px;
border: 1px solid #ccc;
border-bottom: 0;
}
/* Fix IE. Hide from IE Mac \*/
* html.lvl1 > ul > li {float:left;height:1%}
* html.lvl1 > ul > li > a {height:1%}
/* End */
li.lvl2 > a:hover { color: #E2144A; background: #f9f9f9; } /* Hover Styles */
li.lvl2 > a { padding: 2px 5px; } /* Sub Menu Styles */
a.lvl1:hover ul.lvl2 {display: block} /* The magic */
</style>
</head>
<body>
<ul id="lvl1">
<li class="lvl1">
<a class="lvl1" href="#">item1</a>
<ul class="lvl2">
<li class="lvl2">
<a class="lvl2" href="#">subitem1</a>
</li>
</ul>
</li>
<li class="lvl1">
<a class="lvl1" href="#">item2</a>
<ul class="lvl2">
<li class="lvl2">
<a class="lvl2" href="#">subitem2</a>
</li>
</ul>
</li>
</ul>
</body>
</html>

现在,当我将鼠标悬停在级别 1 的“a”上时,级别 2 的“ul”不会出现。有人可以阐明一下吗?我可能遗漏了一些明显的东西。谢谢!

最佳答案

您必须更改 CSS 选择器以定位 lvl2 <ul> ,因为它不再嵌套(它是同级,所以使用 +)。

a.lvl1:hover + ul.lvl2 {display: block} /* The magic */

你应该读这个 list of css selectors .

或者您可以将鼠标悬停在 lvl1 <li> 上, 而不是 anchor

li.lvl1:hover ul.lvl2 {display: block} /* The magic */

关于css - 将鼠标悬停在一个元素上,然后更改另一个元素(不使用 Javascript),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7832603/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com