how to change the mouse pointer on hover in css code example
Example 1: on hover change cursor
li {
cursor: pointer;
}
Example 2: change mouse pointer on hover button
<form>
<input type="submit" style= "cursor:pointer" value="Button" name="Button">
</form>
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.*/
}