Q:

how to use hover in css

/* Changes an element's color on hover */

.selector {
	background-color: black;
}

.selector:hover {
	background-color: blue;
}
10
.a:hover{background-color: black;}
14

  
a:hover{ 
	background-color: yellow;
}
  
 
0

  
    /* unvisited link */
a:link {
  color: green;
}

 
/* visited link */

 a:visited {
  color: green;
}

/* mouse over link */

 a:hover {
  color: red;
}

/* selected link */

 a:active {
  color: yellow;
}
  
 
3

  
    a:hover
 { 

   background-color: yellow;

 }
  
 
0

New to Communities?

Join the community