Answers for "cursor-not-allowed is not working on disabled input"

CSS
0

css disabled cursor not allowed

button:disabled {
  cursor: not-allowed;
  pointer-events: all !important;
}
Posted by: Guest on July-29-2021
0

css disabled cursor not allowed

li.disabled {
  cursor: not-allowed;
}
li.disabled a {
  pointer-events: none;
}
Posted by: Guest on July-29-2021

Code answers related to "cursor-not-allowed is not working on disabled input"

Browse Popular Code Answers by Language