0
Q:

css how to add hover effect

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

.selector {
	background-color: black;
}

.selector:hover {
	background-color: blue;
}
10
a:hover {
  background-color: yellow;
}
2

  
    a:hover
 { 

   background-color: yellow;

 }
  
 
0
const Button = styled.div`
  background-color: green;
  color: white;
 /*  like scss, you can add hover effect */
  &:hover {
    display: block;
  }
`;
0

New to Communities?

Join the community