cursor disabled code example
Example 1: disable cursor css
pointer-events:none;
Example 2: css cursor pointer hover
.pointer {
cursor: pointer;
}
Example 3: hand property css
li { cursor: pointer; }
Example 4: cursor not pointer
#Element {
cursor: pointer;
}
#Element {
cursor: default;
}
Example 5: cursor as image css
You can use own image or emoji as cursor
<style>
a{
cursor: url("custom.gif"), url("custom.cur"), default;
}
</style>
<p>Place your mouse pointer <a href="#">over me</a> to reveal the custom cursor.</p>
Example 6: css cursor pointer
body {
cursor: url(CURSOR_URL), auto;
}