Disable Cursor Css

css cursor pointer hover
.pointer {
cursor: pointer;
}
disabled cursor pointer
.not-allowed {
pointer-events: auto! important;
cursor: not-allowed! important;
}
disable cursor css
/* This will make all the links invalid */
pointer-events:none;
cursor not pointer
#Element {
cursor: pointer; /*When you point on this element, cursor will be
a pointer.*/
}

#Element {
cursor: default; /*Will make the cursor not point.*/
}

 

 

Leave a Comment