Answers for "on hover change cursor"

9

on hover change cursor

li {
cursor: pointer;
}
Posted by: Guest on March-12-2020
6

onhover mouse pointer css

li { cursor: pointer; }
Posted by: Guest on March-05-2020
1

how to change cursor in css on hover

/* I am using buttion id test. You can use whatever you want*/
/* If you want default cursors, use */
#test:hover{
  cursor: pointer /* etc*/;
}
/* If you want custom cursors, use */
#test:hover{
  cursor: url(default.png) /* the default is your photo*/;
}
Posted by: Guest on March-25-2021

Browse Popular Code Answers by Language