I need help increasing svg image size on hover at countrymusicfy.com
I tried different variations on the CSS below:
img:hover {
transform: scale (1.5);
}
CodePudding user response:
Try removing the space between the scale(1.5) so code should look like:
img:hover{
transform: scale(1.5);
}