Behinderten Cursorzeiger
.not-allowed {
pointer-events: auto! important;
cursor: not-allowed! important;
}
Ankur
.not-allowed {
pointer-events: auto! important;
cursor: not-allowed! important;
}
.pointer {
cursor: pointer;
}
/* This will make all the links invalid */
pointer-events:none;
#Element {
cursor: pointer; /*When you point on this element, cursor will be
a pointer.*/
}
#Element {
cursor: default; /*Will make the cursor not point.*/
}