css hover not working on div
/*there can be instances where the class or the id was not set well
Make sure that you have your css link well set, e.g; */
/*.class if you used class="class" */
/*#class if you use id="class"*/
.class{
background-color: blue;
}
.class:hover{
background-color: red;
}
/* OR */
#class{
background-color: blue;
}
#class:hover{
background-color: red;
}