Hey there, I'm having trouble scaling my anchor tag when hovering over it. Here's the code I'm using:
a {
color: red;
text-decoration: none;
transition: all 0.5s;
}
a:hover {
color: blue;
transform: scale(3);
}
<a>TEST</a>