Comments on SparklyCodes All Comments

omg like idk if you see comments but how do you make your links widen when you hover them?

like yk when i click a link the link widens a bit and stuff, it looks so cool but when i researched i found nothing that worked

thanks in advance for anyone who knows :3

the following snippet should work! Only for premium CSS, though


a {
        transition-duration: .5s;
       
        &:hover, &:focus {
            transition-duration: .5s;
            letter-spacing: 2px;
        }
    }

oh, yeah. It did cross my mind that it was CSS. I'll put that in use once I buy premium.

Tysm for answering so quickly !!!