Answers for "css disable focus on click"

CSS
2

disable click css

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

diable focus button css

*:focus {
    outline: 0 !important;
}
Posted by: Guest on June-12-2020

Browse Popular Code Answers by Language