css cursor list code example
Example 1: hand property css
li { cursor: pointer; }
Example 2: 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.*/
}