How to make a border when a hover, so that she did not move?

set the border in the normal state in the background color, and in the hover in the desired color (in your case in green).
img {border:1px solid #fff;} img:hover {border:1px solid #000;} img{ padding:2px; } img:hover{ padding:0; border:2px solid #000; } Try this
Source: https://ru.stackoverflow.com/questions/139285/
All Articles