style mouse over code example
Example 1: css mouse over
a:hover {
background-color: yellow;
}
Example 2: hand property css
li { cursor: pointer; }
Example 3: on hover css
/* Changes an element's color on hover */
.selector {
background-color: black;
}
.selector:hover {
background-color: blue;
}
Example 4: css cursor pointer
body {
/*(Cursor image must be 32*32 pixles)*/
cursor: url(CURSOR_URL), auto;
}