cursor not allowed css code example
Example 1: cursor: not-allowed is not working with pointe events none in css
.pointer-events-none {
pointer-events: none;
}
.wrapper {
cursor: not-allowed;
}
Example 2: hand property css
li { cursor: pointer; }
Example 3: 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.*/
}
Example 4: css cursor pointer
body {
/*(Cursor image must be 32*32 pixles)*/
cursor: url(CURSOR_URL), auto;
}