.pointer {
cursor: pointer;
}
li { cursor: pointer; }
cursor: pointer;
/* Mouse image is a hand */
<style type="text/css">
button.btn1:hover{
cursor: pointer;
}
</style>
<button class="btn1" >hover me</button>
.yourClass { cursor: pointer; }
body {
/*(Cursor image must be 32*32 pixles)*/
cursor: url(CURSOR_URL), auto;
}