gpt4 book ai didi

javascript - 防止悬停在事件状态

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

如果hovering button,div,li 已经有active状态,如何通过css阻止?

#list-of-tests .item-test:hover {
background-color: #4d5f75;
border: solid 1px #4d5f75;
}

#list-of-tests .item-test:active {
background-color: #93c3cd;
border: solid 1px #93c3cd;
}

最佳答案

两种方式:

1) !important 用于 :active 状态:

#list-of-tests .item-test:active {
background-color: #93c3cd !important;
border: solid 1px #93c3cd !important;
}

2) 指定多个状态:

#list-of-tests .item-test:active,
#list-of-tests .item-test:active:hover {
background-color: #93c3cd;
border: solid 1px #93c3cd;
}

关于javascript - 防止悬停在事件状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10155816/

25 4 0
文章推荐: CSS 格式问题
文章推荐: c# - CSS 文件绝对 URL 在本地机器上不起作用
文章推荐: html -
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com