Answers for "css disable click but not hover"

CSS
2

disable click css

.avoid-clicks {
  pointer-events: none;
}
Posted by: Guest on January-13-2021
2

css button disabled hover

button:hover:enabled{
    /*your styles*/
}
button:active:enabled{
    /*your styles*/
}
Posted by: Guest on January-29-2021
1

css disable button click

button.disabled{
  pointer-events: none;
}
Posted by: Guest on January-21-2021

Browse Popular Code Answers by Language