Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 6, 2020 05:39 pm GMT

How to stop a link/button from moving on hover

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.


Original Link: https://dev.to/nazanin_ashrafi/how-to-stop-a-link-button-from-moving-on-hover-1c4

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To