Answers for "css hover not working on div"

CSS
1

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;
}
Posted by: Guest on July-22-2021

Browse Popular Code Answers by Language