Answers for "cursor not-allowed css"

CSS
1

cursor: not-allowed is not working with pointe events none in css

.pointer-events-none {
    pointer-events: none;
}

.wrapper {
    cursor: not-allowed;
}
Posted by: Guest on July-24-2020
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