Hello so am looking for how to make a button bigger by hovering it, like alot of professional websites, So I know a very little thing on how to make the transform of it upper by hovering by adding transform translate, but I also want to know how to make it bigger.
Note: I don’t really want to make it done by making the font size bigger, cause after I got my answer I maybe do it for a div.
Also am a bit new to coding, sorry if there is better way to describe my question, any help appreciated!
>Solution :
I think what you are looking for is this CSS snippet
btn:hover{
transform: scale(2);
}
This article on MDN has a neat tool to see what can be done with the transform property MDN Article