When one of the links is hovered, rest of the elements slightly move to left coz of the change in font-weight
on the hovered link.
This is what I tried
HTML
<div id="footer"> © GreatService <a href="">Terms</a>·<a href="">Privacy</a>·<a href="">Legal</a>·<a href="">Company</a>·<a href="">Media</a>·<a href="">Technology</a>·<a href="">FAQ</a> · Made with <span>♥</span>. Enjoy!</div>
CSS
#footer {
position: absolute;
bottom: 20px;}
#footer, #footer a {
color: #fff;}
#footer a {
margin-left: 5px;margin-right:5px;text-decoration: none;padding-left: 3px;padding-right: 3px;
}
#footer a:hover {
font-weight: 700;
}
#footer a:hover a{padding-left: 2px; }
#footer span {
color: red;}
Any way to prevent shakiness of the other elements, so it looks as if the hovered link is being emphasized in its own place without causing any disturbance to the position of the other non-hovered links?