Answers for "increase the size of an image on hover using css"

CSS
2

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
1

resize image slowly on hover

.grow { 
	transition: all .2s ease-in-out; 
}
	.grow:hover { 
    	transform: scale(1.1); 
    }
Posted by: Guest on February-23-2021

Code answers related to "increase the size of an image on hover using css"

Browse Popular Code Answers by Language