css mouse hover code example
Example 1: css cursor pointer hover
.pointer {
cursor: pointer;
}
Example 2: on hover css
/* Changes an element's color on hover */
.selector {
background-color: black;
}
.selector:hover {
background-color: blue;
}
Example 3: css hover
.a:hover{background-color: black;}