Answers for "on hover image large"

CSS
3

increase the size of an image on hover using css

img { 
	transition: all .2s ease-in-out; 
}
img:hover { 
    	transform: scale(1.5); 
    }
Posted by: Guest on April-05-2021
0

how to enlarge image when hover on in css

img:hover {
transform: scale(1.3);
}
Posted by: Guest on April-27-2020

Browse Popular Code Answers by Language