css cursor types code example

Example 1: css cursor pointer hover

.pointer {
  cursor: pointer;
}

Example 2: hand property css

li { cursor: pointer; }

Example 3: cursor pointer

.class {
	cursor: pointer;
}

Example 4: css cursor pointer

cursor: pointer;
/* Mouse image is a hand */

Example 5: 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 6: 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>

Tags:

Sql Example