css cursor hand code example

Example 1: css cursor pointer hover

.pointer {
  cursor: pointer;
}

Example 2: on hover change cursor

li {
cursor: pointer;
}

Example 3: onhover mouse pointer css

li { cursor: pointer; }

Example 4: div pointer hand

cursor: pointer;

Example 5: cursor pointer

.class {
	cursor: pointer;
}

Example 6: 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.*/
}

Tags:

Misc Example