Answers for "cursor not allowed button"

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 button"

Browse Popular Code Answers by Language