gpt4 book ai didi

css - #测试,#test2 :hover Hover should trigger for both test divs

转载 作者:太空宇宙 更新时间:2023-11-04 00:22:39 24 4
gpt4 key购买 nike

如标题所示,是否可以命名多个元素并对所有元素应用相同的 :hover 命令。

所以我不必这样做:

#test:hover > .info, #test2:hover > .info {} 

最佳答案

您可以创建一个类并将其应用于这些元素。例如:

<head>
<style type="text/css">
.myClass:hover > .info {
background-color: blue;
}
</style>
</head>

<body>
<a href="#" id="test" class="myClass">Test Link One</a>
<span id="test2" class="myClass">Test Link Two</span>
</body>

关于css - #测试,#test2 :hover Hover should trigger for both test divs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8407821/

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