0
cssを使用してアクティブ状態になっている場合、ホバーボタン、div、liを防ぐにはどうすればいいですか?アクティブ状態のホバーオーバーを防止する
#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;
}
作品です!どうもありがとう! –