gpt4 book ai didi

css - css 中的优先级问题

转载 作者:行者123 更新时间:2023-12-02 07:40:06 25 4
gpt4 key购买 nike

抱歉,标题不够准确,我真的不知道该写什么。

html :

<div id="blabla">
hello
<span class="red">hello2</span>
</div>

CSS:

#blabla{
color: black;
}

#blabla:hover{
color: white;
}

.red{
color: red;
}

当鼠标悬停在 div“blabla”上时,我希望字符串“hello2”变白。在当前状态下,它保持红色。

我已经尝试了所有我能想到的方法,但没有成功,我希望你能帮助我。

谢谢。

最佳答案

这是你需要的:

#blabla:hover .red {
color: white;
}

看看:http://jsfiddle.net/4xhqc/

问题是即使选择器 #blabla:hover.red 更具体,.red 应用于元素问题本身 - 这使得它具有优先权。

关于css - css 中的优先级问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12055370/

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