作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个按以下方式构建的菜单,我试图在将鼠标悬停在嵌套的 li 上时为前一个 li 提供背景更改。
<ul class="level0">
<li class="level1">Nav Item</li>
<li class="level1">Nav Item</li>
<ul class="level1">
<li class="level2">Nav Item</li>
<li class="level2">Nav Item</li>
<li class="level2">Nav Item</li>
</ul>
<li class="level1">Nav Item</li>
<li class="level1">Nav Item</li>
</ul>
在 ul.level1 上:悬停高亮 li.level1
单独使用 CSS/SASS 是否可行?
编辑: 添加示例 http://codepen.io/curiouscrusher/pen/avpEbZ?editors=110
最佳答案
您可以向父类添加一个“父类”,然后为子类添加一个规则,特别是为其父类添加规则,但效率不高:
nav {
.parent{
color:black;
}
ul:hover{
.parent{
color:red;
}
}
li {
padding: .5em 0;
&:hover {
cursor: pointer;
font-weight: bold;
}
}
}
<nav>
<ul class="level0">
<li class="level1">Nav Item</li>
<li class="level1 parent">Make This li Change</li>
<ul class="level1">
<li class="level2">When Hovering Here</li>
<li class="level2">Nav Item</li>
<li class="level2">Nav Item</li>
</ul>
<li class="level1">Nav Item</li>
<li class="level1">Nav Item</li>
</ul>
</nav>
关于html - 如何在子 ul 悬停时更改父 li 颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32869056/
我是一名优秀的程序员,十分优秀!