I am trying to get rid of the thin border that appears for every image in Chrome & IE9. I have this CSS:
outline: none; border: none;
U
I fix it using padding style:
#picture { background: url("../images/image.png") no-repeat; background-size: 100%; } .icon { height: 30px; width: 30px; padding: 15px; }
The border is disappearing, while you are increasing padding value. Find your own value.