Has it ever happen to you that you wanted to make hover effects and then everything is completely ruined ?
Like when you want to add background color and make the link/button bigger but then when you hover on it , it moves!
Let me show you an example of the messy hover effect :
Just hover on the twitter link and see what happens!
So what happened here??
I gave the hover effect 20px padding and when you hover on the link it expands/moves.
a {
color: #2196F3;
}
a:hover {
background-color: #2196F3;
color: white;
border-radius: 15px;
padding: 20px;
}
Too annoying, right?
Now how should we fix this?
Actually it's easier than you think!
The trick is you need to create the effect BEFORE creating the hover effect. In other words it needs to exist before the hover effect has been created.
Let me show you :
In order to fix this mess all I had to do was create padding for the link and set the background color to transparent :
a {
color: #2196F3;
padding: 20px;
background-color: transparent;
}
I put the messy one and the fixed one in the same link to make things clearer.
You can play around with it on codepen to understand it better.
Top comments (8)
Thanks for sharing
Thanks a lot
Thanks you!
Thanks!
Great read thanks for sharing 🙌😃
thank you. i was having trouble applying border bottom on hover. you inspired me to have transparent border bottom first then change the color on hover. thanks for sharing
thanks bro, u saved my ass
I've created a profile on dev.to just to say thanks. It worked out well!