CSS Cursor Pointer Hover
.pointer {
cursor: pointer;
}
the_sameh
.pointer {
cursor: pointer;
}
li {
cursor: pointer;
}
/* 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*/;
}
<style type="text/css">
button.btn1:hover{
cursor: pointer;
}
</style>
<button class="btn1" >hover me</button>