Answers for "how to make on hover information in css"

CSS
45

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

Code answers related to "how to make on hover information in css"

Browse Popular Code Answers by Language