Issue
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);
}
Solution
Try removing the space between the scale(1.5) so code should look like:
img:hover{
transform: scale(1.5);
}
Answered By - leoz
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.