Answers for "css disabled cursor not allowed"

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

Browse Popular Code Answers by Language