Answers for "how to make hovers css"

CSS
28

on hover css

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

.selector {
	background-color: black;
}

.selector:hover {
	background-color: blue;
}
Posted by: Guest on February-15-2020
1

css hover

.my-div:hover{
  background-color: #f00; /*RED*/
}
/*When mouse come over .my-div the background-color will be changed to red*/
Posted by: Guest on June-14-2021

Code answers related to "how to make hovers css"

Browse Popular Code Answers by Language